gpt4 book ai didi

c++ - 将字符串文字返回到 C++ 中的 const String 引用

转载 作者:搜寻专家 更新时间:2023-10-31 00:33:35 25 4
gpt4 key购买 nike

编译以下代码时,编译器发出警告 warning: returning reference to temporary

const string& example1()
{
return "Hello";
}

此代码甚至无法编译:

void example2(){
const string& str = "Hello";
}

这个是有效的,因为我们知道编译器将文字字符串初始化为只读内存段。

char* example3()
{
return "Hello";
}

你能帮我理解编译方法 example1() 时幕后发生了什么吗?

非常感谢您的帮助!

最佳答案

Return "Hello" 创建一个临时的 std::string ,它将在您的函数结束时被删除。在这里,您将返回对函数调用结束时不存在的 std::string 的引用。

要解决这个问题,您可以将 example1() 的返回类型更改为 string

关于c++ - 将字符串文字返回到 C++ 中的 const String 引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28259458/

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