摘要: 实在惭愧,想要申请指向一个类的连续的批量的内存,尽然不知道怎么申请……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... 阅读全文
posted @ 2011-12-25 15:14 __Shadow 阅读(1826) 评论(0) 推荐(0) 编辑