1

我正在尝试创建一个排列,当我完成我的问题时收到这个奇怪的错误:

Stack around the variable "temp" was corrupted

变量的段在嵌套的 for 循环中:

for(int i = 0 ; i < str_length ; i++)
{
    for(int j = 0 ; j < str_length ; j++)
    {
        char temp[1];

        temp[1] = text[i];
        text[i] = text[j];
        text[j] = temp[1];

        cout << text << endl;
    }
}

text 在 for 循环之外被初始化为字符串,当我将 temp[1] 转换为 char 或 int 时,我得到了同样的错误。该程序运行良好,但我担心为什么会收到此错误,有人知道为什么吗?

4

3 回答 3

15

你只需要使用char temp;和访问它temp = text[i];,等等。

您正在访问堆栈上一个字节的 PAST temp 点,这是无效的。在这种情况下,由于您只需要一个字符,因此根本不需要数组。

于 2009-03-14T20:29:11.023 回答
10

temp[1] 不存在,你应该做 temp[0]。或者,像这样:

char temp;
temp = text[i];
text[i] = text[j];
text[j] = temp;

或者

char temp[1];
temp[0] = text[i];
text[i] = text[j];
text[j] = temp[0];
于 2009-03-14T20:29:55.733 回答
7

用于temp[0]访问第一个元素

于 2009-03-14T20:27:54.833 回答