`
baobeituping
  • 浏览: 1064765 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

一道面试题

阅读更多

有三个线程ID分别是A、B、C,请有多线编程实现,在屏幕上循环打印10次ABCABC…
package com.thread;

public class TestWork implements Runnable {

 int index;  
    int pCount;
    static int count = 0; 
    static Object lock = new Object(); 
 public TestWork(int index)
 {
  this.index=index;
 }
 public void run() {
   synchronized (lock) {  
    for(;;)
    {
     if(count%3==index)
     {
      System.out.println(Thread.currentThread().getName());
      count++;
      pCount++;
      lock.notifyAll();
      if(pCount==10)
      {
       break;
      }
     }
     else
     {
      try {
       lock.wait();
      } catch (Exception e) {
       e.printStackTrace();
      }
     }
     
    }
   
   }
  

 }

 /**
  * @param args
  */
 public static void main(String[] args) {
  new Thread(new TestWork(0),"A").start();
  new Thread(new TestWork(1),"B").start();
  new Thread(new TestWork(2),"C").start();

 }

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics