当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Class isAnnotation()用法及代码示例


java.lang.Class类的isAnnotation()方法用于检查此Class是否为Annotation类型。如果此类是Annotation类型,则该方法返回true。否则返回false。

用法:

public boolean isAnnotation()

参数:此方法不接受任何参数。


返回值:如果该类是Annotation类型,则此方法返回true。否则返回false。

下面的程序演示了isAnnotation()方法。

示例1:

// Java program to demonstrate isAnnotation() method 
  
public class Test { 
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
  
        // returns the Class object for this class 
        Class myClass = Class.forName("Test"); 
  
        System.out.println("Class represented by myClass: "
                           + myClass.toString()); 
  
        // Check if this class is an annotation 
        // using isAnnotation() method 
        System.out.println("Is Test an annotation: "
                           + myClass.isAnnotation()); 
    } 
}
输出:
Class represented by myClass: class Test
Is Test an annotation: false

示例2:

// Java program to demonstrate isAnnotation() method 
  
// declaring an Annotation Type 
@interface A { 
    // Annotation element definitions 
} 
  
public class Test { 
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
  
        // returns the Class object for A 
        Class myClass = A.class; 
  
        // Check if myClass is an annotation 
        // using isAnnotation() method 
        System.out.println("Is A an annotation: "
                           + myClass.isAnnotation()); 
    } 
}
输出:
Is A an annotation: true

参考: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#isAnnotation–



相关用法


注:本文由纯净天空筛选整理自srinam大神的英文原创作品 Class isAnnotation() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。