Static Synchronized vs non static synchronized method in Java
Discuss Static Synchronized vs non static synchronized method in Java in the Web Design & Development Articles forum on Tutorialized. Static Synchronized vs non static synchronized method in Java This is the place to find articles published on Tutorialized.com that discuss web design and development articles.
Posts: 41,570
Time spent in forums: < 1 sec
Reputation Power: 47
Static Synchronized vs non static synchronized method in Java
Main difference between static and non static synchronized method is that they both lock on different lock. static synchronized method lock on .class object while non static synchronized method lock on current instance of object represented by this keyword.