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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 為了夢想 中级黑马   /  2015-7-25 14:16  /  251 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. public class ThreadDemo3 implements Runnable  {

  2.         private int tickets = 10;
  3.         private boolean flag = true;
  4.        
  5.         @Override
  6.         public void run() {
  7.                
  8.                 while(flag){
  9.                         test();
  10.                 }
  11.                
  12.         }
  13.   public synchronized void test(){
  14.             if(tickets <=0){
  15.                     flag = false ;
  16.                     return;
  17.             }
  18.             
  19.             try {
  20.                         Thread.sleep(500);
  21.                 } catch (InterruptedException e) {
  22.                         e.printStackTrace();
  23.                 }
  24.                 System.out.println(Thread.currentThread().getName()+"出售了"+tickets--);

  25.   }
  26.         public static void main(String[] args) {
  27.                 ThreadDemo3 th = new ThreadDemo3();
  28.                 Thread th1 = new Thread(th,"窗口a");
  29.                 Thread th2 = new Thread(th,"窗口b");
  30.             Thread th3 = new Thread(th,"窗口c");
  31.             Thread th4 = new Thread(th,"窗口d");
  32.             
  33.             th1.start();
  34.             th2.start();
  35.             th3.start();
  36.             th4.start();
  37.             
  38.         }
  39.        
  40. }
复制代码


0 个回复

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