c++语言中class是什么意思?
1个回答
推荐于2019-09-05 · 知道合伙人数码行家
关注
展开全部
在C++ 语言中class是定义类的关键字,C++中也可以使用struct定义类。
两者区别是,用class定义的类,如果数据成员或成员函数没有说明则默认为private(私有)的,而用struct定义的,默认为public(公共)的。
示例 #include using namespace std; class C { public: int getAge() const { return age; } void setAge( int n ) { age = n; } private: int age; }; int main() { C c; c.setAge( 22 ); cout << "My age: " << c.getAge() << endl; return 0;
}
作为面向对象程序设计的基础,掌握class的基本结构和特性是十分重要的。
两者区别是,用class定义的类,如果数据成员或成员函数没有说明则默认为private(私有)的,而用struct定义的,默认为public(公共)的。
示例 #include using namespace std; class C { public: int getAge() const { return age; } void setAge( int n ) { age = n; } private: int age; }; int main() { C c; c.setAge( 22 ); cout << "My age: " << c.getAge() << endl; return 0;
}
作为面向对象程序设计的基础,掌握class的基本结构和特性是十分重要的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询