类模板

本文介绍了一个使用C++模板类实现的最大值和最小值计算示例。通过定义通用的Compare类模板,可以处理不同数据类型(如int、float和char)之间的比较操作。此示例展示了如何创建特定类型的对象并调用成员函数来获取最大值和最小值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#include <iostream>
using namespace std;
template <class numtype>//声明类模板,虚拟类型名为numtype
class Compare//类模板名为Compare
{
    public:
    Compare(numtype a,numtype b)//定义构造函数
    {
        x=a;y=b;
    }
    numtype max()//函数类型暂定为numtype
    {
        return (x>y)?x:y;
    }
    numtype min()//函数类型暂定为numtype
    {
        return (x<y)?x:y;
    }
    private:
    numtype x,y;//数据类型暂定为numtype
};
int main()
{
    Compare<int>cp1(3,7);//定义对象cp1,用于两个整数的比较
    cout<<cp1.max()<<" is the maximum of the two integer numbers. "<<endl;
    cout<<cp1.min()<<" is the minimum of the two interger numbers."<<endl;
    Compare<float>cf2(45.78,93.6);
    cout<<cf2.max()<<" is the maximum of the two integer numbers."<<endl;
     cout<<cf2.min()<<" is the minimum of the two interger numbers."<<endl;
     Compare<char>c3('a','A');
     cout<<c3.max()<<" is the maximum of the two integer numbers."<<endl;
     cout<<c3.min()<<" is the minimum of the two interger numbers."<<endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值