标题: 多线程同步问题 [打印本页] 作者: 章闽 时间: 2012-10-23 11:37 标题: 多线程同步问题 class A implements Runnable{
void run(){
for(int i= 0 ; i<5 ; i++){
System.out.print(i)
}
}
}
public class B{
public static void main(String args[]){
A a = new A();
Thread t1 = new Thread (a);
Thread t2 = new Thread (a);
t1.start();
t2.start();
}
}
只修改run方法分别打印:0123401234 0011223344
第二种情况用wait和notify能够解决吗?怎么解决?作者: 陈琦 时间: 2012-10-23 12:04
wait和notify这两个方法只有在有线程锁的情况下才可以使用,所以你可在run方法上添加线程锁解决你说的问题作者: 廖智 时间: 2012-10-23 12:17 本帖最后由 廖智 于 2012-10-23 12:19 编辑
这是我按你的要求改的代码:
class A implements Runnable{
public synchronized void run(){
for(int i= 0 ; i<100 ; i++){ //这里我循环了100次,打印都符合你的要求。
System.out.print(i+",");
this.notify();
try{this.wait();}catch(Exception e){}
}
}
}
public class B{
public static void main(String args[]){
A a = new A();
Thread t1 = new Thread (a);
Thread t2 = new Thread (a);
t1.start();
t2.start();
}
}作者: 程杰 时间: 2012-10-23 12:54
class A implements Runnable{
public void run(){
System.out.print(i);
}
}
}
public class B{
public static void main(String args[]) throws InterruptedException{
A a = new A();
Thread t1 = new Thread (a);
Thread t2 = new Thread (a);
t1.start();
// t1.sleep(1000);
t2.start();
//t2.sleep(1000);
}
}
这个打印出0011223344的。把红色的注释去掉,绿色的加上注释,打印结果就是0123401234.