摘要:
//第一种:通过实现Runnable接口创建线程 class Thread01 implements Runnable { public void run() { } } //启动线程 Thread01 t=new Thread01(); new Thread(t).start(); //第二种:通过继承Thread类创建线程 class Thread0... 阅读全文
posted @ 2011-09-29 13:00 阳光VIP 阅读(349) 评论(0) 推荐(0) 编辑