#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;
}
面向对象(下)09,templat类的成员函数template,用子类构造父类,类模板
最新推荐文章于 2023-01-16 16:36:10 发布