当JVM退出时,我收到以下消息:
JVM process exited with a code of 10
退出代码10的含义是什么?
发布于 2009-06-15 06:43:58
JVM生成由使用System.exit(code).的程序指定的退出代码
System.exit(code).
如果JVM崩溃,退出代码可能意味着什么,具体取决于操作系统
https://stackoverflow.com/questions/994752
相似问题