copy constructor with default arguments

前端 未结 2 497
灰色年华
灰色年华 2021-01-01 22:11

As far as I know, the copy constructor must be of the form T(const T&) or T(T&). What if I wanted to add default arguments to the signature

相关标签:
2条回答
  • 2021-01-01 22:41

    You can just create two different constructors:

    T(const T&)
    T(const T&,double)
    

    However, what you have is permitted as a copy constructor.

    On a side note, I have discovered that it is generally not a good idea to use default parameters in C++, and it is instead much better to use overloads, where the ones with fewer parameters invoke the ones with more parameters, using default values (of course that isn't possible with constructors in ISO C++ 2003, but delegating constructors are permitted in ISO C++ 201x). The reason for this is that default values give your functions different actual signatures than their apparent behavior, making it somewhat difficult/painful when taking the pointers to the functions. By providing overloads, function pointers of each possible invocation type can be taken without requiring any sort of "binding" mechanism to make it work.

    0 讨论(0)
  • 2021-01-01 22:52

    Yes.

    §[class.copy]/2:

    A non-template constructor for class X is a copy constructor if its first parameter is of type X&, const X&, volatile X& or const volatile X&, and either there are no other parameters or else all other parameters have default arguments [ Example: X::X(const X&) and X::X(X&,int=1) are copy constructors.

    0 讨论(0)
提交回复
热议问题