> 백엔드 개발 > C++ > 본문

상속된 클래스의 상위 클래스 멤버 변수에 액세스할 수 없는 이유는 무엇입니까?

DDD
풀어 주다: 2024-11-01 01:03:28
원래의
422명이 탐색했습니다.

Why Can't I Access Parent Class Member Variables in My Inherited Class?

상속 클래스에 부모 클래스 멤버 변수가 보이지 않음

클래스를 템플릿으로 상속할 때 부모 클래스의 보호 변수가 보이지 않을 수 있음 상속된 클래스에 표시됩니다. 이로 인해 상속된 클래스의 해당 변수에 액세스할 때 컴파일 오류가 발생할 수 있습니다.

다음 예를 고려하세요.

<code class="cpp">// Parent class
template <class elemType>
class arrayListType {
protected:
    elemType *list;
    int length;
    // ...
};

// Inherited class
template <class elemType>
class unorderedArrayListType: public arrayListType<elemType> {
public:
    void insertAt(int location, const elemType&amp; insertItem);
    // ...
};</code>
로그인 후 복사

컴파일러는 unorderedArrayListType 클래스를 발견하면 insertAt 함수의 유효성을 검사하려고 시도합니다. . 그러나 arrayListType 클래스에 선언된 길이 및 목록 변수는 찾을 수 없습니다. 이로 인해 컴파일 오류가 발생합니다.

해결 방법

이 문제를 해결하려면 다음 두 가지 해결 방법이 있습니다.

1. 접두사 this->

상속 변수 접두사 this-> 상위 클래스에 속함을 명시적으로 지정합니다:

<code class="cpp">// Inherited class
template <class elemType>
class unorderedArrayListType: public arrayListType<elemType> {
public:
    void insertAt(int location, const elemType&amp; insertItem) {
        this->length++;
        // ...
    }
    // ...
};</code>
로그인 후 복사

2. 선언 사용

상속 클래스의 비공개 섹션에서 상속 변수 선언:

<code class="cpp">// Inherited class
template <class elemType>
class unorderedArrayListType: public arrayListType<elemType> {
private:
    using arrayListType<elemType>::length;
    using arrayListType<elemType>::list;

public:
    void insertAt(int location, const elemType&amp; insertItem) {
        length++;
        // ...
    }
    // ...
};</code>
로그인 후 복사

두 방법 모두 컴파일러가 상속 변수가 상위 클래스에서 온 것임을 명시적으로 이해하도록 합니다. .

위 내용은 상속된 클래스의 상위 클래스 멤버 변수에 액세스할 수 없는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!