Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的程序假设发生任何错误后退出!它获取 3 个命令行并验证并检查它们是否在范围内。如果不是,则必须打印错误并退出程序!
我这样做了System.exit(); 但是,如果程序有 2 个错误条目,它只会打印第一个错误并跳出程序!
System.exit();
在显示所有错误后,还有其他方法可以跳出我的程序吗?
这是我的代码:
您是否可以不将错误消息添加到字符串数组并在退出之前在程序结束时打印该数组
您可以删除所有 System.exit() 并创建带有消息错误的标志 String[],并添加打印 String[] 以显示错误。