")forRemoval此佈林值參數指定是否打算在未來版本中刪除該API。當我們無法指定時,預設值為false。語法@Deprecated(forRemoval= Java 9 中的 @Deprecated 註解 中新增了兩個新參數或屬性。這些參數是 Since 和 forRemoval,這兩個參數當我們無法指定時,兩個參數是可選的,帶有預設值。 此字串參數指定API 已棄用的版本。此元素的預設值為空字串。 此布林值參數指定是否打算在未來版本中刪除 API。當我們無法指定時,預設值為false。 以上是在Java 9中,@Deprecated註解添加了哪些屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!在Java 9中,@Deprecated註解添加了哪些屬性?
因為
語法
<strong>@Deprecated(since="<version>")</strong>
forRemoval
語法
<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>