黑马程序员技术交流社区
标题:
线程wait....
[打印本页]
作者:
jonn
时间:
2013-3-5 17:12
标题:
线程wait....
<font size="3">public class TraditionalThreadItem {
class Business{
private boolean flag = true;
public synchronized void sub(int i){
if(!flag){
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
for(int j=1;j<=10;j++){
System.out.println("sub thread squence of "+j+",loop of "+i);
}
flag = false;
this.notifyAll();
}
public synchronized void main(int i){
if(flag){
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
for(int j=1;j<=100;j++){
System.out.println("main thread squence of "+j+",loop of "+i);
}
flag = true;
this.notifyAll();
}
}
public static void main(String[] args) {
final Business business = new TraditionalThreadItem().new Business();
new Thread(new Runnable(){
@Override
public void run(){
for(int i=1;i<=50;i++){
synchronized(TraditionalThreadItem.class){
business.sub(i);
}
}
}
}).start();
for(int i=1;i<=50;i++){
synchronized(TraditionalThreadItem.class){
business.main(i);
}
}
}
}</font>
复制代码
作者:
唐长智
时间:
2013-3-5 17:13
问题是?
作者:
许鑫星
时间:
2013-3-5 17:32
//在sub和mian方法上加了两把锁导致了线程死锁,去掉其中一个就可以了。。。代码可以这么改
public static void main(String[] args) {
final Business business = new TraditionalThreadItem().new Business();
new Thread(new Runnable() {
@Override
public void run() {
for (int i = 1; i <= 50; i++) {
// synchronized(TraditionalThreadItem.class){
business.sub(i);
// }
}
}
}).start();
for (int i = 1; i <= 50; i++) {
// synchronized(TraditionalThreadItem.class){
business.main(i);
// }
}
}
复制代码
作者:
jonn
时间:
2013-3-5 17:34
许鑫星 发表于 2013-3-5 17:32
果然是大神...;P
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2