标签: c++ types nested identifier
在C ++中,是否有一种符合标准的方法可以在嵌套类中重用周围上下文中的类型标识符?在下面的示例中,请考虑标识符Type。
Type
template<class T> struct A { typedef T Type; struct B { typedef typename A::Type Type; }; };