namespace statismo {
template<>
struct RepresenterTraits<itk::Image<itk::Vector<float, 3u>, 3u> > {
// bla
typedef typename VectorImageType::PointType PointType;
^^^^^^^^
typedef typename VectorImageType::PixelType ValueType;
^^^^^^^^
};
您的typename
关键字被放置在 for 的显式特化RepresenterTraits<T>
中itk::Image<itk::Vector<float, 3u>, 3u>
。但是,这是一个常规类,而不是类模板。这意味着它VectorImageType
不是一个依赖名称,编译器知道它PixelType
是一个嵌套类型。这就是为什么它不允许使用typename
. 另见此问答。
请注意,在 C++11 中,此限制已被取消,并且在非模板上下文中typename
允许但不需要使用 。参见例如这个例子
#include <iostream>
template<class T>
struct V
{
typedef T type;
};
template<class T>
struct S
{
// typename required in C++98/C++11
typedef typename V<T>::type type;
};
template<>
struct S<int>
{
// typename not allowed in C++98, allowed in C++11
// accepted by g++/Clang in C++98 mode as well (not by MSVC2010)
typedef typename V<int>::type type;
};
struct R
{
// typename not allowed in C++98, allowed in C++11
// accepted by g++ in C++98 mode as well (not by Clang/MSVC2010)
typedef typename V<int>::type type;
};
int main()
{
}
现场示例(只需使用 g++/clang 和 std=c++98 / std=c++11 命令行选项)。