Maybe a stupid question but still ask.
There is a synchronized block in which the object is blocked. In the constructor of this object, another object is created.
Is the question blocked in the same way?
example:
public class SomeClass{ private SecondClass sClass; public SomeClass(){ sClass = new SecondClass(); } . . // some action . try{ synchronized(this){ this.wait(sometime); } }