随笔分类 -  C++课程设计,面向对象作业集

摘要:如果函数中有多条语句的话,会先执行完这些语句,直到函数结束再析构 阅读全文
posted @ 2017-06-13 23:58 Angel_Kitty 阅读(322) 评论(0) 推荐(0) 编辑
摘要:析构函数是“反向”的构造函数。它们在对象被撤消(回收)时调用。析构函数的名 称除了最前面的“~”符号外,与类的名称相同。例如,类String的析构函数是~string()。 析构函数通常用于当一个对象不再需要时,完成“消除”功能。 在函数中建立对象之后,这个对象作为局部对象开始生存,直到函数运行到遇 阅读全文
posted @ 2017-06-13 22:47 Angel_Kitty 阅读(1140) 评论(0) 推荐(0) 编辑
摘要:1 #include <bits/stdc++.h> 2 using namespace std; 3 class A 4 { 5 public: 6 A() 7 { 8 a=b=0; 9 cout<<"Default Constructor called.\n"; 10 } 11 A(int i, 阅读全文
posted @ 2017-06-13 22:46 Angel_Kitty 阅读(1429) 评论(0) 推荐(0) 编辑
摘要:不要问我一个晚上在干啥,就写写这种烦到极点的类,啰嗦! 阅读全文
posted @ 2017-06-10 23:30 Angel_Kitty 阅读(490) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 #include 3 using namespace std; 4 class Tdate 5 { 6 public: 7 Tdate(int mm=0,int dd=0,int yy=0); 8 ~Tdate() 9 { 10 cout0&&m0&&d0&&yprint();//只能用指针去访问该对象的成员... 阅读全文
posted @ 2017-06-07 10:56 Angel_Kitty 阅读(326) 评论(0) 推荐(0) 编辑