I need to call a method after the constructor has ended and I have no idea how to do. I have this class:
Class A { public A() { //... }
How bout this:
Class A { public A() { // to do init(); } public void init() { //Call after the constructor } }