我们什么时候应该在Java中调用System.exit。
在Java中,以下代码中的有或没有有什么区别?System.exit(0)
public class TestExit
{
public static void main(String[] args)
{
System.out.println("hello world");
System.exit(0); // is it necessary? And when it must be called?
}
}
该文件说:“此方法永远不会正常返回。这是什么意思?