教育路上
摘要:java在命令行中添加参数运行。以下是我们为大家整理的,相信大家阅读完后肯定有了自己的选择吧。
2021-06-22 09:42刘永莘
//在命令行运行,运行方法如下: //java ProgramExit 1 //java ProgramExit 0 public class ProgramExit { public static void main(String args[]) { //程序运行代码,根据代码的运行情况设置逻辑类型的状态值 int b = 1; if(args.length>0) b=Integer.parseInt(args[0]);//命令行带一个参数 if(b==0) { System.out.println("应用程序正常结束"); System.exit(b); } else { //异常退出 System.out.println("应用程序异常结束"); System.exit(b); } } }
访客的评论 2024/10/04 08:18
文中描述的是准确的吗,如何报名!