C++ new不能创建没有默认构造函数的动态对象数组

对于缺乏默认构造函数的类,如:

class Person{
public:
	Person(int temp )
	{
		this->b = temp;
	}
 
public:
	int b;
 
};
int main(){
	Person* _p1 = new Person[10];//编译器会提示 “Person”: 没有合适的默认构造函数可用
	delete[]p1;
	return 0;
}

此时只能初始化一个Person对象并初始化其构造函数:

Person* _p1 = new Person(10);

如果Person类有默认构造函数,则可创建动态数组:

public:
	Person(int temp = 10 )
	{
		this->b = temp;
	}
 
public:
	int b;
 
};
int main(){
	Person* _p1 = new Person[10];//编译通过,创建动态数组,10个元素均进行默认初始化
	delete[]p1;
	return 0;
}

对于没有默认构造函数的类,可采用allocator类模板进行初始化:

class Person{
public:
	Person(int temp )
	{
		this->b = temp;
	}

public:
	int b;

};

int main(){

	allocator<Person> alloc;        //1.
	Person *a = alloc.allocate(2);    //2.
	alloc.construct(a, 1);
	alloc.construct(a+1, 2);
	cout << a[0].b << endl;
	cout << a[1].b << endl;
	alloc.destroy(a);
	alloc.destroy(a+1);
	return 0;
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值