摘要:
下面程序 创建了三个子线程public class thread {public static void main(String args[]){new NewThread("One");new NewThread("Two");new NewThread("Three");try{Thread.sleep(10000);}catch(InterruptedException e){System.out.println("main thread interrupted");}System.out.println(& 阅读全文
2012年5月16日
摘要:
创建线程的另一个途径是创建一个新类来扩展Thread类,然后再创建该类的实例。当一个类继承Thread时。它必须重载run()方法,这个run()方法是新线程的入口,同时,它也必须调用start()方法去启动新线程的执行,下面用扩展thread类重写上一个的程序,public class thread2 {public static void main(String args[]){new NewThread(); //creat a new threadtry{for(int i=5;i>0;i--){System.out.println("main thread:" 阅读全文