日期:2014-05-20  浏览次数:20666 次

关于一个synchronized同步程序的疑惑??
public   class   TT   implements   Runnable   {
int   b   =   100;

public   synchronized   void   m1()   throws   Exception{
//Thread.sleep(2000);
b   =   1000;
Thread.sleep(5000);
System.out.println( "b   =   "   +   b);
}

public   synchronized   void   m2()   throws   Exception   {
Thread.sleep(2500);
b   =   2000;
}

public   void   run()   {
try   {
m1();
}   catch(Exception   e)   {
e.printStackTrace();
}
}

public   static   void   main(String[]   args)   throws   Exception   {
TT   tt   =   new   TT();
Thread   t   =   new   Thread(tt);
t.start();

tt.m2();
System.out.println(tt.b);
}
}

程序如上,

输出为:
1000
b=1000

谁能可以说一下程序执行的流程.
另外synchronized所指定的方法应该是一个原子操作吗?

------解决方案--------------------
因为m1(),m2()是synchronized的,所以t.start()执行了run()中的m1()后,在m1()没有结束之前,变量b是不会被m2()访问的,所以就继续执行System.out.println(tt.b),即得出上面的结果。