1,什么是注解(作用):
- 对类进行标记。通过注解可以给类增加额外的信息。
注解只能存放简单的数据;
-
2,自定义注解的格式:
public @interface 注解名称 {
public 属性类型 属性名();
}
注意:注解的时候属性一定要先赋值;且同一个地方注解只能使用一次;
3,自定义注解的使用格式:(注解结尾不能使用 ;)
```java //注解: public @interface Myin { //default : 设置默认值18 public int age() default 18;
public String name();
-
}
//注解的使用: @Myin(name = “dd”) public class Text01 { @Myin(name = “aa”,age = 19) public static void main(String[] args) {
}
} ```