本帖最后由 张伟强 于 2012-8-3 20:11 编辑
- package good.study;
- class TicketTest implements Runnable
- {
- private int tick = 100;
- Object obj = new Object();
- boolean flag = true;
- public void run()
- {
- if(flag)
- {
- while(true) //谁能解释一下此处的while(true)是什么意思?有什么作用?
- {
- synchronized(this)
- {
- if(tick>0)
- {
- try{Thread.sleep(10);}catch(Exception e){}
- System.out.println(Thread.currentThread().getName()+"....code : "+ tick--);
- }
- }
- }
- }
- else
- while(true)
- show();
- }
- public synchronized void show()
- {
- if(tick>0)
- {
- try{Thread.sleep(10);}catch(Exception e){}
- System.out.println(Thread.currentThread().getName()+"....show.... : "+ tick--);
- }
- }
- }
- class Ticket
- {
- public static void main(String[] args)
- {
- TicketTest t = new TicketTest();
- Thread t1 = new Thread(t);
- Thread t2 = new Thread(t);
- t1.start();
- try{Thread.sleep(10);}catch(Exception e){}
- t.flag = false;
- t2.start();
- }
- }
复制代码 请看上面代码注释部分,本程序处理两个线程同时买票问题。毕老师在讲同步的时候代码中多次出现while(true),只听到他说这样写输出的内容会增多,但是没明白这个while(true)究竟是干什么用的,具体是什么意思?这个true究竟又是值得什么? |
|