访问公共继承的模板数据成员

时间:2010-09-01 07:29:09

标签: c++ templates inheritance

我需要澄清一个问题,为什么我们需要范围解析运算符或this指针来访问模板基类中公开继承的成员。 据我了解,这是为了增加清晰度,但是this如何进一步增加清晰度,而不仅仅指出它是班级成员。

为了让我的问题更加清晰,我添加了一些代码。

#include <iostream>
using namespace std;

template <class T, class A>
class mypair {
        public:
         T a, b;
  public:
    mypair (T first, T second)
      {a=first; b=second;}

        virtual void printA() 
        {   
        cout<<"A"<<a<<endl;
        cout<<"B"<<b<<endl;
        }   
};







template <class T, class A>
class next: mypair<T,A>
{
public:

        next (T first, T second) : mypair<T,A>(first, second)
        {   
        }   

        void printA() 
        {   
        cout<<"A:"<<mypair<T,A>::a<<endl; // this->a; also works 
        cout<<"B:"<<mypair<T,A>::b<<endl; // this-b;  also works
        }   

};


int main () {
  next<double,float>  newobject(100.25, 75.77);
  newobject.printA();
  return 0;
}

输出:

A:100.25
B:75.77

如果我删除范围(或此运算符),则会出现超出范围的错误。 但为什么我们需要一个公开继承成员的范围。

对此的一些想法会很棒。

1 个答案:

答案 0 :(得分:4)

请参阅Name lookup - Using the GNU Compiler Collection (GCC)

通过添加显式前缀mypair<T, A>this->,您可以使printA模板参数相关。然后在模板实例化阶段解析定义。