- 论坛徽章:
- 0
|
自己模仿的一个pair模板
问题:为什么pair1(first_type& f,second_type& s):first(f),second(s){}不正确
源代码
#include "head.h"
#include <vector>
template <typename T1,typename T2>
class pair1
{
public:
typedef T1 first_type;
typedef T2 second_type;
first_type first;
second_type second;
pair1():first(first_type()),second(second_type()){}
//pair1(const first_type& f,const second_type& s):first(f),second(s){} //OK
//pair1(first_type f,second_type s):first(f),second(s){} //OK
pair1(first_type& f,second_type& s):first(f),second(s){} //ERROR
template<typename U1,typename U2>
pair1(pair1<U1,U2> &apair):first(apair.first),second(apair.second){}
};
int main()
{
pair1<int,int> pair_int(0,0);
pair1<int,int> pair_int2(pair_int);
cout<<pair_int.first<<endl;
cout<<pair_int.second<<endl;
cout<<pair_int2.first<<endl;
cout<<pair_int2.second<<endl;
return 0;
}
[ 本帖最后由 山外山 于 2007-5-9 16:54 编辑 ] |
|