class CAT{public:CAT();CAT(const& CAT&);~CAT();int GetAge() const { return *itsAge; }void SetAge(int age){ *itsAge=age; }protected:int* itsAge;};课本上课后题中定义的一个类其中CAT(const& CAT&);对吗? 能这么用吗?如果可以的话const& CAT&又是什么意思?
慕丝7291255
慕的地10843
相关分类