摘要:
new 操作一般可以分为两个过程:1为申请内存空间 2为调用类型的构造函数进行构造placement new 调用类型的构造函数对已存在的内存进行构造 1 #include<new.h> 2 3 class T 4 { 5 public: 6 T(){}; 7 T(int val) 8 { 9 this->a=val;10 }11 ~T()12 {13 }14 int a;15 };16 17 template <class T1,class T2>18 inline void construct(T1 *p,c... 阅读全文