ใหม่/ ลบ
ตัวดำเนินการใหม่ร้องขอการจัดสรรหน่วยความจำในฮีป หากมีหน่วยความจำเพียงพอ หน่วยความจำจะเริ่มต้นหน่วยความจำไปยังตัวแปรพอยน์เตอร์และส่งคืนที่อยู่
ตัวดำเนินการลบใช้เพื่อจัดสรรคืนหน่วยความจำ ผู้ใช้มีสิทธิ์จัดสรรคืนตัวแปรตัวชี้ที่สร้างขึ้นโดยตัวดำเนินการลบนี้
นี่คือตัวอย่างโอเปอเรเตอร์ใหม่/ลบในภาษา C++
ตัวอย่าง
#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
malloc/ ฟรี
ฟังก์ชัน malloc() ใช้เพื่อจัดสรรขนาดไบต์ที่ร้องขอ และส่งคืนตัวชี้ไปยังไบต์แรกของหน่วยความจำที่จัดสรร ส่งคืนตัวชี้ null หากล้มเหลว
ฟังก์ชัน free() ใช้เพื่อจัดสรรคืนหน่วยความจำที่จัดสรรโดย malloc() โดยจะไม่เปลี่ยนค่าของตัวชี้ซึ่งหมายความว่ายังคงชี้ตำแหน่งหน่วยความจำเดิม
นี่คือตัวอย่าง malloc/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 8 Sum : 84