删除数组时:“进程返回-1073740940 (0xC0000374)”仅针对特定数字

发布于 2025-01-11 19:50:00 字数 936 浏览 0 评论 0原文

该程序返回用户从 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);

}

The program returns the user N number of odd squares starting from 1.

From numbers 5-10 and then 20, (I didn't go further) when deleting array A it crashes with the error message: "Process returned -1073740940 (0xC0000374)". Which is apparently a memory violation?

#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);

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巾帼英雄 2025-01-18 19:50:00

来自 NTSTATUS 参考:

0xC0000374 STATUS_HEAP_CORRUPTION - 堆已损坏

您似乎越界访问 A(堆分配的对象) - A[0]A[size-1 ] 是可访问的有效元素,但 counter 高达 2*size。任何尝试写入超过 A[size-1] 的值都可能会损坏堆,从而导致此错误。

首先计算 counter 并将其用作分配大小。

From the NTSTATUS reference:

0xC0000374 STATUS_HEAP_CORRUPTION - A heap has been corrupted

You appear to access A (a heap allocated object) out of bounds - A[0] through A[size-1] are valid elements to access but counter goes as high as 2*size. Any attempts to write to values past A[size-1] can corrupt the heap leading to this error.

Calculate counter first and use that as the allocation size.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文