ostream & operator<<(ostream & out, const Date & date){
cout << date.m_year << "/" << date.m_month << "/" << date.m_day << endl;
}
错误1error C2561: “operator <<”: 函数必须返回值
cout << date.m_year << "/" << date.m_month << "/" << date.m_day << endl;
}
错误1error C2561: “operator <<”: 函数必须返回值
