面向对象(下)09,templat类的成员函数template,用子类构造父类,类模板

#include<iostream>

using namespace std;

template<class f1, class f2>
class pair
{
public:
	typedef f1 first_type;               
	typedef f2 second_type;

	//  f1 first 表示调用默认的无参构造函数 和 f1 first() 表示声明了一个返回T1的函数
	f1 first;
	f2 second;

	//构造函数
	pair() : first (f1()), second(f2()) {}	
	pair (const f1 &a, const f2 &b) : first(a), second(b){}

	//成员模板
	//用子类模板来初始化父类
	//传进来的类的参数s1,s2不需要一定与f1,f2一样,但也需要有first,second
	template<class s1,class s2>
	pair(const pair <s1, s2> &p) : first(p.first), second(p.second) {}
};

class father1{};
class father2{};

class son1: public father1{};
class son2: public father2{};


int main()
{
	pair<son1, son2> p;

	pair<father1, father2> p1(p);

	father1 * q = new son1;

	return 0;
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值