A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 章闽 中级黑马   /  2012-10-23 11:37  /  1051 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

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能够解决吗?怎么解决?

评分

参与人数 1技术分 +1 收起 理由
谭立文 + 1 神马都是浮云

查看全部评分

3 个回复

正序浏览
class A implements Runnable{
    public void run(){
        
      for(int i= 0 ; i<5 ; i++){
          try {
            Thread.sleep(100);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

       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.

评分

参与人数 1技术分 +1 收起 理由
韩军博 + 1 很给力!

查看全部评分

回复 使用道具 举报
本帖最后由 廖智 于 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();
        }
}

评分

参与人数 1技术分 +1 收起 理由
韩军博 + 1 很给力!

查看全部评分

回复 使用道具 举报
wait和notify这两个方法只有在有线程锁的情况下才可以使用,所以你可在run方法上添加线程锁解决你说的问题
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马