黑马程序员技术交流社区

标题: java多线程互斥 [打印本页]

作者: 破烂小白    时间: 2015-5-12 17:28
标题: java多线程互斥
  1. class ThreadTask {  
  2.       
  3.     private int controller = 0;  
  4.       
  5.     /**
  6.      * 第一任务:线程的具体执行逻辑。
  7.      * @param executeTimes 输出次数
  8.      * @param ctrlWaitValue 线程等待的控制值
  9.      * @param executeTimes
  10.      */  
  11.     public synchronized void firstTask(int executeTimes, int ctrlWaitValue, int loopTime){  
  12.          
  13.         while(controller%2 == ctrlWaitValue){  
  14.               
  15.             try {  
  16.                 wait();  
  17.             } catch (InterruptedException e) {  
  18.                 e.printStackTrace();  
  19.             }  
  20.         }  
  21.         for(int i=0; i<executeTimes; i++){  
  22.               
  23.             System.out.println(Thread.currentThread().getName() + " 开始第 " + i + " 次执行!第  " +loopTime+" 主循环!");  
  24.         }  
  25.         controller++;  
  26.         notifyAll();  
  27.     }  
  28. }  
复制代码





那出错饿了
作者: 破烂小白    时间: 2015-5-12 17:35
public static void main(String[] args)  {}  是不是要在这里调用类呢 。
作者: 破烂小白    时间: 2015-5-12 17:41
。。。我试了还是不对




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2