是否可以使用同一类的另一个构造函数来使用初始化行创建复制构造函数?

时间:2019-06-04 08:46:08

标签: c++

是否可以像下面的代码那样编写副本构造函数? (在init行中使用其他构造函数)

Fish::Fish( int fin, int gills)
{
    m_finCount = fin;
    m_gillsCount = gills;
}

Fish::Fish(const Fish & other):Fish(other.m_finCount,other.m_gillsCount)
{
 // all in init line

}

0 个答案:

没有答案