package annotate;
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@myAnnotate(age = 18)
public class Test03 {
@myAnnotate1(20) // 当参数只有一个时,value可以不用再次描述
public void test(){}
}
// 自定义注解
@Target(value = {METHOD,TYPE})
@Retention(value = RUNTIME)
@interface myAnnotate{
String name() default ""; // 注解的参数:类型+参数名(); default "":可以默认为空
int age();
int id() default -1; // 不存在 indexof
}
@Target(value = {METHOD,TYPE})
@Retention(value = RUNTIME)
@interface myAnnotate1{
int value(); // 当参数只有一个时,value可以不用再次描述
}