摘要: ———————类——————— 🎄类的格式 public:公共成员 类外可访问protected:保护成员 类外不可访问private:私有成员 类外不可访问 class base { public: int a; protected: int b; private: int c; }; ———— 阅读全文
posted @ 2023-12-21 09:09 日落悬崖 阅读(7) 评论(0) 推荐(0)