0%

注解和注释

1. 内置注解

@Override 重写

@Deprecated 不推荐使用

@SuppressWarnings(“all”)

2. 元注解

@Target 表明注解能用在什么地方

@Retention 表示需要在什么基别保存该注释信息,用于描述主机的生命周期

@Document 表示是否将注解生成在JAVAdoc中

@Inherited 自类可以继承弗雷德注解

3.如何定义注解

1
2
3
@Target(Value = {ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation{}

shile