gpt4 book ai didi

C++返回对临时的引用

转载 作者:可可西里 更新时间:2023-11-01 14:55:14 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
warning: returning reference to temporary

我在下面的第二行收到错误“返回对临时文件的引用”。

class Object : public std::map <ExString, AnotherObject> const {
public:
const AnotherObject& Find (const ExString& string ) const {
Object::const_iterator it = find (string);
if (it == this->end()) { return AnotherObject() };
return ( it->second );
}
}

我的类实现了 std::map。

我是 C++ 的新手,所以我猜它只是一个语法错误。有帮助吗?

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