Java 9 中的 @Deprecated 註解 中新增了兩個新參數或屬性。這些參數是 Since 和 forRemoval,這兩個參數當我們無法指定時,兩個參數是可選的,帶有預設值。
此字串參數指定API 已棄用的版本。此元素的預設值為空字串。
<strong>@Deprecated(since="<version>")</strong>
此布林值參數指定是否打算在未來版本中刪除 API。當我們無法指定時,預設值為false。
<strong>@Deprecated(forRemoval=<boolean>)</strong>
public class DeprecatedAnnotationTest { public static void main(String[] args) { DeprecatedAnnotationTest test = new DeprecatedAnnotationTest(); test.method1(); test.method2(); } <strong> @Deprecated(since="7.0")</strong> public void method1() { System.out.println("@Deprecated(since=\"7.0\")"); } <strong> @Deprecated(since="5.0", forRemoval=true)</strong> public void method2() { System.out.println("@Deprecated(since=\"5.0\", forRemoval=true)"); } }
<strong>@Deprecated(since="7.0") @Deprecated(since="5.0", forRemoval=true)</strong>
以上是在Java 9中,@Deprecated註解添加了哪些屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!