学习【菜鸟教程】【C++ 类 & 对象】【C++ 类构造函数 & 析构函数】(未完成)

目录

  • 1. 类的构造函数(已懂已完成)
  • 2. 带参数的构造函数
  • 3. 使用初始化列表来初始化字段
  • 4. 类的析构函数

链接

1. 类的构造函数(已懂已完成)

类的构造函数是类的一种特殊的成员函数,它会在每次创建类的新对象时执行。

构造函数的名称与类的名称是完全相同的,并且不会返回任何类型,也不会返回 void。构造函数可用于为某些成员变量设置初始值

下面的实例有助于更好地理解构造函数的概念:

#include 
 
using namespace std;
 
class Line
{
   public:
      void setLength( double len );
      double getLength( void );
      Line();  // 这是构造函数
 
   private:
      double length;
};
 
// 成员函数定义,包括构造函数
Line::Line(void)
{
    cout << "Object is being created" << endl;
}
 
void Line::setLength( double len )
{
    length = len;
}
 
double Line::getLength( void )
{
    return length;
}
// 程序的主函数
int main( )
{
   Line line;
 
   // 设置长度
   line.setLength(6.0); 
   cout << "Length of line : " << line.getLength() <<endl;
 
   return 0;
}

当上面的代码被编译和执行时,它会产生下列结果:

Object is being created
Length of line : 6

2. 带参数的构造函数

3. 使用初始化列表来初始化字段

4. 类的析构函数

你可能感兴趣的:(c++,学习,开发语言)