")forRemoval此布尔值参数指定是否打算在未来版本中删除该API。当我们无法指定时,默认值为false。语法@Deprecated(forRemoval= ")forRemoval此布尔值参数指定是否打算在未来版本中删除该API。当我们无法指定时,默认值为false。语法@Deprecated(forRemoval=

首页  >  文章  >  Java  >  在Java 9中,@Deprecated注解添加了哪些属性?

在Java 9中,@Deprecated注解添加了哪些属性?

PHPz
PHPz转载
2023-08-28 15:49:021260浏览

在Java 9中,@Deprecated注解添加了哪些属性?

Java 9 中的 @Deprecated 注释 中添加了两个新参数或属性。这些参数是 SinceforRemoval,这两个参数当我们无法指定时,两个参数是可选的,带有默认值

因为

字符串参数指定API 已弃用的版本。此元素的默认值为字符串

语法

<strong>@Deprecated(since="<version>")</strong>

forRemoval

布尔值参数指定是否打算在未来版本中删除该 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中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除