1. 程式人生 > 實用技巧 >自定義註解

自定義註解

自定義註解

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

//自定義註解
public class Test03 {
    //註解可以顯示賦值,如果沒有預設值,我們就必須給註解賦值
    @MyAnnotation2(age = 18,name = "Lu")
    public void test(){}

    @MyAnnotation3("Lu")
    public void test2(){}

}

@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation2{

    //註解的引數:引數型別 + 引數名(); 此處不是方法
    String name() default "";
    int age() default 0;
    int id() default -1; //如果預設值為-1,代表不存在,indexof,如果找不到就返回-1

    String[] schools() default {"西部開源","清華大學"};
}

@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation3{
    //value可以預設在main中不寫
    String value();
}