Java註解默認值

可以爲註解中的元素定義默認值。不需要爲帶有默認值的註解元素提供值。
默認值可以使用以下一般語法定義:

<modifiers> @interface <annotation type name> {
    <data-type> <element-name>() default <default-value>;
}

關鍵字default指定默認值。默認值必須是與元素的數據類型兼容的類型。
以下代碼通過將minor元素的默認值指定爲0,來創建Version註釋類型,如下所示:

public  @interface  Version {
    int major();
    int minor() default 0; // zero as default value for minor
}

示例

以下代碼顯示註解如何使用默認值。

@Version(major=1) // minor is zero, which  is its  default value
@Version(major=2, minor=1)  // minor  is 1, which  is the   specified  value

以下代碼顯示如何爲數組和其他數據類型指定默認值:

public @interface Version {
  double d() default 1.89;

  int num() default 1;

  int[] x() default { 1, 2 };

  String s() default "Hello";

  String[] s2() default { "abc", "xyz" };

  Class c() default Exception.class;

  Class[] c2() default { Exception.class, java.io.IOException.class };
}