InterviewSolution
Saved Bookmarks
| 1. |
Can You Declare A Static Method As Synchronized? |
|
Answer» Yes, we can DECLARE static METHOD as synchronized. But the CALLING thread should acquire lock on the CLASS that owns the method.
Yes, we can declare static method as synchronized. But the calling thread should acquire lock on the class that owns the method.
|
|