摘要:
#include <iostream> using namespace std; #include <string> class Person { public: Person(int age) { //1、当形参和成员变量同名时,可用this指针来区分 this->age = age; } Per 阅读全文
摘要:
静态成员变量 #include <iostream> using namespace std; #include <string> class Person { public: static int m_A;//静态成员变量 //静态成员变量特点: //1 在编译阶段分配内存 //2 类内声明,类外 阅读全文