首页 > 其他 > 详细

自考新教材-p349_3(1)

时间:2020-02-05 22:17:15      阅读:82      评论:0      收藏:0      [点我收藏+]

源程序:

#include <iostream>
using namespace std;
template <class T>

class f
{
public:
T x, y;
void f1(T a, T b)
{
x = a;
y = b;
}
T max()
{
return (x > y) ? x : y;
}
};
//template <typename T>
int main()
{
f <double>a;
f <int>b;
a.f1(1.5, 3.8);
cout << a.x << "," << a.y << "," << a.max() << endl;
b.f1(-1,4);
cout << b.x << "," << b.y << "," << b.max() << endl;
system("pause");
return 1;
}

运行结果:

技术分享图片

 

自考新教材-p349_3(1)

原文:https://www.cnblogs.com/duanqibo/p/12266839.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!