本帖最后由 何超 于 2013-11-8 22:03 编辑
- class Ticket implements Runnable
- {
- private tick=10;
- public void run()
- {
- while(true)
- {
- if(tick>0)
- { System.out.println("Thread.currentThread().getName()"+tick);}
- }
- }
- }
- class TicketDemo2
- {
- public static void main(String[] args)
- {
- Ticket t=new Ticket();
- 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();
- }
- }
复制代码 现在要对线程进行同步,毕老师的方法是把while中的语句提出来重新建立一个方法实现 然后对那个方法进行同步
可是为什么不直接在 while语句里面对同步代码块进行同步呢- Objcet obj=new Object();
- while(true)
- {
- synchronized(obj)
- {
- if(tick>0)
- { System.out.println("Thread.currentThread().getName()"+tick);}
- }
- }
复制代码 |