Java / Constructor
Can we call the constructor of a class more than once for an object in Java?
Constructor is called automatically when we create an object using new keyword. It is called only once for an object at the time of object creation and hence, we cannot invoke the constructor again for an object after it is created.
More Related questions...