gpt4 book ai didi

c++ - 是什么导致警告 "no return, in function returning non-void"?

转载 作者:太空狗 更新时间:2023-10-29 21:00:32 25 4
gpt4 key购买 nike

我不确定为什么 Eclipse 报告没有返回值。它不应该知道我正在返回一个值或抛出,因此不需要警告吗?

class PropertyCollection : public PersistentObject
{
private:
std::map<const bmd2::string, bmd2::string> container;

public:
bmd2::string & operator[](const bmd2::string & s) throw (CustomException);
};


bmd2::string & operator[](const bmd2::string & s) throw (CustomException)
{
try
{
return container.at(s);
}
catch (std::out_of_range & e) {
throw CustomException();
};
}

最佳答案

catch block 后不需要分号(语法上不需要):

bmd2::string & operator[](const bmd2::string & s) throw (CustomException)
{
try
{
return container.at(s);
}
catch (std::out_of_range & e) {
throw CustomException();
}; // <--- Semicolon not needed
}

因此,编译器可能会告诉您 null 语句不是 return 语句,因此执行会在函数末尾中断而不会返回值。

关于c++ - 是什么导致警告 "no return, in function returning non-void"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21982267/

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