I read that the locks in java are obtained on the instance(object) basis (in case of instance method)
Also the locks can be obtained on the object of class (in case of static method).
But I wondered how many locks can be obtained at a time by a particular object?
Can an object possess more than one lock at a time ?
If yes, please explain with an example.
Please help me clear my concept.
Only on one object per synchronized block. Objects won't possess the locks. It is the thread of execution which locks an object for working on it.
Locks are always obtained on objects. For example the below are two instances where locks can be obtained. The first one locks on an instance of a class (object).
The second one looks like it locks on a class. But Test.class is a special representation for the java.lang.Class instance of my Test class.