用于.class的 Java 同步块
2022-08-31 09:23:13
这个java代码是什么意思?它会在 的所有对象上获得锁定吗?MyClass
synchronized(MyClass.class) {
//is all objects of MyClass are thread-safe now ??
}
以及上面的代码与此代码有何不同:
synchronized(this) {
//is all objects of MyClass are thread-safe now ??
}