C ++를 사용하여 파생 클래스에서 부모 함수를 어떻게 호출합니까? 예를 들어,이라는 클래스 parent
와 child
parent에서 파생 된 클래스 가 있습니다. 각 클래스에는 print
기능이 있습니다. 자녀의 인쇄 기능 정의에서 부모 인쇄 기능을 호출하고 싶습니다. 어떻게하면 되나요?
답변
기본 클래스에 정의 된 함수는 파생 클래스에서 자동으로 사용할 수 있습니다 (이 아닌 경우 private
).
파생 클래스에 동일한 서명을 가진 함수가있는 경우 기본 클래스 이름 뒤에 두 개의 콜론을 추가하여 명확하게 표시 할 수 있습니다 base_class::foo(...)
. Java 및 C #과 달리 C ++에는 “기본 클래스”( 또는 )에 대한 키워드 가 없습니다. C ++은 다중 상속 을 지원하므로 모호함을 유발할 수 있습니다.super
base
class left {
public:
void foo();
};
class right {
public:
void foo();
};
class bottom : public left, public right {
public:
void foo()
{
//base::foo();// ambiguous
left::foo();
right::foo();
// and when foo() is not called for 'this':
bottom b;
b.left::foo(); // calls b.foo() from 'left'
b.right::foo(); // call b.foo() from 'right'
}
};
또한 기본 클래스 중 하나를 다른 클래스보다 참조 할 수있는 방법이 없으므로 동일한 클래스에서 직접 두 번 파생 할 수 없습니다.
class bottom : public left, public left { // Illegal
};
답변
이름이 부모 클래스 Parent
이고 이름이 자식 클래스 인 Child
경우 다음과 같이 할 수 있습니다.
class Parent {
public:
virtual void print(int x);
}
class Child : public Parent {
void print(int x) override;
}
void Parent::print(int x) {
// some default behavior
}
void Child::print(int x) {
// use Parent's print method; implicitly passes 'this' to Parent::print
Parent::print(x);
}
참고 Parent
클래스의 실제 이름이 아닌 키워드입니다.
답변
기본 클래스가 호출 Base
되고 함수가 호출 되면 다음을 FooBar()
사용하여 직접 호출 할 수 있습니다Base::FooBar()
void Base::FooBar()
{
printf("in Base\n");
}
void ChildOfBase::FooBar()
{
Base::FooBar();
}
답변
MSVC에는 다음에 대한 Microsoft 특정 키워드가 있습니다. __super
MSDN : 재정의하는 함수에 대해 기본 클래스 구현을 호출하고 있음을 명시 적으로 지정할 수 있습니다.
// deriv_super.cpp
// compile with: /c
struct B1 {
void mf(int) {}
};
struct B2 {
void mf(short) {}
void mf(char) {}
};
struct D : B1, B2 {
void mf(short) {
__super::mf(1); // Calls B1::mf(int)
__super::mf('s'); // Calls B2::mf(char)
}
};
답변
기본 클래스 멤버 함수의 액세스 수정자가 보호되거나 공개 인 경우 파생 클래스에서 기본 클래스의 멤버 함수를 호출 할 수 있습니다. 파생 멤버 함수에서 기본 클래스 비가 상 및 가상 멤버 함수를 호출 할 수 있습니다. 프로그램을 참조하십시오.
#include<iostream>
using namespace std;
class Parent
{
protected:
virtual void fun(int i)
{
cout<<"Parent::fun functionality write here"<<endl;
}
void fun1(int i)
{
cout<<"Parent::fun1 functionality write here"<<endl;
}
void fun2()
{
cout<<"Parent::fun3 functionality write here"<<endl;
}
};
class Child:public Parent
{
public:
virtual void fun(int i)
{
cout<<"Child::fun partial functionality write here"<<endl;
Parent::fun(++i);
Parent::fun2();
}
void fun1(int i)
{
cout<<"Child::fun1 partial functionality write here"<<endl;
Parent::fun1(++i);
}
};
int main()
{
Child d1;
d1.fun(1);
d1.fun1(2);
return 0;
}
산출:
$ g++ base_function_call_from_derived.cpp
$ ./a.out
Child::fun partial functionality write here
Parent::fun functionality write here
Parent::fun3 functionality write here
Child::fun1 partial functionality write here
Parent::fun1 functionality write here
답변
부모 범위 확인 연산자를 사용하여 부모 메서드를 호출하십시오.
부모 :: method ()
class Primate {
public:
void whatAmI(){
cout << "I am of Primate order";
}
};
class Human : public Primate{
public:
void whatAmI(){
cout << "I am of Human species";
}
void whatIsMyOrder(){
Primate::whatAmI(); // <-- SCOPE RESOLUTION OPERATOR
}
};
답변
struct a{
int x;
struct son{
a* _parent;
void test(){
_parent->x=1; //success
}
}_son;
}_a;
int main(){
_a._son._parent=&_a;
_a._son.test();
}
참조 예.