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.
test()例外をスローするメソッドが呼び出されました。
test()
例外がスローされる限り実行され、例外がスローされなくなると中断するループを作成したいと考えています。
使用しなければならないロジックについて、誰かが私にヒントを与えることができますか?
たとえば、私が試した、
int i=0; while(test()) { i++; } System.out.println(i);
int i=0; while (true) { try { test(); break; } catch (Exception e) { i++; // Loop will continue } }