更新时间:2023-10-14 19:50
C++语言中class类中的private:私有数据和函数。
格式:
class 类名{
private:私有数据和函数
public:公有数据和函数
protected:保护数据和函数
};