Implementing the copy constructor in terms of operator=

Viewed 11051

If the operator= is properly defined, is it OK to use the following as copy constructor?

MyClass::MyClass(MyClass const &_copy)
{
    *this = _copy;
}
8 Answers
Related