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

/ 1,830评论 / 6280阅读 / 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. HarveyBeemi说道:

    http://onlinepharmacyworld.shop/# canadian pharmacy no prescription needed

  2. Armandosed说道:

    http://medicationnoprescription.pro/# buy drugs online without prescription

  3. MatthewDoolo说道:

    ed pills for sale: where to get ed pills – where to buy ed pills

  4. PhilipBup说道:

    online ed medications ed meds by mail buy ed meds online

  5. AustinWhoto说道:

    no prescription drugs online: buy medication online no prescription – online pharmacy reviews no prescription

  6. MatthewDoolo说道:

    ed meds online: online ed prescription – what is the cheapest ed medication

  7. HarveyBox说道:

    http://edpill.top/# erectile dysfunction online

  8. Armandosed说道:

    https://edpill.top/# ed drugs online

  9. HarveyBeemi说道:

    http://onlinepharmacyworld.shop/# prescription free canadian pharmacy

  10. PhilipBup说道:

    canadian pharmacy no prescription needed online pharmacy no prescription prescription drugs online

  11. Armandosed说道:

    https://medicationnoprescription.pro/# how to buy prescriptions from canada safely

  12. MatthewDoolo说道:

    cheapest ed meds: erectile dysfunction drugs online – erectile dysfunction pills for sale

  13. Wow, superb weblog format! How lengthy have you ever
    been blogging for? you made running a blog glance easy. The whole look of your web site is fantastic, let alone the content!
    You can see similar here sklep online

  14. PhilipBup说道:

    cheapest prescription pharmacy cheapest prescription pharmacy buying prescription drugs from canada

  15. BrainSaw说道:

    https://prednisonea.store/# prednisone 30 mg coupon

  16. DomenicDobby说道:

    where to buy generic clomid without insurance: where can i get clomid – how to get clomid for sale

  17. BryanSturf说道:

    ivermectin 12 mg: where can i buy oral ivermectin – stromectol for humans

  18. MichaelPycle说道:

    buy generic clomid: where to get generic clomid without dr prescription – can i buy clomid without rx

  19. Josephtrink说道:

    https://azithromycina.pro/# where to buy zithromax in canada

  20. JamesLot说道:

    buy prednisone without a prescription over the counter prednisone pills average cost of generic prednisone

  21. BrainSaw说道:

    https://clomida.pro/# how can i get generic clomid without insurance

  22. MichaelPycle说道:

    prednisone: prednisone 60 mg – prednisone 5 mg tablet without a prescription

  23. MichaelPycle说道:

    ivermectin 12 mg: ivermectin 0.1 uk – ivermectin generic

  24. BrainSaw说道:

    http://prednisonea.store/# how can i get prednisone online without a prescription

  25. JamesLot说道:

    buy generic clomid without dr prescription where to buy generic clomid without a prescription cost clomid tablets

  26. BryanSturf说道:

    prednisone 25mg from canada: prednisone brand name – can i buy prednisone online without prescription

  27. MichaelPycle说道:

    prednisone 2.5 mg: prednisone rx coupon – prednisone 50 mg canada

  28. BrainSaw说道:

    https://clomida.pro/# can i buy cheap clomid online

  29. JamesLot说道:

    buy prednisone without rx prednisone prescription drug prednisone 10mg tabs

回复 Ambibrile 取消回复

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