2015年4月5日

摘要: class base{ public: int i,j; base(){ i=j=0; } base(int a,int b){ i=a;j=b; } }; class derived:public base{ public: derived(int a,int b){ base(a,b); } } 阅读全文
posted @ 2015-04-05 14:36 XtestW 阅读(1613) 评论(0) 推荐(0) 编辑

导航