c++类模板和函数模板的问题

#include"stdafx.h"#include<iostream>usingnamespacestd;template<typenametype1>type1ret... #include "stdafx.h"
#include <iostream>
using namespace std;
template<typename type1>
type1 retun(identity&a);
template<class type1,class type2>
class identity
{
public:
identity();
void set_information();
void display();
friend retun(identity&a);
private:
type1 num;
type2 total;
};
template <class type1,class type2>
identity::identity()
{
num=0;
total=0;
}
template<class type1,class type2>
void identity::set_information()
{
cout<<"请输入信息"<<endl;
cin>>num>>total;
}
template<class type1,class type2>
void identity::display()
{
cout<<num<<" "<<tatal;
}
template<typename type1>
type1 retun(identity&a)
{
return a.num;
}
int main()
{
identity<long,int> a;
a.set_information();
a.display();
cout<<endl;
cout<<retun<long> (a);
system("PAUSE");
return 0;
}
调试的时候一堆错误·······························我也看不明他什么意思········请问大神这里什么地方出问题?应该怎么改?
展开
 我来答
woshizjp
2015-06-09 · TA获得超过351个赞
知道小有建树答主
回答量:322
采纳率:100%
帮助的人:321万
展开全部
template <class type1,class type2>
class myTmpClass
{
public:
myTmpClass();
void set_information();
void display();
type1 ret_num(myTmpClass &a);
private:
type1 num;
type2 total;
};

template <class type1,class type2>
myTmpClass<type1,type2>::myTmpClass()
{
num=0;
total=0;
}

template<class type1,class type2>
void myTmpClass<type1,type2>::set_information()
{
cout<<"请输入信息"<<endl;
cin>>num>>total;
}
template<class type1,class type2>
void myTmpClass<type1,type2>::display()
{
cout<<"num = "<<num<<","<<"total = "<<total<<endl;
}
template<class type1,class type2>
type1 myTmpClass<type1,type2>::ret_num(myTmpClass &a)
{
return a.num;
}

int main()
{
myTmpClass<long,int> a;

a.set_information();
a.display();
cout<<endl;
cout<<a.ret_num(a);
system("PAUSE");
return 0;
}

你这样试试。

百度网友f9959ba
2015-06-09 · 超过18用户采纳过TA的回答
知道答主
回答量:76
采纳率:0%
帮助的人:40万
展开全部
template<typename type1>
type1 retun(identity&a);
还不支持返回类型推导。
template<class type1,class type2>
void identity<type1,type2>::display()
所有类外函数实现identity后面需要跟上函数列表
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式