可以在C ++中继承函数

时间:2018-10-21 16:55:07

标签: c++

抱歉,这听起来像是一个愚蠢的问题。假设我有一个类似

的函数
void Func0(){
    // do something
}

和其他一些功能,例如

void Func1(){
    Func0();
    // do some other things
}
void Func2(){
    Func0();
    // do some other things
}
// and it goes on...

有什么方法可以消除Func1()Func2()中的复制粘贴工作,并使它们在实现中首先自动调用Func0()

0 个答案:

没有答案