/**2-1**/
/*定义一个结构类型,包括年,月,日,用该结构类型定义一个结构变量*/
#include "iostream.h"
template
struct Time
{
Time(const T& Year=0,const T& Month=0,const T& Day=0 )
{
year=Year,month=Month,day=Day;
}
T year;
T month;
T day;
};
int main()
{
Time birthday=Time(1980,10,16);
cout<return 0;
}
阅读(1168) | 评论(0) | 转发(0) |