为什么我的重载继承函数没有隐藏基函数?

时间:2015-11-26 04:14:05

标签: c++ inheritance overloading

我有这段代码:

enum type{FOO, BAR}

class base{
    funct(type t);
}
class other : base{
    funct(type t);
}

int main(){
    base x;
    x = other();
    x-funct(FOO); //This call base::funct()
}

总是调用基本功能,我不明白。

0 个答案:

没有答案