私は自分の問題を説明するために以下のコードを書きました。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;
}