InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between A Synchronized Method And A Synchronized Block? |
|
Answer» In JAVA programming, each object has a lock. A thread can acquire the lock for an object by using the synchronized keyword. In Java programming, each object has a lock. A thread can acquire the lock for an object by using the synchronized keyword. |
|