我想学习如何处理内存分配和解除分配。我的第一个“任务”是体验一下。
基本上,我想使用new
运算符分配 1 kB 内存,直到引发异常。我不太确定如何做到这一点,但我希望它会与此类似:
int main(){
unsigned int counter = 0;
try{
for (int i = 0; i < 10; i++){
int *p_array = new int[1024*i];
cout << sizeof(p_array);
counter++
}
delete[] p_array;
}catch (std::bad_alloc& ba){
std::cerr << "bad_alloc caught: " << ba.what() << endl << "Allocated 1KB " << counter << " times";
}
return 0;
}
错误:
test.cpp: In function ‘int main()’:
test.cpp:24:12: error: ‘p_array’ was not declared in this scope
make: *** [out_Executable] Error 1
相当简单的程序,但我仍然卡住了。有人可以帮帮我吗?