类模板使用
作者:互联网
#include<iostream>
using namespace std;
template<class t1>
class compare
{
public:
compare(t1 a, t1 b) :a(a), b(b) {}
void max();
private:
t1 a, b;
};
template<class t1>//类外定义 函数模板中成员函数的写法
void compare<t1>::max()
{
if (a>b)
{
cout << a;
}
else
{
cout << b;
}
}
int main() {
compare<int>a(1, 2);
a.max();
compare<float>b(3, 4);
b.max();
}
结果:24
注意如果函数在类外定义的方式。
标签:compare,类外,max,void,t1,template,使用,模板 来源: https://blog.csdn.net/weixin_45671199/article/details/123589021