本文介绍了如果函数从不返回,省略 return 语句是否有效的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
考虑一个可能永远不会退出的函数 foo()
:
Consider a function foo()
that might never exit:
int foo(int n) {
if(n != 0) return n;
else for(;;); /* intentional infinite loop */
return 0; /* (*) */
}
省略最后的 return 语句是否是有效的 C?如果我省略最后的陈述,它会引起未定义的行为吗?
Is it valid C to omit the final return-statement? Will it evoke undefined behavior if I leave out that final statement?
推荐答案
即使在没有返回语句的情况下返回,除非使用返回值,否则没有 UB.
Even if it does return without a return statement there is no UB unless you use the return value.
这篇关于如果函数从不返回,省略 return 语句是否有效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!