No. Constructor can’t have any return type. Constructors are used to return the object of the class.

If you see above example. We have created a class Test and in that class we have created a constructor Test that returns nothing. But internally it returns the object of Test.
![]()
In above code we have created the object of Test by calling the constructor of Test class.
Leave a Reply