0
votes
How much work should be done in a constructor?
RAII is the backbone of C++ resource management, so acquire the resources you need in the constructor, release them in the destructor.
This is when you establish your class invariants. I …
