删除数组时:进程仅返回某些数字-1073740940(0xC0000374)&Quot;
该程序从1开始向用户返回N个奇数平方。
从数字5到10,然后是20(我没有进一步说明),在删除数组A时崩溃,并显示错误消息:";进程返回-1073740940(0xC0000374)";。这显然是内存冲突?#include <iostream>
using namespace std;
int main(){
int ok;
int counter;
do {
int size;
while (true) {
cout << "Enter the number of perfect odd squares you want" << endl;
cin >> size;
if(size<1) {
cout << "Enter a valid number" << endl;
continue;
}
else break;
}
if (size%2==0) counter=size*2-1;
else counter=size*2;
int *A = new int[size];
for (int i=1; i<=counter; i=i+2){
A[i]=i*i;
cout<<A[i] << endl;
}
delete[]A;
cout << " Continue (1) or quit (0)?" << endl;
cin >> ok;
}while(ok==1);
}
解决方案
来自NTSTATUS reference:
您似乎访问0xC0000374 STATUS_HEAP_CROPERATION-A堆已损坏
A
(堆分配的对象)超出了界限-A[0]
到A[size-1]
是可以访问的有效元素,但counter
最高可达2*size
。任何写入超过A[size-1]
的值的尝试都会损坏堆,从而导致此错误。
首先计算counter
并将其用作分配大小。
相关文章