问题描述
标准对主要返回值范围有何看法?最多只能说 255 个?
What does standard say about main return values range?Say only up to 255?
因为
int main(void){
return 256;
}
echo $? ; # out 0
推荐答案
标准没说.0
、EXIT_SUCCESS
和 EXIT_FAILURE
具有(某种)特定的含义.其他任何事情都取决于实现.
The standard doesn't say. 0
, EXIT_SUCCESS
and EXIT_FAILURE
have (sort of) specified meanings. Anything else depends on the implementation.
目前,大多数基于 Unix 的系统仅支持 8 位返回值.Windows 支持(至少)32 位返回值.我没有检查过 64 位 Windows 是否支持 64 位返回值,但我对此表示怀疑,因为即使是 64 位 Windows 通常仍然使用 32 位 int.
At the present time, most Unix-based systems only support 8-bit return values. Windows supports (at least) a 32-bit return value. I haven't checked whether 64-bit Windows supports a 64-bit return value, but I rather doubt it, since even 64-bit Windows normally still uses a 32-bit int.
这篇关于main函数的返回值范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!