我写了下面的代码来解释我的问题。如果我注释第 11 行(使用关键字“using”),编译器不会编译文件并显示此错误:invalid conversion from 'char' to 'const char*'
. 好像void action(char)
在Parent
类中没有看到类的方法Son
。
为什么编译器会这样?还是我做错了什么?
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;
}