指令_exit(1)有什么作用?
我正在尝试学习在 UNIX 中编码,尽管这个问题无处不在,但我似乎无法找到该指令的作用的任何答案。我得到的所有答案都涉及指令 exit()
或 _exit(0)
和 _exit(2)
。我错过了什么吗?
I am trying to learn to code in UNIX and despite this question being all around I cannot seem to find any answer to what this instruction does. All of the answers I get either refer to the instruction exit()
or _exit(0)
and _exit(2)
. Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些值是应用程序的所谓退出值。一般来说,当程序的退出值为零时,这意味着一切都很好,而其他数字通常表示某种错误值。
The values are the so-called exit-values of your application. Generally, when a program has zero as an exit-value, this means that everything was good, while other numbers generally indicate some kind of error value.