gpt4 book ai didi

c++ - 为什么 Windows Visual Studio 会损坏 C 样式字符串而 Linux 不会?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:50:34 26 4
gpt4 key购买 nike

我有一个由 winery 组成的双线程链表元素,winery是一个有自己数据字段的类。我似乎遇到的问题是我的 winery 元素中的 cstring 数据字段。现在我在 Linux 中收到“double free or corruption (out): 0x0000000000402940”错误,所以我禁用了我的 winery 元素析构函数:

winery::~winery()
{
delete[] name;
delete[] location;
}

这在 Linux 中修复了错误。虽然,我看不出我的 winery 有什么问题。解构者。我的 Linux 环境只会输出 name * 的值和 location * , 而 Windows Visual Studio 输出 name * 的值和 location *其次是:²²²²½½½½½½½½½ϵ▮ϵ▮ϵ▮。

为了使这篇文章简短,我将包括负责接收 name * 数据的函数。和打印功能name * .这是一个 dropbox link如果你真的想运行我的整个项目的压缩包。

因此,例如,我实际上并没有调用这个电话:

char name[] = "Winery\0\0\0\0\0\0";
winery item;
item.setName(name);

假设name[]是一个字符数组,其内存槽数超过了它的需要。

这是我的 setName()来 self 的 winery.cpp 文件的函数:

void winery::setName(const char name[])
{
unsigned char count;
for (count = 0; name[count] != '\0'; count++);
this->name = new char[count];
for (unsigned char i = 0; name[i] != '\0'; i++)
this->name[i] = name[i];
}

现在我有一个 addWinery()我的 list.cpp 文件中的函数是我的列表类的一部分,但我不打算包括它,因为我认为它不会导致问题。

对于 cout考虑到我的值(value)观,我重载了 <<运算符(operator):

std::ostream& operator<< (std::ostream& out, const char array[])
{
for (unsigned char i = 0; array[i] != '\0'; i++)
{
out << array[i];
}
return out;
}

std::cout << "Name: " << head->item.getName() << std::endl;在 Linux 中打印这个

Name: Winery

在 Visual Studio 中:

Name: Winery²²²²½½½½½½½½ϵ▮ϵ▮ϵ▮

现在,我猜这个错误是由我的 winery::setName() 引起的& winery::setLocation()函数,尽管我看不出这两个函数有什么问题。我可能错了。

同样,你们可能会发现这更容易自己测试,所以这里有一个 dropbox link .

如果你也能解释一下我的 ~winery() 有什么问题解构函数或者为什么我不需要这些动态分配的数组(C 风格字符串),我将不胜感激。

最佳答案

winery::setName() 不会以 null 终止字符串。

关于c++ - 为什么 Windows Visual Studio 会损坏 C 样式字符串而 Linux 不会?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33048491/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com