2015年8月25日
摘要: 1.首先来说说创建线程的两种方式一种方式是继承Thread类,并重写run()方法 1 public class MyThread extends Thread{ 2 @Override 3 public void run() { 4 // TODO Auto-gen... 阅读全文
posted @ 2015-08-25 11:39 程序人生ly 阅读(6753) 评论(1) 推荐(2)