placement new之返回值

#include <iostream>
#include <cstdlib>
using namespace std;

class A  
{  
public:  
    A(int arg = 5)  
    {  
        cout<<"call A constructor"<<endl;  
		a = arg;
    }  
    ~A() 
    {  
        cout<<"call A destructor"<<endl;  
    }  
    void* operator new(size_t size)  
    {  
        cout<<"call A::operator new"<<endl;  
        return malloc(size);  
    } 
	void operator delete(void *ptr)
	{
		cout<<"call A::operator delete"<<endl;  
		free(ptr); 
	}
	void* operator new(size_t size, void *pMem)
	{
		cout << "call A::placement new" << endl;
		return (static_cast<int *>(pMem)) + 1;
	}
	void operator delete(void *ptr, void *pMem)
	{
		::operator delete(ptr, pMem);
	}
	void print_data()
	{
		cout << a << endl << b << endl;
	}
private:
	int a;
	int b;
};

int main()  
{  
    A *pa = new A;
	pa->print_data();
	new(pa) A(6);
	pa->print_data();
	delete pa;
    return 0;
}

程序输出结果:

call A::operator new
call A constructor
5
0
call A::placement new
call A constructor
5
6
call A destructor
call A::operator delete
由程序执行结果可知,代码

new(pa) A(6);
先调用
operator new(size_t size, void *pMem)
然后调用构造函数,构造函数构造时传入的this指针地址为operator new的返回值,构造函数中a = arg 即this ->a = arg,a的地址由this指针地址加上对应的偏移算出,这才导致最终a = 5并未赋值,而b在构造函数中被赋值为6。所以,一般来说,placement new的返回值应为传入的指针。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值