내 C++
코드는 다음과 같습니다 컴파일하는 동안상속에서 하나의 메서드 만 재정의 할 수 있습니까? 다음과 같이
#include<iostream>
using namespace std;
class A
{
public:
virtual void f(int i)
{
cout << "A's f(int)!" << endl;
}
void f(int i, int j)
{
cout << "A's f(int, int)!" << endl;
}
};
class B : public A
{
public:
virtual void f(int i)
{
cout << "B's f(int)!" << endl;
}
};
int main()
{
B b;
b.f(1,2);
return 0;
}
내가 얻을 :
g++ -std=c++11 file.cpp
file.cpp: In function ‘int main()’:
file.cpp:29:9: error: no matching function for call to ‘B::f(int, int)’
file.cpp:29:9: note: candidate is:
file.cpp:20:16: note: virtual void B::f(int)
file.cpp:20:16: note: candidate expects 1 argument, 2 provided
나는 B의 F (INT) 후 재 지정을 사용하려고 할 때, 나는이 같은 오류가 발생했습니다.
C++에서 단 하나의 메서드 만 재정의 할 수 있습니까? 내 컴퓨터에서 컴파일 할 코드를 찾고 override
을 사용하여 코드 예제를 검색했습니다. 아직 찾지 못했습니다.
[가상 메서드로 인해 파생 클래스에서 컴파일 오류가 발생할 수 있습니다] (http://stackoverflow.com/questions/7274723/virtual-method-causes-compilation-error-in-derived-class) –
아니요, 죄송합니다. 그것은 또 다른 문제였습니다. –
가능한 복제본 [C++ : 숨김 규칙의 근거] (http://stackoverflow.com/questions/4837399/c-rationale-behind-hiding-rule) – Angew