java元注解@Target注解⽤法
@Target:
   @Target说明了Annotation所修饰的对象范围:Annotation可被⽤于 packages、types(类、接⼝、枚举、Annotation类型)、类型成员(⽅法、构造⽅法、成员变量、枚举值)、⽅法参数和本地变量(如循环变量、catch参数)。在Annotation类型的声明中使⽤了target可更加明晰其修饰的⽬标。
  作⽤:⽤于描述注解的使⽤范围(即:被描述的注解可以⽤在什么地⽅)
 取值(ElementType)有
public enum ElementType {
/**⽤于描述类、接⼝(包括注解类型) 或enum声明 Class, interface (including annotation type), or enum declaration */
TYPE,
/** ⽤于描述域 Field declaration (includes enum constants) */
FIELD,
/**⽤于描述⽅法 Method declaration */
METHOD,
/**⽤于描述参数 Formal parameter declaration */
PARAMETER,
/**⽤于描述构造器 Constructor declaration */
CONSTRUCTOR,
/**⽤于描述局部变量 Local variable declaration */
LOCAL_VARIABLE,
/** Annotation type declaration */
ANNOTATION_TYPE,
/**⽤于描述包 Package declaration */
PACKAGE,
/**
* ⽤来标注类型参数 Type parameter declaration
* @since 1.8
*/
TYPE_PARAMETER,
/**
*能标注任何类型名称 Use of a type
* @since 1.8
*/
TYPE_USE
ElementType.TYPE_PARAMETER(Type parameter declaration) ⽤来标注类型参数,栗⼦如下:
@Target(ElementType.TYPE_PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface TypeParameterAnnotation {
}
/
/ 如下是该注解的使⽤例⼦
public class TypeParameterClass<@TypeParameterAnnotation T> {
public <@TypeParameterAnnotation U> T foo(T t) {
return null;
}
}
  ElementType.TYPE_USE(Use of a type) 能标注任何类型名称,包括上⾯这个(ElementType.TYPE_PARAMETER的),栗⼦如下:public class TestTypeUse {
@Target(ElementType.TYPE_USE)
@Retention(RetentionPolicy.RUNTIME)
public @interface TypeUseAnnotation {
}
public static @TypeUseAnnotation class TypeUseClass<@TypeUseAnnotation T> extends @TypeUseAnnotation Object {        public void foo(@TypeUseAnnotation T t) throws @TypeUseAnnotation Exception {
}
}
// 如下注解的使⽤都是合法的
@SuppressWarnings({ "rawtypes", "unused", "resource" })
public static void main(String[] args) throws Exception {
TypeUseClass<@TypeUseAnnotation String> typeUseClass = new @TypeUseAnnotation TypeUseClass<>();
typeUseClass.foo("");
List<@TypeUseAnnotation Comparable> list1 = new ArrayList<>();
List<? extends Comparable> list2 = new ArrayList<@TypeUseAnnotation Comparable>();
@TypeUseAnnotation String text = (@TypeUseAnnotation String)new Object();
java.util. @TypeUseAnnotation Scanner console = new java.util.@TypeUseAnnotation Scanner(System.in);java arraylist用法
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。