所謂的“執行緒八鎖”
其實就是看 synchronized 鎖住的是哪個物件
情況1:12 或 21都是有可能的,就看cpu先排程哪個執行緒
@Slf4j(topic = "c.Number")
class Number{
public synchronized void a() {
log.debug("1");
}
public synchronized void b() {
log.debug("2");
}
}
public static void main(String[] args) {
Number n1 = new Number();
new Thread(()->{ n1.a(); }).start();
new Thread(()->{ n1.b(); }).start();
}
情況2:1s後12,或 2 1s後 1 ,還是看cpu先排程哪個執行緒
@Slf4j(topic = "c.Number")
class Number{
public synchronized void a() {
sleep(1); //睡眠1秒
log.debug("1");
}
public synchronized void b() {
log.debug("2");
}
}
public static void main(String[] args) {
Number n1 = new Number();
new Thread(()->{ n1.a(); }).start();
new Thread(()->{ n1.b(); }).start();
}
情況3:3 1s後 12 、 23 1s後 1 、 32 1s後 1,3肯定是最開始的列印的,就看1或2誰先列印
@Slf4j(topic = "c.Number")
class Number{
public synchronized void a() {
sleep(1);//睡眠1秒
log.debug("1");
}
public synchronized void b() {
log.debug("2");
}
public void c() { // 未加鎖
log.debug("3");
}
}
public static void main(String[] args) {
Number n1 = new Number();
new Thread(()->{ n1.a(); }).start();
new Thread(()->{ n1.b(); }).start();
new Thread(()->{ n1.c(); }).start();
}
情況4:2 1s 後 1,沒有互斥,同時執行,2先列印,sleep 1秒後列印1
@Slf4j(topic = "c.Number")
class Number{
public synchronized void a() {
sleep(1);//睡眠1秒
log.debug("1");
}
public synchronized void b() {
log.debug("2");
}
}
public static void main(String[] args) {
Number n1 = new Number();
Number n2 = new Number();
new Thread(()->{ n1.a(); }).start();
new Thread(()->{ n2.b(); }).start();
}
情況5:2 1s 後 1,鎖住的物件不同,所以和題4一樣,不存在互斥。
@Slf4j(topic = "c.Number")
class Number{
public static synchronized void a() {
sleep(1);//睡眠1秒
log.debug("1");
}
public synchronized void b() {
log.debug("2");
}
}
public static void main(String[] args) {
Number n1 = new Number();
new Thread(()->{ n1.a(); }).start();
new Thread(()->{ n1.b(); }).start();
}
情況6:1s 後12, 或 2 1s後 1,還是看cpu先排程哪個執行緒
@Slf4j(topic = "c.Number")
class Number{
public static synchronized void a() {
sleep(1);//睡眠1秒
log.debug("1");
}
public static synchronized void b() {
log.debug("2");
}
}
public static void main(String[] args) {
Number n1 = new Number();
new Thread(()->{ n1.a(); }).start();
new Thread(()->{ n1.b(); }).start();
}
情況7:2 1s 後 1,鎖住的物件不同,所以和題4一樣,不存在互斥。
@Slf4j(topic = "c.Number")
class Number{
public static synchronized void a() {
sleep(1);//睡眠1秒
log.debug("1");
}
public synchronized void b() {
log.debug("2");
}
}
public static void main(String[] args) {
Number n1 = new Number();
Number n2 = new Number();
new Thread(()->{ n1.a(); }).start();
new Thread(()->{ n2.b(); }).start();
}
情況8:1s 後12, 或 2 1s後 1,鎖著的同一個物件,還是看cpu先排程哪個執行緒
@Slf4j(topic = "c.Number")
class Number{
public static synchronized void a() {
sleep(1);//睡眠1秒
log.debug("1");
}
public static synchronized void b() {
log.debug("2");
}
}
public static void main(String[] args) {
Number n1 = new Number();
Number n2 = new Number();
new Thread(()->{ n1.a(); }).start();
new Thread(()->{ n2.b(); }).start();
}