What are the pro and cons of declaring always defaulted constructors for each non user-defined constructor?
Consider a class with a user-defined constuctor which does not need other user-defined constructors, it would be:
class Foo
{
public:
Foo() { // user-defined declaration }
Foo(const Foo&) = default;
Foo(Foo&&) noexcept = default;
~Foo() = default;
Foo& operator=(const Foo&) = default;
Foo& operator=(Foo&&) = default;
}
There are other actual advantages/disadvantages of doing that?
Several disadvantages of the top of my head:
std::unique_ptr
member of a class. You can mitigate this by either including the class definition (leading to an eventual overall increase in (re)build time for non-trivial projects, especially when the not forward declared class changes often). You can mitigate this by moving the= default
to a definition in a source file.There are probably some more, rising in subtility level beyond these.