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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. class resouse
  2. {
  3.         private String name;
  4.         private String sex;
  5.         private boolean flag=false;
  6.         public synchronized void set(String name,String sex)
  7.         {
  8.                 while(flag)
  9.                         try{this.wait();}
  10.                 catch(Exception e)
  11.                 {
  12.                
  13.                 }
  14.                 this.name=name;
  15.                 this.sex=sex;
  16.                 System.out.println(name+"%……………………………………"+sex);
  17.                 flag=true;
  18.                 this.notifyAll();
  19.                
  20.         }
  21.         public synchronized void prit()
  22.         {
  23.                 while(!flag)
  24.                         try{this.wait();}
  25.                 catch(Exception e){}
  26.                
  27.                 System.out.println(name+"....."+sex);
  28.                 flag=false;
  29.                 this.notifyAll();
  30.                
  31.         }
  32.        
  33. }
  34. class Shengchang implements Runnable
  35. {
  36.         private resouse r;
  37.         Shengchang(resouse r)
  38.         {
  39.                 this.r=r;
  40.         }
  41.         public void run()
  42.         {
  43.                
  44.                 while(true)
  45.                 {
  46.                        
  47.                                 r.set("李四","男");
  48.                
  49.                 }
  50. }
  51.        
  52. }
  53. class outprint implements Runnable
  54. {
  55.         private resouse r;
  56.         outprint(resouse r)
  57.         {
  58.                 this.r=r;
  59.         }
  60.         public void run()
  61.         {
  62.                 r.prit();
  63.         }
  64. }

  65.        
  66. public class Dengdai {
  67.         public static void main(String[] args)
  68.         {
  69.                 resouse r=new resouse();
  70.                
  71.                 Shengchang in=new Shengchang(r);
  72.                 outprint ou=new outprint(r);
  73.                 Thread t=new Thread(in);
  74.                 Thread t1=new Thread(in);
  75.                 Thread t2=new Thread(ou);
  76.                 Thread t3=new Thread(ou);
  77.                 t1.start();
  78.                 t.start();
  79.                
  80.                 t2.start();
  81.                 t3.start();
  82.         }
  83. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
黄炳期 + 1

查看全部评分

3 个回复

倒序浏览
资源方法里面少大括弧。
回复 使用道具 举报
没有吧,少个大括弧那编译都不会通过啊。
回复 使用道具 举报
如果问题已经解决,请及时修改主题为“提问结束”。
修改主题的方法链接
http://bbs.itheima.com/thread-89313-1-1.html
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马