13行目のreturnはどういう場合に使われますか。
このコードを実行すると「B」「A」と表示され、「C」は表示されません。
public class Main{ public static void(String[] args) { System.out.println(test(null)); } private static String test(Object obj) { try{ System.out.println(obj.toString()); } catch (NullPointerException e) { return "A"; } finally { System.out.println("B"); } return "C";//ここのreturnはどういう意味で書かれているのでしょうか。 } }
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/15 01:03