同じコードのマルチスレッドが同時に発生する混乱状況
1724 ワード
public class Thread1 extends Thread {
private static final ThreadLocal<Session> threadSession = new ThreadLocal<Session>();
public static Session getSession() {
Session s = threadSession.get();
if (s == null) {
System.out.println("s==null");
s = new Session();
threadSession.set(s);
} else {
System.out.println(s.getId());
}
return s;
}
public void run() {
for (int i = 0; i < 3; i++) {
Session s = getSession();
}
}
}
public class ThreadLocalTest {
/**
* @param args
*/
public static void main(String[] args) {
Thread1 t1=new Thread1();
Thread1 t2=new Thread1();
try {
t1.start();
//t1.join();
t2.start();
//t2.join();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
/*t1.start();
t2.start();*/
}
}
public class Session {
private static AtomicLong id=new AtomicLong(0);
Session(){
System.out.println("haha:"+id.incrementAndGet());
}
public long getId(){
return id.get();
}
}
印刷結果:
s==null
s==null
haha:1
haha:2
2
2
2
2
これは何が原因ですか.解析の結果、2番目のスレッドが見つかりました.set(s);
で最初のスレッドのセッションsetを入れたのですが、これはgetSession()メソッドを実行する場合、同じメモリ領域で動作していることを示しています.同期しなければ、getSession()メソッド内の変数は各スレッド間で共通のデータです.