简单测试Placement new 对比 new 的性能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单测试Placement new 对比 new 的性能相关的知识,希望对你有一定的参考价值。

 1 #include <iostream>
 2 #include <time.h>
 3 #include <stdlib.h>
 4 
 5 using namespace std;
 6 
 7 #define LOOP_COUNT 500000
 8 int main()
 9 {
10     char buf[10000] = {0};
11 
12     int* obj = NULL;
13 
14     int i = LOOP_COUNT;
15 
16     clock_t start = clock();
17     while(i--)
18     {
19         obj = new (buf) int [1000];
20         
21         obj = NULL;
22     }
23     clock_t end = clock();
24 
25     cout << "Placement new : " << end - start << " ms" << endl;
26 
27     
28     i = LOOP_COUNT;
29     start = clock();
30     while(i--)
31     {
32         obj = new int [1000];
33         //delete obj;
34         obj = NULL;
35     }
36     end = clock();
37     
38     cout << "Normal new : " << end - start << " ms" << endl;
39 }

 

 

Test case 1. new 操作不delete内存

//////////////// output

Placement new : 0
Normal new : 3234

 

Test case 2. new 操作, delete内存

//////////////// output

Placement new : 0
Normal new : 1594

 

以上是关于简单测试Placement new 对比 new 的性能的主要内容,如果未能解决你的问题,请参考以下文章

Item 52:写了placement new就要写placement delete

Item 52:写了placement new就要写placement delete

C++中的newoperator new与placement new

普通new和placement new的重载

C++内存管理(new operator/operator new/operator delete/placement new)

C++内存分配方法new与placement new使用方法详解