04 自定义注解

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可以不用再次描述
}
posted @ 2023-09-12 18:49  被占用的小海海  阅读(2)  评论(0编辑  收藏  举报