top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is an object's lock and which object's have locks?

+1 vote
268 views
What is an object's lock and which object's have locks?
posted Apr 21, 2016 by Ramesh Gowda

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

An object's lock is a mechanism that is used by multiple threads to obtain synchronized access to the object. A thread may execute a synchronized method of an object only after it has acquired the object's lock. All objects and classes have locks. A class's lock is acquired on the class's Class object.

answer Apr 25, 2016 by Karthick.c
...