c++,operator<<必须要一个返回值,解决比采纳?

#include<iostream>#include<assert.h>usingnamespacestd;classDate{inti_Month,i_Day,i_ye... #include<iostream>
#include<assert.h>
using namespace std;

class Date
{
int i_Month, i_Day, i_year;
char Format[128];
public:
Date(int m, int d, int y) { i_Month = m, i_Day = d, i_year = y; }
friend ostream& operator<<(ostream& os, const Date t)
{
cout << "Month: " << t.i_Month;
cout << "Day: " << t.i_Day;
cout << "year: " << t.i_year;
cout << endl;
}
};
template <class T>
class Set
{
T t;
public:
Set(T ts):t(ts) {}
void display()
{
cout << t << endl;
}

};
template<>class Set<Date>
{
Date t;
public:
Set(Date st):t(st){}
void Display()
{
cout << "Date: " << t << endl;
}
};

int main()
{
Set<int>intSet(123);
Set<Date>dt = Date(1, 2, 3);
intSet.display();
dt.Display();
}
展开
 我来答
GTA小鸡
高粉答主

2020-04-04 · 醉心答题,欢迎关注
知道大有可为答主
回答量:2.6万
采纳率:78%
帮助的人:1.3亿
展开全部
friend ostream& operator<<(ostream& os, const Date t)
{
os << "Month: " << t.i_Month;
os << "Day: " << t.i_Day;
os << "year: " << t.i_year;
return os << endl;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式