我需要澄清一个问题,为什么我们需要范围解析运算符或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
如果我删除范围(或此运算符),则会出现超出范围的错误。 但为什么我们需要一个公开继承成员的范围。
对此的一些想法会很棒。
答案 0 :(得分:4)
请参阅Name lookup - Using the GNU Compiler Collection (GCC)
通过添加显式前缀mypair<T, A>
或this->
,您可以使printA
模板参数相关。然后在模板实例化阶段解析定义。