拷贝构造函数问题
请教各位下面的代码会调用基类的拷贝构造函数吗?RatedPlayer 从 TableTennisPlayer 继承而来
RatedPlayer::RatedPlayer(unsigned int r,const TableTennisPlayer &tp):TableTennisPlayer(tp)
{
rating=r;
}
//这里的对象是按引用传递,并不是按值传递,那为什么还会调用拷贝构造函数?
//这里tp的类型明明是const TableTennisPlayer & 为什么还调用拷贝构造函数?
难道说是运用了基类的拷贝构造函数构造了派生类中的那个嵌套对象?