構造函數類的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
相關用法
- Java Constructor isSynthetic()用法及代碼示例
- Java Constructor isVarArgs()用法及代碼示例
- Java Constructor toString()用法及代碼示例
- Java Constructor getDeclaringClass()用法及代碼示例
- Java Constructor getAnnotation()用法及代碼示例
- Java Constructor getName()用法及代碼示例
- Java Constructor getAnnotatedReturnType()用法及代碼示例
- Java Constructor getParameterCount()用法及代碼示例
- Java Constructor hashCode()用法及代碼示例
- Java Constructor toGenericString()用法及代碼示例
- Java Constructor getGenericParameterTypes()用法及代碼示例
- Java Constructor getGenericExceptionTypes()用法及代碼示例
- Java Constructor getDeclaredAnnotations()用法及代碼示例
- Java Constructor getParameterAnnotations()用法及代碼示例
- Java Constructor getTypeParameters()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Constructor getAnnotatedReceiverType() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。