1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| class CDate { public: CDate(int y,int m,int d): { _year=y; _month=m; _day=d; } void show() { cout<<_year<<"/"<<month<<"/"<<_day<<endl; } private: int _year,_month,_day;
}
class CGoods { public: CGoods(const char *n,int a,double p,int y,int m,int d) :_date(y,m,d) ,_price(p) {
strcpy(_name,n); _amount=a; } void show() { cout<<"_name:"<<_name<<endl; cout<<"amount:"<<_amount<<endl; cout<<"price:"<<_price<<endl; _date.show(); } private: char _name[20]; int _amount; double _price; CDate _date;
}
int main() { CGoods g("apple",10,5.5,2025,3,5); good.show(); }
|