标签:thread style sync rgs sys ring start static art
class Test implements Runnable{ private boolean flag; Test(boolean flag){ this.flag = flag; } public void run(){ if(flag){ synchronized(Mylock.locka){ System.out.println("if..locka.."); synchronized(Mylock.lockb){ System.out.println("if..lockb.."); } } } else{ synchronized(Mylock.lockb){ System.out.println("else...lockb.."); synchronized(Mylock.locka){ System.out.println("else...locka.."); } } } } } class Mylock{ public static final Object locka = new Object(); public static final Object lockb = new Object(); } class LockTest{ public static void main(String[] args){ Test x1 = new Test(true); Test x2 = new Test(false); Thread t1 = new Thread(x1); Thread t2 = new Thread(x2); t1.start(); t2.start(); } }
标签:thread style sync rgs sys ring start static art
原文地址:http://www.cnblogs.com/guoyunhao/p/7857011.html