c++语言中class是什么意思?

2024年12月04日 23:31
有1个网友回答
网友(1):

在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的基本结构和特性是十分重要的。