What is the difference between static synchronize() metod
and synchronize() method?
Answer Posted / suresh m
Non static synchronized method enables Object's Object Lock for the given Thread
while static synchronized method enables Class's Class Lock for given Thread
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What defines function?
What is the use of list in java?
What one should take care of, while serializing the object?
What will be the output of round(3.7) and ceil(3.7)?
What is the use of a conditional inclusion statement in Java ?
java Technical questions asked by JPMC
What are the new features in java 8? Explain
What is rule of accessibility in java?
Can we able to pass objects as an arguments in java?
How do you check if two given string are anagrams?
What is floor in java?
How arrays are stored in memory in java?
what is the difference between preemptive scheduling and time slicing? : Java thread
What does a void function return?
Can we have any code between try and finally blocks?