JAVA THREAD
liaoya
认真游戏,积极做人
展开
-
线程基础
线程基础---wait(),notify的应用一例(作者:Jason, http://www.chinajavalab.com/)本例子实现了两个线程,每个线程输出1到100的数字。第一个线程输出1-10,停止,通知第二个线程 输出1-10 第二个线程停止 通知第一个线程 输出11-20 ...实现的要点是 在Java中,每个对象都有个对象锁标志(Object lock fl转载 2006-07-03 10:46:00 · 960 阅读 · 0 评论 -
一个理解wait()与notify()的例子
file://分析这段程序,并解释一下,着重讲讲synchronized、wait(),notify 谢谢! class ThreadA { public static void main(String[] args) { ThreadB b=new ThreadB(); b.start(); System.out.println("b is start....转载 2006-07-03 10:47:00 · 679 阅读 · 0 评论 -
SimpleDateFormat must be synchronized by yourself.
SimpleDateFormat is not thread safe. Please synchronize it by external.原创 2010-04-28 12:29:00 · 574 阅读 · 0 评论