我开始学习 C++ 模板。现在,我正在尝试编译 C++ 模板的简单示例。
#include <iostream.h>
template <class T> class pair1 {
T value1, value2;
public:
pair1 (T first, T second) {
value1=first;
value2=second;
}
T getmax ();
};
template <class T>
T pair1::getmax (){
T retval;
retval = value1>value2? value1 : value2;
return retval;
}
int main(){
pair1<int> myobject (100, 75);
cout << myobject.getmax()<<endl;
system("pause");
return 0;
}
我发生了以下2个错误:
- (1) 错误 C2955: 'pair1': 使用模板需要模板参数列表
- (2) error C2244:'pair1::getmax':unable to match function definition to an existing declaration
我正在使用 Visual Studio 2010。
当使用如下内联函数时,它工作得很好:
#include <iostream.h>
template <class T> class pair1 {
T value1, value2;
public:
pair1 (T first, T second) {
value1=first;
value2=second;
}
**T getmax (){ T retval;
retval = value1>value2? value1 : value2;
return retval;};**
};
int main(){
pair1<int> myobject (100, 75);
cout << myobject.getmax()<<endl;
system("pause");
return 0;
}
但是,我不喜欢在这种情况下使用内联函数,希望任何人都可以告诉 C++ 模板代码的第一块有什么问题。