> 백엔드 개발 > C++ > C 템플릿의 상속된 클래스에서 보호된 멤버 변수에 액세스하는 방법은 무엇입니까?

C 템플릿의 상속된 클래스에서 보호된 멤버 변수에 액세스하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-10-30 09:23:03
원래의
997명이 탐색했습니다.

How to Access Protected Member Variables in Inherited Classes in C   Templates?

템플릿: 상속된 클래스에서 부모 클래스 멤버 변수의 가시성

C 템플릿에서 부모 클래스의 멤버 변수는 다음에서 보이지 않을 수 있습니다. 기본적으로 상속된 클래스. 이로 인해 이러한 변수에 액세스할 때 컴파일 오류가 발생할 수 있습니다.

다음 예를 고려하십시오.

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

template <class elemType>
class unorderedArrayListType: public arrayListType<elemType> {
    void insertAt(int, const elemType&);  // Function that uses 'list' and 'length'
};</code>
로그인 후 복사

상속된 클래스 unorderedArrayListType에서 보호된 변수 목록 및 길이에 직접 액세스하면 다음과 같은 오류가 발생합니다. "'길이'는 이 범위에서 선언되지 않았습니다." 이 문제를 해결하려면 파생 클래스 내에서 이러한 변수를 명시적으로 선언해야 합니다.

이를 수행하는 두 가지 주요 접근 방식이 있습니다.

  1. "this"를 사용하세요. ->" 접두사:

    각 멤버 변수 앞에 this->를 붙입니다. 예:

    <code class="cpp">void insertAt(int location, const elemType& insertItem) {
        for (int i = this->length; i > location; i--)
            this->list[i] = this->list[i - 1];
    
        this->list[location] = insertItem;
        this->length++;
    }</code>
    로그인 후 복사
  2. 선언 사용:

    파생 클래스의 비공개 섹션에 멤버 변수에 대한 선언을 포함합니다. 예:

    <code class="cpp">class unorderedArrayListType: public arrayListType<elemType> {
    private:
        using arrayListType<elemType>::length;  // Declare 'length' explicitly
        using arrayListType<elemType>::list;   // Declare 'list' explicitly
    
    public:
        void insertAt(int, const elemType&);
    };</code>
    로그인 후 복사

위 내용은 C 템플릿의 상속된 클래스에서 보호된 멤버 변수에 액세스하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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