当前位置: 技术问答>java相关
也不让搜索了,各位帮个忙,很幼稚的基础问题.(正在写程序用到这了,急需答案)
来源: 互联网 发布时间:2015-07-31
本文导语: 小弟我多System.exit(int a);有点不条懂,我只知道当A=0时,是正常退出系统,那如果A=1呢?A=2呢?是不正常退出吧?那这两个退出又有什么区别?它们是系统已经定义好了的退出方式吗?那他们分别代表什么样的推出?或者它们的区...
小弟我多System.exit(int a);有点不条懂,我只知道当A=0时,是正常退出系统,那如果A=1呢?A=2呢?是不正常退出吧?那这两个退出又有什么区别?它们是系统已经定义好了的退出方式吗?那他们分别代表什么样的推出?或者它们的区别是要自己设定吗?就象设一个自己写的异常那样?那该怎么写?我不懂,请大家不要笑话.
|
public static void exit(int status)Terminates the currently running Java Virtual Machine. The argument serves as a status code; by convention, a nonzero status code indicates abnormal termination.
This method calls the exit method in class Runtime. This method never returns normally.
The call System.exit(n) is effectively equivalent to the call:
Runtime.getRuntime().exit(n)
这里不会谁笑话谁的,大家讨论而已,我也不清楚,给你提供点参考.
This method calls the exit method in class Runtime. This method never returns normally.
The call System.exit(n) is effectively equivalent to the call:
Runtime.getRuntime().exit(n)
这里不会谁笑话谁的,大家讨论而已,我也不清楚,给你提供点参考.
|
public static void exit(int status)Terminates the currently running Java Virtual Machine. The argument serves as a status code; by convention, a nonzero status code indicates abnormal termination.
This method calls the exit method in class Runtime. This method never returns normally.
The call System.exit(n) is effectively equivalent to the call:
Runtime.getRuntime().exit(n)
这里不会谁笑话谁的,大家讨论而已,我也不清楚,给你提供点参考.
This method calls the exit method in class Runtime. This method never returns normally.
The call System.exit(n) is effectively equivalent to the call:
Runtime.getRuntime().exit(n)
这里不会谁笑话谁的,大家讨论而已,我也不清楚,给你提供点参考.
|
正如HELP中所说的:
by convention, a nonzero status code indicates abnormal termination.
常态情况下,System.exit(0);
为什么区分常态和非常态退出方式,就不得而知了。
by convention, a nonzero status code indicates abnormal termination.
常态情况下,System.exit(0);
为什么区分常态和非常态退出方式,就不得而知了。
|
我个人的理解是,所谓的常态退出即是说:程序经过一系列的运行之后,到达了一个正常的结束点而结束运行,等待再一次调用或者某个条件的触发.而非常态就是说是不在正常情况下退出的,由于发生了某种情况而必须或由程序员控制下退出,此时可能并没有达到你本想程序完成的那个时刻.至于说不正常的"状态代号"就要查系统帮助了,在某种情况下,是需要不正常的退出来调试啊....或者完成你所需要达到的目的.谢谢.
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。