当前位置:  开发笔记 > 编程语言 > 正文

从子类访问受保护的成员:gcc vs msvc

如何解决《从子类访问受保护的成员:gccvsmsvc》经验,为你挑选了1个好方法。

在visual C++中,我可以做这样的事情:

template 
class A{
protected:
    T i;
};

template 
class B : public A{
    T geti() {return i;}
};

如果我尝试用g ++编译它,我会收到一个错误.我必须这样做:

template 
class B : public A{
    T geti() {return A::i;}
};

我不应该在标准C++中做前者吗?或者是gcc错误配置给我错误的东西?



1> Brian R. Bon..:

这曾经被允许,但在gcc 3.4中有所改变.

在模板定义中,非限定名称将不再找到依赖库的成员(由C++标准中的[temp.dep]/3指定).例如,

    template  struct B {
      int m;
      int n;
      int f ();
      int g ();
    };
    int n;
    int g ();
    template  struct C : B {
      void h ()
      {
        m = 0; // error
        f ();  // error
        n = 0; // ::n is modified
        g ();  // ::g is called
      }
    };

您必须使名称依赖,例如通过在其前面加上this->.这是C :: h的更正定义,

    template  void C::h ()
    {
      this->m = 0;
      this->f ();
      this->n = 0
      this->g ();
    }

推荐阅读
女女的家_747
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有