注解

一、什么是注解

  • Annotation是从JDK5.0开始引入的新技术

  • Annotation的作用

    • 不是程序本身,可以对程序做出解释(这一点和注释comment没有区别)
    • 可以被其他程序(比如编译器)读取
  • Annotation的格式:

    • 注解是以“@注释名"在代码中存在的,还可以添加一些参数值,例如:

      @SuppressWarning(value=“unchecked”)

  • Annotation在哪里使用

    • 可以附加在package,class,method,field等上面,相当于给他们添加了额外的辅助信息,我们可以通过反射机制编程实现对这些元数据的访问

二、元注解

package annotion;

import java.lang.annotation.*;

/**
 * 测试元注解
 */
@MyAnnotation
public class MetaAnnoTest01 {

}

//定义一个注解
//Target  表示我们的注解可以用在哪些地方
@Target(value = {ElementType.METHOD,ElementType.TYPE})

//Retention 表示我们的注解在什么地方还有效
    //runtime>class>source
@Retention(value = RetentionPolicy.RUNTIME)

//Inherited  表示子类可以继承父类的注解
@Inherited
@interface MyAnnotation{

}

三、自定义注解

  • 使用@interface自定义注解时,自动继承了java.lang.annotation.Annotation接口
  • 分析:
    • @interface用来声明一个注解,格式:public @interface 注解名{定义内容}
    • 其中的每一个方法实际上声明了一个配置参数
    • 方法的名称就是参数的名称
    • 返回值类型就是参数的类型(返回值只能是基本类型,Class,String,enum)
    • 可以通过default来声明参数的默认值
    • 如果只有一个参数成员,一般参数名为value
    • 注解元素必须要有值,我们定义注解元素时,经常使用空字符串、0作为默认值
package annotion;

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

/**
 * 自定义注解
 */
public class MyAnno {
    //注解可以显式赋值,如果没有默认值,我们就必须给注解赋值
    @MyAnnotation2(name = "canoe", school = {"西北工业大学"})
    public void test() {
    }

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

@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation2 {
    //注解的参数:  参数类型 + 参数名();
    String name() default "";//默认值为空
    int age() default 0;
    int id() default -1;  //如果默认值为-1,代表不存在

    String[] school();
}

@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation3{
    String value(); //参数为value时,可以省略value=
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值