Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Core Java Interview Questions and Answers

Question: Can a method be static and synchronized?
Answer: A static method can be synchronized. If you do so, the JVM will obtain a lock on the java.lang. Class instance associated with the object. It is similar to saying:
synchronized(XYZ.class) { 
}
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook