摘要:
//空指针访问类成员函数 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 5 class Person 6 { 7 public: 8 void showinfo() 9 { 10 cout << "空指针访问成员函数 阅读全文
摘要:
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 //构造函数(拷贝构造函数),析构函数, 5 /*深拷贝:是指编译器给类提供定默认拷贝构造函数拷贝含有指针成员对象时, 6 调用默认析构函数多次释放堆中同一块内存,导致内 阅读全文
摘要:
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 /* 5 //成员变量私有化优点: 6 1.控制成员的读写权限 7 2.检测读写有效性 8 9 */ 10 class Point 11 { 12 public://控制 阅读全文
摘要:
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 5 6 struct Student 7 { 8 int s_id; 9 string s_name; 10 int s_phonenum; 11 }; 12 13 st 阅读全文