同步(这个)和同步方法有什么区别
2022-09-01 11:30:41
假设我们有以下2个示例代码:
public synchronized void getSomething(){
this.hello = "hello World";
}
和这个
public void getSomething(){
synchronized(this){
this.hello = "hello World";
}
}
所以现在有人可以告诉我有什么区别?