基类

时间:2015-07-08 16:34:14

标签: c++ templates inheritance g++ static-members

#include <iostream>
#include <string>

class Base
{
    static std::string s;
};

template<typename T>
class Derived
    : Base
{
public:
    Derived()
    {
        std::cout << s << std::endl;
    }
};

std::string Base::s = "some_text";    

int main()
{
    Derived<int> obj;
}

此程序编译并正常运行。静态变量s在基类中是私有的,它是私有继承的。 Derived类如何访问它?

如果Derived类不是模板,编译器会抱怨访问私有变量。

[aminasya@amy-aminasya-lnx c++]$ g++ --version
g++ (GCC) 4.4.7 20120313 (Red Hat 4.4.7-3)
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

3 个答案:

答案 0 :(得分:17)

这绝对是一个GCC错误,相当于GCC Bug 58740

class A {
    static int p;
};
int A::p = 0;
template<int=0>
struct B : A {
    B() {(void)p;}
};
int main() {
    B<>();
}

该错误仍处于打开状态,此代码仍在5.1上编译。 GCC存在模板成员访问问题,这只是另一个这样的例子。

答案 1 :(得分:5)

我认为这是一个编译器错误,因为这会编译gcc而不是clang,对我来说。

编辑:作为一个额外的数据点,这个错误似乎没有修复,因为我可以在gcc 4.9.2和5.1中重现。

答案 2 :(得分:3)

这是g ++ 4.8.4中的一个错误。仅当Derived是模板且成员是静态时,代码才会编译。

试验:

  • template static compiles
  • 没有模板静态失败
  • 模板不是静态失败
  • 没有模板不是静态失败