@Target({ ElementType.FIELD })和@Target( ElementType.FIELD )有什么区别


加的这个大括号是什么意思?

注解 Android java

科学贵公子 10 years, 2 months ago

@Target 是Java的元注解(指修饰注解的注解)之一。用来指定注解修饰类的哪个成员。
加大括号表示一个数组,指被修饰的注解能用于多个不同的类成员。
举个栗子:


 @Target(ElementType.FIELD)
public @interface A{}

表示注解A只能用来修饰类中的Field


 @Target({ElementType.FIELD, ElementType.METHOD})
public @interface A{}

表示注解A能用来修饰类中的Field和Method

夜之螺旋律 answered 10 years, 2 months ago

Your Answer