Java SE最后一章
注解
什么是注解?
package com.liang.annotation;
import java.util.ArrayList;
import java.util.List;
//什么是注解
public class Test01 extends Object {
@Override//重写的注解
public String toString() {
return super.toString();
}
// @Deprecated 不推荐程序员使用,但是可以使用,或者存在更好的方式
@Deprecated
public static void test(){
System.out.println(" Deprecated");
}
@SuppressWarnings("all")//警告镇压,消除警告
public void test02(){
List list = new ArrayList();
}
public static void main(String[] args) {
test();
}
}
元注解
测试元注解
package com.liang.annotation;
import java.lang.annotation.*;
//测试元注解
//@MyAnnotation//只能用在方法上
public class Test02 {
@MyAnnotation
public void test(){}
}
//定义一个注解
//Target 表示我们的注解可以用在那些地方
@Target(value= {ElementType.METHOD,ElementType.TYPE})//给他一个数组,定义一个类上面,有效
//Retention 表示我们的注解在什么地方有效
//runtime>class>soures
@Retention(value = RetentionPolicy.RUNTIME)
//Documented 表示是否将我们的注解生成在JAVAdoc中
@Documented
//Inherited 子类可以继承父类的注解
@Inherited
@interface MyAnnotation{
}
自定义注解
package com.liang.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
//自定义注解
public class Test03 {
//注解可以显示赋值,如果没有默认值,我们就必须给注解赋值
@MyAnnotation2(name = "梁伟浩", schools = {"北京大学"})
public void test(){
}
@MyAnnotation3("梁伟浩")
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,代表不存在
String[] schools() default {"北京大学","拜拜大学"};
}
@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation3{
String value();
}