gpt4 book ai didi

java - 为什么锁在对象上,而不是在 java 中的代码上

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:15:53 24 4
gpt4 key购买 nike

<分区>

我们在 Java 中有以下语法。

public synchronized void count() {
count--;
}

这可以像下面这样修改。

public void count() {
synchronized(this) {
count--;
}
}

我的问题是,为什么我们不能用 Java 编写如下代码?

public void count() {
synchronized {
count --;
}
}

事实上,我想了解 b/w synchronized(this)synchronized(other) 的区别

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com