首页 > 后端开发 > C++ > 正文

如何在 C 模板中访问继承类中受保护的成员变量?

Mary-Kate Olsen
发布: 2024-10-30 09:23:03
原创
914 人浏览过

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
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!