声明返回int的函数不返回任何内容。这是未定义的行为吗?
这是C++中的有效函数:
int f()
{
if(false)
{
return 42;
}
}
以下定义导致UB:
int x = f(); // return value used
问题: 以下表达式语句是否导致UB?
f();
非常欢迎来自标准的报价。
解决方案
C++03§6.6.3/2:
流出函数末尾相当于没有值的返回;这会导致值返回函数中的未定义行为。
所以这是函数本身中的UB。
btw GCC给您一个很好的警告,指向这个UB:
In function 'int f()':
Line 7: warning: control reaches end of non-void function
相关文章