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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 陈文杰 中级黑马   /  2013-11-21 11:46  /  984 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

求解public class PrinNumChar {
public static void main(String[] args){
  Object o=new Object();
  Thread n=new ThreadNum(o);
  Thread c=new ThreadChar(o);
  n.start();
  c.start();
  
}
}
class ThreadNum extends Thread{
Object o;
public ThreadNum(Object o){
  this.o=o;
}
public void run(){
  for(int i=1;i<26;i++){
   System.out.println(i);
   System.out.println(++i);
   try {
    this.wait();
   } catch (InterruptedException e) {}
   this.notify();
  }
}
}
class ThreadChar extends Thread{
Object o;
public ThreadChar(Object o){
  this.o=o;
}
public void run(){
  for(char a='A';a<='Z';a++){
   System.out.println(a);
   this.notify();
   try {
    this.wait();
   } catch (InterruptedException e) {}
  }
}
}

这个程序的运行结果是:
1
2
A
Exception in thread "Thread-0" java.lang.IllegalMonitorStateException
at java.lang.Object.wait(Native Method)
at java.lang.Object.wait(Object.java:503)
at day20.ThreadNum.run(PrinNumChar.java:23)
Exception in thread "Thread-1" java.lang.IllegalMonitorStateException
at java.lang.Object.notify(Native Method)
at day20.ThreadChar.run(PrinNumChar.java:37)

评分

参与人数 1黑马币 +1 收起 理由
乔兵 + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马