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.
548k questions
547k answers
4 comments
86.3k users