抱歉,我无法构建可以正确捕捉问题的问题。我的问题是这个。
我有这样的模板类。我无法理解如何定义Get函数。
template<class Data>
class Class
{
struct S
{
};
void Do();
S Get();
};
template<class Data>
void Class<Data>::Do()
{
}
template<class Data>
Class<Data>::S Class<Data>::Get()
{
}
我收到以下错误
1>error C2143: syntax error : missing ';' before 'Class<Data>::Get'
1>error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>fatal error C1903: unable to recover from previous error(s); stopping compilation
答案 0 :(得分:3)
template<class Data>
Class<Data>::S Class<Data>::Get()
需要
template<class Data>
typename Class<Data>::S Class<Data>::Get()
因为S
是依赖类型。只要您拥有嵌套在模板中的类型,就需要使用关键字typename
。例如,vector<int>
上的迭代器的类型为typename vector<int>::iterator
。
答案 1 :(得分:0)
C ++ 11风格,更易于阅读和书写:
template<class Data>
auto Class<Data>::Get() -> S {
return {};
}