Lokvin Wiki
Advertisement

ref doc

Singleton

difference between static synchronized method and non-static synchronized method

  • The lock objects are difference between static synchronized method and non-static synchronized method. Static synchronized method lock object is class object (lock object: FooClass.class), non-static synchronized lock object is instance object (lock object: )
Advertisement