What is the difference between static synchronize() metod
and synchronize() method?
Answer / 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 |
What is meant by Java interpreter?
How big is a gigabyte?
how tha garbage collector know that the object will be deleted? on which algorithm the garbage collector works? what is the working principle of garbage collector? How manay types of garbage collectors r there?
What is a jagged array in java?
How to override equals() and hashCode() method in java?
class A { public void disp(int a,int b) { System.out.println("hai"); } } class B { public void disp(int a,int b,int c) { System.out.println("hai"); } } above program is overloading or overriding?
what is request dispatcher and how does it work?
Which is not Object in Java?
What is the difference between the synchronized() & static synchronized()?
why we r not use pointers in corejava?
Tell me about different OOPS concepts.
Can array grow dynamically in java?