gpt4 book ai didi

c++ - cout char 数组给出混合结果

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:21:39 26 4
gpt4 key购买 nike

以下代码在 for 循环中打印预期的输出,但是一旦我退出循环,它只打印“Here”,下面什么也没有。我在这里缺少什么?

char ** strs = new char*[n];
for (int i = 0; i < n; i++)
{
string str;
getline(cin, str);
strs[i] = const_cast<char*>(str.c_str());
cout << strs[i] << endl;
}
cout <<"here" <<strs[1] << endl;

最佳答案

您的指针悬空。

您已经存储了指向 std::string 的数据缓冲区的指针。该缓冲区在每次新迭代时不再存在,由下一次迭代版本的 str 的缓冲区替换;而且,循环结束后完全没有它的踪迹。

不要这样做。只需存储 std::string

const_cast 也是完全不明智的。不确定你为什么要这样做。

关于c++ - cout char 数组给出混合结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32192625/

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