i have one doubt regarding synchronization in java threads
1)As in case of static synschronized methods , thread get a lock on the Class object for that class.
if it locks the class object then if any other thread want to create a new instance of that class , does it has to wait till lock gets released?
