重载运算符的嵌套类型

时间:2016-06-29 18:09:41

标签: c++ templates operator-overloading

以下代码构建正常,但未调用重载的模板运算符。这是为什么? main()功能会打印120而不是x

#include <iostream>

namespace foo
{
    struct bar
    {
        enum Type { x = 'x', y = 'y' };
    };
    template<typename T> std::ostream& operator<<(std::ostream& s, typename T::Type o) { return s << char(o); }
}

int main()
{
    foo::bar::Type t{ foo::bar::x };
    std::cout << t;
}

1 个答案:

答案 0 :(得分:1)

编译器永远无法确定T类型应该是什么,以便实例化模板(有关详细信息,请查看this问题)。就这样做:

    std::ofstream & operator<<(std::ostream & s, bar::Type t){...}

您声明的enumbar是公开的,因此在这种情况下不必担心访问限制。