Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

ใหม่และตัวดำเนินการลบใน C ++


โอเปอเรเตอร์ใหม่

ตัวดำเนินการใหม่ร้องขอการจัดสรรหน่วยความจำในฮีป หากมีหน่วยความจำเพียงพอ หน่วยความจำจะเริ่มต้นหน่วยความจำไปยังตัวแปรตัวชี้และส่งคืนที่อยู่

นี่คือไวยากรณ์ของตัวดำเนินการใหม่ในภาษา C++

pointer_variable = new datatype;

นี่คือไวยากรณ์ในการเริ่มต้นหน่วยความจำ

pointer_variable = new datatype(value);

นี่คือรูปแบบการจัดสรรบล็อกของหน่วยความจำ

pointer_variable = new datatype[size];

นี่คือตัวอย่างโอเปอเรเตอร์ใหม่ในภาษา C++

ตัวอย่าง

#include <iostream>
using namespace std;
int main () {
   int *ptr1 = NULL;
   ptr1 = new int;
   float *ptr2 = new float(223.324);
   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] << " ";
   }
   return 0;
}

ผลลัพธ์

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

ตัวดำเนินการลบ

ตัวดำเนินการลบใช้เพื่อจัดสรรคืนหน่วยความจำ ผู้ใช้มีสิทธิ์จัดสรรคืนตัวแปรตัวชี้ที่สร้างขึ้นโดยตัวดำเนินการลบนี้

นี่คือไวยากรณ์ของตัวดำเนินการ delete ในภาษา C++

delete pointer_variable;

นี่คือรูปแบบการลบบล็อกของหน่วยความจำที่จัดสรร

delete[ ] pointer_variable;

นี่คือตัวอย่างของตัวดำเนินการลบในภาษา 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