黑马程序员技术交流社区

标题: 线程-多窗口售票 [打印本页]

作者: jekyll    时间: 2015-9-25 15:41
标题: 线程-多窗口售票
匿名内部类+线程预习
  1. class Trim implements Runnable{
  2.         public void run() {
  3.                 class Inner        {
  4.                         public synchronized void sale() {
  5.                                 int num = 100;
  6.                                 while (num > 1)
  7.                                 {
  8.                                         num--;
  9.                                         System.out.println(Thread.currentThread().getName()+"购买了"+num+"号票");
  10.                                 }
  11.                         }
  12.                 }

  13.                 Inner in = new Inner();
  14.                 in.sale();
  15.         }
  16. }

  17. class Demo1_Thread {
  18.         public static void main(String[] args) {
  19.                 Trim t = new Trim();
  20.                 Thread t01 = new Thread(t);
  21.                 Thread t02 = new Thread(t);
  22.                 t01.start();
  23.                 t02.start();
  24.                 t01.setName("菜包狗");
  25.                 t02.setName("功夫兔");
  26.         }
  27. }
复制代码





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