If the operator= is properly defined, is it OK to use the following as copy constructor?
operator=
MyClass::MyClass(MyClass const &_copy) { *this
I would say this is not okay if MyClass allocates memory or is mutable.
MyClass