本帖最后由 汤姆纳斯 于 2014-6-22 13:51 编辑
- class SaleTickets implements Runnable
- {
- private int tickets=100;
- public void run ()
- {
- while (true)
- {
- if (tickets>0)
- {
- System.out.println(Thread.currentThread().getName()+"....."+tickets--);
- }
- }
- }
- }
- class TicketsDemo
- {
- public static void main(String[] args)
- {
- SaleTickets t=new SaleTickets();
- //创建线程。通过Thread类对象。
- Thread t1=new Thread(t);
- Thread t2=new Thread(t);
- Thread t3=new Thread(t);
- Thread t4=new Thread(t);
- t1.start();
- t2.start();
- t3.start();
- t4.start();
-
-
- }
- }
复制代码 这段代码是毕老师视频里的,但我运行完之后程序却一直没结束,结尾一直是光标在闪,这是为什么? |