C++基础 -10- 类

发布时间 2023-12-21 09:14:35作者: 日落悬崖

———————类———————

 

?类的格式

 

public:公共成员 类外可访问
protected:保护成员 类外不可访问
private:私有成员 类外不可访问

 

 

class base
{
    public:
    int a;
    protected:
    int b;
    private:
    int c;

};

 ———————End———————