Is there an advantage to use a Synchronized Method instead of a Synchronized Block?

后端 未结 23 2226
北荒
北荒 2020-11-22 04:29

Can any one tell me the advantage of synchronized method over synchronized block with an example?

23条回答
  •  一整个雨季
    2020-11-22 05:00

    With synchronized blocks, you can have multiple synchronizers, so that multiple simultaneous but non-conflicting things can go on at the same time.

提交回复
热议问题