Quantcast
Channel: 質問!ITmedia 新着質問(Java/253)
Viewing all articles
Browse latest Browse all 2439

RuntimeExceptionであるかの判断

$
0
0
以下のようなtry-catch文(抜粋)があった場合について 質問します。 try{ String[] array = {"A","B","C"}; System.out.println(array[3]); } catch(RuntimeException e){ System.out.println("RuntimeException発生"); } 今回はtryで配列に関する記述がされていますが、 その他のトラブルを想定して記述が行われることもあると思います。 catchで例外クラスがExceptionではなく、 RuntimeExceptionである場合、 どのようなトラブルがRuntimeExceptionに当たるのか わからないでいます。 教えて頂けるでしょうか?

Viewing all articles
Browse latest Browse all 2439

Trending Articles