Faraz Alig wrote:
I read that "Constructors do not have a return type—not even void". BUT does it mean that constructors does not return any thing?
simply you can put *return;*
Faraz Alig wrote:
I believe that when a new instance is created the constructor call returns the handle/reference of that object. Is this true?
Constructors logically return an object, but that is take care by JVM.