📜  Java中的构造函数 getAnnotatedReceiverType() 方法及示例

📅  最后修改于: 2022-05-13 01:54:53.189000             🧑  作者: Mango

Java中的构造函数 getAnnotatedReceiverType() 方法及示例

Constructor类的getAnnotatedReceiverType()方法用于返回一个 AnnotatedType 对象,该对象表示 AnnotatedType 以指定此构造函数的接收器类型。如果构造函数具有接收器参数,则构造函数的接收器类型可用。如果此构造函数没有接收器参数或接收器参数在其类型上没有注释,则返回值是 AnnotatedType 对象,表示没有注释的元素。如果此构造函数是顶级静态成员,则返回值为 null。

句法:

public AnnotatedType getAnnotatedReceiverType()

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

返回值:此方法返回一个AnnotatedType 对象,表示此 Executable 表示的方法或构造函数的接收方类型,如果此 Executable 不能有接收方参数,则返回 null。

下面的程序说明了 getAnnotatedReceiverType() 方法:
方案一:

// Java program to demonstrate
// Constructor.getAnnotatedReceiverType() method
  
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.AnnotatedType;
import java.lang.reflect.Constructor;
  
public class GFG {
  
    public static void main(String[] args)
        throws NoSuchMethodException
    {
  
        // create a constructor class
        Constructor c = Test.class.getConstructors()[0];
  
        // apply getAnnotatedReceiverType()
        AnnotatedType atr
            = c.getAnnotatedReceiverType();
  
        // print result
        System.out.println(atr);
        System.out.println("Type = "
                           + atr.getType().getTypeName());
    }
}
class Test {
    public Test(@Annotation Test test) {}
}
  
@Target({ ElementType.TYPE_USE })
@Retention(RetentionPolicy.RUNTIME)
@interface Annotation {
}
输出:
sun.reflect.annotation.AnnotatedTypeFactory$AnnotatedTypeBaseImpl@12a3a380
Type = Test

方案二:

// Java program to demonstrate
// Constructor.getAnnotatedReceiverType() method
  
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.AnnotatedType;
import java.lang.reflect.Constructor;
  
public class GFG {
  
    public static void main(String[] args)
        throws NoSuchMethodException
    {
  
        // create a constructor class
        Constructor c
            = Demo.class.getConstructors()[0];
  
        // apply getAnnotatedReceiverType()
        AnnotatedType atr
            = c.getAnnotatedReceiverType();
  
        // print result
        System.out.println(atr);
        System.out.println("Type = "
                           + atr.getType().getTypeName());
    }
}
class Demo {
    public Demo(@PathVar String str) {}
}
  
@Target({ ElementType.TYPE_USE })
@Retention(RetentionPolicy.RUNTIME)
@interface PathVar {
}
输出:
sun.reflect.annotation.AnnotatedTypeFactory$AnnotatedTypeBaseImpl@12a3a380
Type = Demo

参考资料: https: Java/lang/reflect/Constructor.html#getAnnotatedReceiverType()