c 中new的三種用法詳細解析

2021-06-30 16:41:12 字數 1847 閱讀 3756

一. 簡介

new有三種使用方式:plain new,nothrow new和placement new。

(1)plain new顧名思義就是普通的new,就是我們慣常使用的new。在c++中是這樣定義的:

plain new在分配失敗的情況下,丟擲異常std::bad_alloc而不是返回null,因此通過判斷返回值是否為null是徒勞的。

(2)nothrow new是不丟擲異常的運算子new的形式。nothrow new在失敗時,返回null。定義如下:

void * operator new(std::size_t,const std::nothrow_t&) throw();

void operator delete(void*) throw();

(3)placement new意即「放置」,這種new允許在一塊已經分配成功的記憶體上重新構造物件或物件陣列。placement new不用擔心記憶體分配失敗,因為它根本不分配記憶體,它做的唯一一件事情就是呼叫物件的建構函式。定義如下:

void* operator new(size_t,void*);

void operator delete(void*,void*);

提示1:palcement new的主要用途就是反覆使用一塊較大的動態分配的記憶體來構造不同型別的物件或者他們的陣列。

提示2:placement new構造起來的物件或其陣列,要顯示的呼叫他們的析構函式來銷毀,千萬不要使用delete。

char* p = new(nothrow) char[100];

long *q1 = new(p) long(100);

int *q2 = new(p) int[100/sizeof(int)];

二.例項

1.plain new/delete.普通的new

定義如下:

void *operator new(std::size_t) throw(std::bad_alloc);

void operator delete(void*) throw();

注:標準c++ plain new失敗後丟擲標準異常std::bad_alloc而非返回null,因此檢查返回值是否為null判斷分配是否成功是徒勞的。

測試程式:

複製**

**如下:

#include "stdafx.h"

#include

using namespace std;

char *getmemory(unsigned long size)

int main()

catch(const std::bad_alloc &ex)

;  const nothrow_t nothrow;//nothrow作為new的標誌性啞元

測試程式:

複製**

**如下:

#include "stdafx.h"

#include

#include

using namespace std;

char *getmemory(unsigned long size)

catch(const std::bad_alloc &ex)

~adt()

};int main() 注:

使用placement new構造起來的物件或陣列,要顯式呼叫它們的析構函式來銷毀(析構函式並不釋放物件的記憶體),千萬不要使用delete.這是因為placement new構造起來的物件或陣列大小並不一定等於原來分配的記憶體大小,使用delete會造成記憶體洩漏或者之後釋放記憶體時出現執行時錯誤。

c 中new的三種用法詳細解析

一.簡介 new有三種使用方式 plain new,nothrow new和placement new。1 plain new顧名思義就是普通的new,就是我們慣常使用的new。在c 中是這樣定義的 plain new在分配失敗的情況下,丟擲異常std bad alloc而不是返回null,因此通過...

C 中new三種用法

new operator new的表示式 string str new string abcde 既分配記憶體也初始化物件 operator new new的操作符 void buff operator new sizeof string 類似於malloc 只分配空間不進行初始化 placemen...

C 中new的三種用法

c 中new的用法有三種 兩大類 其一是new operator new表示式 其二是operator new new操作符 new表示式比較常見,也最常用,例如 new操作符類似於c語言中的malloc,它只是負責申請記憶體,但不負責記憶體塊的初始化。例如 這是new的第二種用法。new的第三種用...