我不确定为什么 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
块之后不需要分号(在语法上不是必需的):
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/