copy constructor with default arguments

前端 未结 2 519
灰色年华
灰色年华 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.

提交回复
热议问题