is it possible to re-initialize an object of a class using its constructor?
Sort of. Given a class A:
A a; ... a = A();
the last statement is not initialisation, it is assignment, but it probably does what you want.
2.1m questions
2.1m answers
60 comments
57.0k users