类模板 template<class T>

参考网址:http://c.biancheng.net/cpp/biancheng/view/213.html

// demo3.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
using namespace std;

template <class T>
class test
{
private:
	T a,b;
public:
	test(T m,T n)
	{
		a=m;
		b=n;
	}
	T max()
	{
		return (a>b)?a:b;
	}
	T min();
};
template<class T>
T test<T>::min()
{
	return (a>b)?b:a;
};

int _tmain(int argc, _TCHAR* argv[])
{
	test <int> test1(2,3);
	cout<<test1.max()<<endl;
	cout<<test1.min()<<endl;
	test<float> test2(32.12,12.458);
	cout<<test2.max()<<endl;
	cout<<test2.min()<<endl;
	test<char> test3('a','A');
	cout<<test3.max()<<endl;
	cout<<test3.min()<<endl;
	return 0;
}

 使用类模板的好处就是,可以实现类的成员函数的复用而不用受数据类型的影响。

需要注意的,当把成员函数的实现放在类的外部时,例如上述test类的min()函数,需要加上:

template<class T>   //必不可少的
T test<T>::min()    //不要忘记<T>

main函数中定义test类的实例化对象时,也需要注意格式。

转载于:https://www.cnblogs.com/audi-car/p/4391573.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值