构造函数类的getAnnotatedReceiverType()方法用于返回表示AnnotatedType的AnnotatedType对象,以指定此构造函数的接收者类型。如果构造函数具有接收方参数,则构造函数的接收方类型可用。如果此构造函数没有接收方参数,或者具有其类型上没有注释的接收方参数,则返回值是一个AnnotatedType对象,该对象表示没有注释的元素。如果此构造函数是top-level静态成员,则返回值为null。
用法:
public AnnotatedType getAnnotatedReceiverType()
参数:此方法不接受任何内容。
返回值:此方法返回AnnotatedType对象,该对象表示此Executable表示的方法或构造方法的接收器类型;如果此Executable不能具有接收器参数,则返回null。
以下示例程序旨在说明getAnnotatedReceiverType()方法:
示例1:
// 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
示例2:
// 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