[c++]new之后不delete的弊端

/ 2,019评论 / 7133阅读 / 0点赞

前言

* new申请的内存,即使你没有执行delete,在程序结束后,也会释放掉的。

* 但这样做会有很多弊端,下文将列举部分情况。


弊端

不delete的话被释放时不会执行析构函数

#include<iostream>
using namespace std;

class test
{
	string name;
public:
	test(const string& in_name)
	{
		name = in_name;
		cout << "<< " + name + " 出现了,指针:" << this << endl;
	}


	~test()
	{
		cout << "<< " + name + "执行了析构函数,指针:" << this << endl;
	}

};

int main()
{
	test t1("t1");

	test* t2 = new test("t2");

	test* t3 = new test("t3");

	cout << endl << endl;

	delete t2;

	cout << endl << endl << "<< main - return" << endl << endl;

	return 0;
}

可能导致运行时占用大量内存,影响程序长时间运行

  1. Davidfrify说道:

    cytotec online buy misoprostol over the counter buy cytotec

  2. Davidfrify说道:

    buy cytotec pills Misoprostol 200 mg buy online cytotec online

  3. WilliamRen说道:

    https://ciprofloxacin.tech/# cipro ciprofloxacin

  4. RandallGuesE说道:

    order generic propecia for sale: propecia cheap – cheap propecia tablets

  5. RandallGuesE说道:

    lisinopril 10 mg coupon: lisinopril online usa – where can i purchase lisinopril

  6. Davidfrify说道:

    cytotec buy online usa order cytotec online cytotec abortion pill

  7. Davidfrify说道:

    п»їcytotec pills online buy cytotec over the counter Misoprostol 200 mg buy online

  8. WilliamRen说道:

    https://cytotec.club/# Abortion pills online

  9. RandallGuesE说道:

    is nolvadex legal: raloxifene vs tamoxifen – tamoxifen adverse effects

  10. RandallGuesE说道:

    buy generic ciprofloxacin: ciprofloxacin generic price – buy cipro cheap

  11. Davidfrify说道:

    buy lisinopril 20 mg online zestoretic generic zestril 5 mg india

  12. Davidfrify说道:

    buy cytotec online Misoprostol 200 mg buy online Misoprostol 200 mg buy online

  13. WilliamRen说道:

    http://finasteride.store/# buy propecia now

  14. RickyAlage说道:

    mexican rx online Mexican Pharmacy Online mexican drugstore online

  15. RickyAlage说道:

    canadian pharmacy world Prescription Drugs from Canada legitimate canadian online pharmacies

  16. Pedropaite说道:

    п»їbest mexican online pharmacies: cheapest mexico drugs – mexican pharmaceuticals online

  17. Marcelcrolf说道:

    https://indiaph24.store/# indianpharmacy com

  18. Michaelsew说道:

    http://canadaph24.pro/# canadian king pharmacy

  19. Marcelcrolf说道:

    https://indiaph24.store/# cheapest online pharmacy india

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注