摘要:
http://bbs.csdn.net/topics/330215938 阅读全文
摘要:
http://www.cnblogs.com/rollenholt/archive/2011/08/28/2156357.html 阅读全文
摘要:
class MyThread implements Runnable{ public void run() { for (int i=0;i<100;i++) { this.printMsg(); } } public void printMsg() { System.out.println(Thread.currentThread().getName()+"在运行....."); }}public class debug { /** * @param args ... 阅读全文
摘要:
class MyThread implements Runnable{ public void run() { for (int i=0;i<100;i++) { this.printMsg(); } } public void printMsg() { System.out.println(Thread.currentThread().getName()+"在运行....."); }}public class debug { /** * @param args ... 阅读全文