结构体变量引用数组指针 #includeusingnamespacestd;//自定义结构体类型structdate{intmonth;//结构体变量名定义intday;intyear;};structteacher{intnum;charname[20];structdatebirthday;//结构体的嵌套定义ints
使用this指针访问对象的数据成员 #include using namespace std; class Test { public: Test(int = 0); void print()const; private: int x; }; Test::Test(int value) :x(value) { }....