C 物件導向作業1

2021-09-22 13:36:41 字數 652 閱讀 9833

1 #include 2 #include 3

using

namespace

std;

4class

tdate512

void tdate::setdate(int m,int d,int y);//

建構函式引數設定了預設值

13void

print()

1417

protected:18

intmonth,day,year;

19};

20 tdate::tdate(int mm,int dd,int

yy)21

27void tdate::setdate(int m,int d,int

y)28

36int

main()

3747

else

//如果分配堆記憶體成功

48 pd2->setdate(8,8,2008);//

呼叫函式重設日期

49 pd2->print();

50delete pd1;//

刪除動態物件,會呼叫析構函式

51delete pd2;//

刪除動態物件,會呼叫析構函式

52 }

物件導向程式設計作業1

github鏈結 行數 debug數 總耗時238 410h左右 雖然寒假經歷了數次的寒假作業學習c 的課程,但是寒假的電梯排程中,都只是簡單的使用c 內容,如輸入輸出,其他方面都仍然習慣性的使用c語言。如寒假都是使用的struct結構體,這一次跟著作業要求才真正去使用類,這一次作業也是第一次去建立...

C 物件導向 1 物件導向概念

1 物件導向 oop,object oriented programming 不是取代面向過程的。oop 物件導向程式設計 object oriented programming,oop,物件導向程式設計 是一種計算機程式設計架構。ooa object oriented analysis 物件導向分...

day17 物件導向作業 1

定義乙個矩形類,擁有屬性 長 寬 擁有方法 求周長 求面積 class rectangle def init self,long,width self.long long self.width width def perimeter self return self.long self.width ...