自定义注解

自定义注解:


使用@interface自定义注解时,自动继承了java.lang.annotation.Annotation接口;

注意:

  • @interface用来声明一个注解,格式public @注解名{定义内容};

  • 其中的每一个方法实际上是声明了一个配置参数;

  • 方法的名称就是参数的名称;

  • 返回值类型就是参数的类型(返回值只能是基本类型Class,String,enum);

  • 可以通过default来声明参数的默认值

  • 如果只有一个参数成员,一般参数名为value

  • 注解元素必须要有值,我们定义注解元素时,经常使用空字符串0作为默认值


package com.cheng.annotation;
?
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
?
//自定义注解
public class Myannotation {
   @Myannotation2(age = 11)//此处age在注解中没有默认值,所以要赋值一下
   public void test1(){
?
  }
   @Myannotation3("cat")//给参数赋值,省略参数名条件在最后面
   public void test2(){
?
  }
}
//自定义两个注解,一个多参,一个只有一个参数value
@Target({ElementType.TYPE,ElementType.METHOD})//表示可以用在类和方法上
@Retention(RetentionPolicy.RUNTIME)//表示运行时有效
@interface Myannotation2{//自定义注解Myannotation2
   //注解的参数: 参数类型+参数名(); 还可以用default赋默认值;
   String name() default "";//String类型的参数,参数名为name,默认为空;
   int age();//没有默认值
   int id() default -1;//默认值为-1,代表不存在。
?
   String[] schools() default {"清华大学","北京大学"};//字符串数组默认值为清华北大
?
}
?
@Target({ElementType.TYPE,ElementType.METHOD})//表示可以用在类和方法上
@Retention(RetentionPolicy.RUNTIME)//表示运行时有效
@interface Myannotation3{//自定义注解Myannotation3
   String value();//只有一个参数时,只有参数名为value时,在给参数赋值时才可以省略参数名直接赋值,如上
}

 

 

自定义注解

上一篇:windows10安装docker,运行jhipster-registry


下一篇:VS 添加自定义--代码块 实现一秒创建方法