摘要:
实在惭愧,想要申请指向一个类的连续的批量的内存,尽然不知道怎么申请……1 基本类型的申请 //申请连续的10个指向int类型内存 int *pArray = new int(10);2 结构体和类class A{public: A(int a){}private: int x;};//申请10个连续的指向A对象的内存pA = new A[10]; //error 无默认构造函数pA = new A[10](0); //error 不支持class A{public: A(){} A(int a... 阅读全文