黑马程序员技术交流社区

标题: Thread类的问题 [打印本页]

作者: YI_LI_A_E    时间: 2015-4-6 13:21
标题: Thread类的问题
  1. class Ticket extends Thread
  2. {
  3.         private static int  tick=100;
  4.         private String name;
  5.         Ticket(String name)
  6.         {
  7.                 this.name=name;
  8.         }
  9.         public void run()
  10.         {
  11.                 while(true)
  12.                 {
  13.                         if(tick>0)
  14.                         {
  15.                                 tick--;
  16.                                 System.out.println(Thread.currentThread().getName()+"Run"+tick);
  17.                         }
  18.                 }
  19.         }
  20. }
  21. class  ThreadDemo
  22. {
  23.         public static void main(String[] args)
  24.         {
  25.                 Ticket t1=new Ticket("one");
  26.                 Ticket t2=new Ticket("two");

  27.                 t2.start();

  28.                 t1.start();
  29.         }
  30. }
复制代码

运行后结果出来了,但是为什么对话框卡在那,不能继续输入了?
作者: hhqnmlgb    时间: 2015-4-6 13:33
因为你写的是   while(true)    循环会一直转
作者: 悟败者    时间: 2015-4-6 17:17
外面的while循环出不来,,,
作者: YI_LI_A_E    时间: 2015-4-7 11:46
hhqnmlgb 发表于 2015-4-6 13:33
因为你写的是   while(true)    循环会一直转

谢谢 明白了                 




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