构造函数与析构函数

构造函数

  • 每次创建类的新对象时执行
  • 构造函数的名称与类名相同,不带类型,可以有参数也可以没参数
  • 构造函数有时给成员函数付初值

析构函数

  • 每次删除所创建的对象时执行
  • 析构函数与构造函数类似,前面多个~
  • 不带任何参数
cpp 复制代码
#include "iostream"

using namespace std;

class Line
{
	public:
		void setLength(int len);
		int getLength();
		Line();
		~Line();
		
	private:
		int length;
 } ;
 
Line :: Line()
{
	cout << "创建了一个对象" << endl; 
}

Line :: ~Line()
{
	cout << "删除了一个对象" << endl; 
}

void Line :: setLength(int len)   //注意:前面需要类型
{
	length = len;
}

int Line :: getLength()
{
	return length;
}

int main(void)
{
	Line line;
	line.setLength(7);
	cout << "length is " << line.getLength() << endl;
}
相关推荐
豆豆plus15 分钟前
C++实现文件操作类
开发语言·c++
墨雪不会编程23 分钟前
C++基础语法篇五 ——类和对象
java·前端·c++
_F_y1 小时前
二分:二分查找、在排序数组中查找元素的第一个和最后一个位置、搜索插入位置、x 的平方根
c++·算法
Elias不吃糖1 小时前
LeetCode--130被围绕的区域
数据结构·c++·算法·leetcode·深度优先
ouliten1 小时前
C++笔记:std::priority_queue
c++·笔记
cookies_s_s1 小时前
项目--协程库(C++)模块解析篇
服务器·c++
止观止1 小时前
C++20 Modules:终结“头文件地狱”的曙光
c++·c++20·头文件·modules·编译优化
誰能久伴不乏1 小时前
进程通信与线程通信:全面总结 + 使用场景 + 优缺点 + 使用方法
linux·服务器·c语言·c++
fish_xk1 小时前
用c++写控制台贪吃蛇
开发语言·c++
Unlyrical2 小时前
线程池详解(c++手撕线程池)
c++·线程·线程池·c++11