java
1 2 3public class Sample { 4 5 public static void main(String[] args) { 6 7 int year1 = 2012; 8 int year2 = 2013; 9 int year3 = 2014; 10 int year4 = -100; 11 12 try { 13 System.out.println("2012年 =" + MyUtility.isLeapYear(year1)); 14 System.out.println("2013年 =" + MyUtility.isLeapYear(year2)); 15 System.out.println("2013年 =" + MyUtility.isLeapYear(year3)); 16 System.out.println("2014年 =" + MyUtility.isLeapYear(year4)); 17 } catch (InvalidYearException e) { 18 19 System.out.println(e); 20 } 21 } 22} 23
java
1 2public class MyUtility { 3 4 public static boolean isLeapYear(int year) throws InvalidYearException { 5 boolean result; 6 if (year < 0) { 7 8 throw new InvalidYearException("西暦にマイナスが指定されました"); 9 10 } else if (year % 4 == 0 && year % 100 != 0) { 11 result = true; 12 } else if (year % 400 == 0) { 13 result = true; 14 } else { 15 result = false; 16 } 17 18 return result; 19 } 20 21} 22
java
1 2public class InvalidYearException extends Exception { 3 4 InvalidYearException(String msg) { 5 6 super(msg); 7 } 8}
MyUtility.isLeapYear(year1) の引数にマイナスの値が指定されたときに例外を投げたいと思っております。
上記のコードを実行すると
InvalidYearException: 西暦にマイナスが指定されました
とでます。
InvalidYearException(String msg) { super(msg); }
で、親クラスである Exceptionのコンストラクタを呼んでいると思うのですが、
上記で何をしているのかよく分かりませんでした。
Exception(String message)
指定された詳細メッセージを持つ、新規例外を構築します。
とありましたが、イメージができなかったのでアドバイス頂けると助かります。
また、例外クラスなどの書き方がおかしければ指摘して頂けると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。