C ++中的delete()和free()

删除()

delete运算符用于取消分配内存。用户具有通过此delete运算符取消分配创建的指针变量的特权。

这是C ++语言中delete运算符的语法,

delete pointer_variable;

这是删除分配的内存块的语法,

delete[ ] pointer_variable;

这是C ++语言中的delete运算符示例,

示例

#include <iostream>
using namespace std;
int main () {
   int *ptr1 = NULL;
   ptr1 = new int;
   float *ptr2 = new float(299.121);
   int *ptr3 = new int[28];
   *ptr1 = 28;
   cout << "Value of pointer variable 1 : " << *ptr1 << endl;
   cout << "Value of pointer variable 2 : " << *ptr2 << endl;
   if (!ptr3)
   cout << "Allocation of memory failed\n";
   else {
      for (int i = 10; i < 15; i++)
      ptr3[i] = i+1;
      cout << "Value of store in block of memory: ";
      for (int i = 10; i < 15; i++)
      cout << ptr3[i] << " ";
   }
   delete ptr1;
   delete ptr2;
   delete[] ptr3;
   return 0;
}

输出结果

Value of pointer variable 1 : 28
Value of pointer variable 2 : 299.121
Value of store in block of memory: 11 12 13 14 15

在上面的程序中,三个指针变量声明为ptr1,ptr2和ptr3。指针变量ptr1和ptr2使用值初始化,new()而ptr3按new()方法存储分配的内存块。

int *ptr1 = NULL;
ptr1 = new int;
float *ptr2 = new float(299.121);
int *ptr3 = new int[28];
*ptr1 = 28;

数组的元素由用户打印,元素的总和打印。删除分配的内存;使用delete ptr1,delete pt2和delete [] ptr3。

delete ptr1;
delete ptr2;
delete[] ptr3;

自由()

该函数free()用于通过释放分配的内存malloc()。它不会更改指针的值,这意味着它仍指向相同的内存位置。

这是free()C语言的语法,

void free(void *pointer_name);

这里,

pointer_name-给指针的任何名称。

这是free()C语言的示例,

示例

#include <stdio.h>
#include <stdlib.h>
int main() {
   int n = 4, i, *p, s = 0;
   p = (int*) malloc(n * sizeof(int));
   if(p == NULL) {
      printf("\nError! memory not allocated.");
      exit(0);
   }
   printf("\nEnter elements of array : ");
   for(i = 0; i < n; ++i) {
      scanf("%d", p + i);
      s += *(p + i);
   }
   printf("\nSum : %d", s);
   free(p);
   return 0;
}

输出结果

Enter elements of array : 32 23 21 28
Sum : 104

在上面的程序中,声明了四个变量,其中之一是指针变量* p,它存储分配的内存。

int n = 4, i, *p, s = 0;
p = (int*) malloc(n * sizeof(int));

数组的元素由用户给定,其值的总和被打印出来。释放指针的代码如下-

free(p);