java中other的用法_java语言 - 如何使用"variable might not have been initialized(变量可能未初始化)"避免System.exit_others_...

奇怪的是编译器不知道System.exit(1);永远不会返回,

因此,你所要做的就是给它提供一些不会让你从catch块到try catch之后的东西,例如:try {

foo = Long.parseLong(args[0]);

bar = Long.parseLong(args[0]);

} catch (NumberFormatException e) {

System.out.println(USAGE);

System.exit(1);

throw new RuntimeError("Make sure the end of the catch block is unreachable");

}

如果你需要经常执行这个操作,则可能需要编写一个辅助方法,并抛出该方法的结果(你永远不会使用),try {

foo = Long.parseLong(args[0]);

bar = Long.parseLong(args[0]);

} catch (NumberFormatException e) {

System.out.println(USAGE);

throw HelperClass.systemExit(1);

}

...

public class HelperClass {

public static RuntimeException systemExit(int exitCode) {

System.exit(1);

throw new RuntimeException("We won't get here");

}

}

这样:你可以单元测试用户错误(单元测试System.exit至少更笨拙)

集中处理"如果用户出错,我该怎么办",而不是在多个地方包含System.out.println(USAGE),

你没有遇到这个明确的任务

因此你的代码是:try {

foo = Long.parseLong(args[0]);

bar = Long.parseLong(args[0]);

} catch (NumberFormatException e) {

throw new UserInputException("foo and bar must both be valid integers");

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值