摘要: #include <iostream> class Person { //print是Person朋友 可以访问类中私有内容 friend void print(Person &person); public: Person(int age): age(age), sex(0) { } public 阅读全文
posted @ 2022-05-30 18:31 thomas_blog 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> class Person { public: //解决名称冲突 void age_set(int age) { //this指针指向 被调用的成员函数 所属的对象 this->age = age; } Person &age_add(int age) { th 阅读全文
posted @ 2022-05-30 17:02 thomas_blog 阅读(17) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> //每个空对象也分配1个字节空间,区分空对象内存位置。每个空对象也有一个独一无二的内存地址 class Person { }; class Student { //静态成员不属于类对象 static int voice; static void func(); 阅读全文
posted @ 2022-05-30 16:39 thomas_blog 阅读(66) 评论(0) 推荐(0) 编辑