本文介绍了Java:我如何编写一个try-catch-repeat块?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道采取反措施来做到这一点。我想知道是否有一个很好的和紧凑的方法来实现。

I am aware of a counter approach to do this. I was wondering if there is a nice and compact way to do this.

推荐答案

传奇 - 你的答案可以改进;因为如果你失败了 numTries 次,你就会吞下这个例外。更好:

Legend - your answer could be improved upon; because if you fail numTries times, you swallow the exception. Much better:

while (true) {
  try {
    //
    break;
  } catch (Exception e ) {
    if (--numTries == 0) throw e;
  }
}

这篇关于Java:我如何编写一个try-catch-repeat块?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 18:12