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() { //... }
Why not this :
Class A { public A() { //... Do you thing this.init(); } public void init() { //Call after the constructor } }