如何在嵌套的C ++类中重用类型标识符?

时间:2014-04-22 12:52:22

标签: c++ types nested identifier

在C ++中,是否有一种符合标准的方法可以在嵌套类中重用周围上下文中的类型标识符?在下面的示例中,请考虑标识符Type

template<class T>
struct A {
    typedef T Type;

    struct B {
        typedef typename A::Type Type;
    };
};

0 个答案:

没有答案