溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在c++中分配動態(tài)內(nèi)存

發(fā)布時間:2021-02-26 16:51:00 來源:億速云 閱讀:137 作者:Leah 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)如何在c++中分配動態(tài)內(nèi)存,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

動態(tài)申請內(nèi)存操作符 new

  • new 類型名T(初始化參數(shù)列表)

  • 功能:在程序執(zhí)行期間,申請用于存放T類型對象的內(nèi)存空間,并依初值列表賦以初值。

  • 結(jié)果值:成功:T類型的指針,指向新分配的內(nèi)存;失?。簰伋霎惓!?/p>

釋放內(nèi)存操作符delete

  • delete 指針p

  • 功能:釋放指針p所指向的內(nèi)存。p必須是new操作的返回值。

//例1 動態(tài)創(chuàng)建對象舉例

#include <iostream>

using namespace std;

class Point {

public:

Point() : x(0), y(0) {

  cout<<"Default Constructor called."<<endl;

}

Point(int x, int y) : x(x), y(y) {

  cout<< "Constructor called."<<endl;

}

~Point() { cout<<"Destructor called."<<endl; }

  int getX() const { return x; }

  int getY() const { return y; }

  void move(int newX, int newY) {

    x = newX;

    y = newY;

}

private:

int x, y;

};

int main() {

  cout << "Step one: " << endl;

  Point *ptr1 = new Point; //調(diào)用默認(rèn)構(gòu)造函數(shù)

  delete ptr1; //刪除對象,自動調(diào)用析構(gòu)函數(shù)

  cout << "Step two: " << endl;

  ptr1 = new Point(1,2);

  delete ptr1;

  return 0;

}
運行結(jié)果:

Step One:

Default Constructor called.

Destructor called.

Step Two:

Constructor called.

Destructor called.

分配和釋放動態(tài)數(shù)組

  • 分配:new 類型名T [ 數(shù)組長度 ]

數(shù)組長度可以是任何表達(dá)式,在運行時計算

  • 釋放:delete[] 數(shù)組名p

釋放指針p所指向的數(shù)組。
p必須是用new分配得到的數(shù)組首地址。

//例2 動態(tài)創(chuàng)建對象數(shù)組舉例

#include<iostream>

using namespace std;

class Point { //類的聲明同例6-16,略 };

int main() {

  Point *ptr = new Point[2]; //創(chuàng)建對象數(shù)組

  ptr[0].move(5, 10); //通過指針訪問數(shù)組元素的成員

  ptr[1].move(15, 20); //通過指針訪問數(shù)組元素的成員

  cout << "Deleting..." << endl;

  delete[] ptr; //刪除整個對象數(shù)組

  return 0;

}
運行結(jié)果:

Default Constructor called.

Default Constructor called.

Deleting...

Destructor called.

Destructor called.

動態(tài)創(chuàng)建多維數(shù)組

new 類型名T[第1維長度][第2維長度]…;

如果內(nèi)存申請成功,new運算返回一個指向新分配內(nèi)存首地址的指針。

  例如:

  char (*fp)[3];

  fp = new char[2][3];

如何在c++中分配動態(tài)內(nèi)存

//例3 動態(tài)創(chuàng)建多維數(shù)組

#include <iostream>

using namespace std;

int main() {

  int (*cp)[9][8] = new int[7][9][8];

  for (int i = 0; i < 7; i++)

    for (int j = 0; j < 9; j++)

      for (int k = 0; k < 8; k++)

        *(*(*(cp + i) + j) + k) =(i * 100 + j * 10 + k);

  for (int i = 0; i < 7; i++) {

    for (int j = 0; j < 9; j++) {

      for (int k = 0; k < 8; k++)

        cout << cp[i][j][k] << " ";

        cout << endl;

    }

    cout << endl;

  }

  delete[] cp;

  return 0;

}

看完上述內(nèi)容,你們對如何在c++中分配動態(tài)內(nèi)存有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI