您的当前位置:首页正文

C++析构函数调用时机

2024-11-10 来源:个人技术集锦

总结

1、在匿名对象使用完后立刻调用析构函数

2、在栈区的对象,空间被释放后立刻调用析构函数;

3、在堆区的对象,空间被delete后调用析构函数;free不能调用;

 

代码验证:1


void test() {
MyArry(10).getLen();//在栈区定义使用有参定义一个对象,并调用getLen方法,执行完立刻析构;
	cout << "在栈区定义使用有参定义一个对象,并调用getLen方法" << endl;
}

执行结果

代码验证:2

void test() {
	MyArry(10).getLen();//在栈区定义使用有参定义一个对象,并调用getLen方法,执行完立刻析构;
	cout << "在栈区定义使用有参定义一个对象,并调用getLen方法" << endl;
	//MyArry* arry1 = new MyArry(10);//new出来的空间只有使用delete时才会调用析构函数;
	MyArry arry1(10);//在栈区使用有参构造定义一个对象;
}

 

代码验证:3 不使用delete

void test() {
	MyArry(10).getLen();//在栈区定义使用有参定义一个对象,并调用getLen方法,执行完立刻析构;
	cout << "在栈区定义使用有参定义一个对象,并调用getLen方法" << endl;
	MyArry* arry1 = new MyArry(10);//new出来的空间只有使用delete时才会调用析构函数;
}

代码验证:3 使用delete

void test() {
	MyArry(10).getLen();//在栈区定义使用有参定义一个对象,并调用getLen方法,执行完立刻析构;
	cout << "在栈区定义使用有参定义一个对象,并调用getLen方法" << endl;
	MyArry* arry1 = new MyArry(10);//new出来的空间只有使用delete时才会调用析构函数;
    delete arry1;
}

Top