为了解释我的问题,我编写了下面的代码。如果我注释第11行(使用关键字“ using”) ,编译器将不编译该文件并显示此错误: invalid conversion from 'char' to 'const char*'
。它似乎没有在 Son
类中看到 Parent
类的方法 void action(char)
。
为什么编译器会这样? 或者我做错了什么?
class Parent
{
public:
virtual void action( const char how ){ this->action( &how ); }
virtual void action( const char * how ) = 0;
};
class Son : public Parent
{
public:
using Parent::action; // Why should i write this line?
void action( const char * how ){ printf( "Action: %c\n", *how ); }
};
int main( int argc, char** argv )
{
Son s = Son();
s.action( 'a' );
return 0;
}