关于 main 函数中 return 0;

Working Draft, Standard for Programming Language C++ 3.6.1.5

5 A return statement in main has the effect of leaving the main function (destroying any objects with automatic storage duration) and calling std::exit with the return value as the argument. If control reaches the end of main without encountering a return statement, the effect is that of executing
return 0;

在 main 函数中,没有 return 语句也有效(即能销毁在自动存储期中创建的任何对象)。此时调用的是以返回值为参数的 std::exit。如果运行到 main 的底部都没有遇到 return 语句,其效果相当于执行了 return 0;

作者: YesSan

和凡人一样,经历着万物的成长,衰败以及最终的死亡。理想主义的完美主义的个人英雄主义者。

发表回复

您的电子邮箱地址不会被公开。