Annotation介绍
内置注解
自定义注解
元注解
/** * 测试自定义注解的使用 * */ @SxtAnnotation01 public class Demo02 { @Annotation01(age=19,studentName="老高",id=1001, schools={"北京大学","北京航空航天大学"}) public void test(){ } @Annotation02("aaaa") public void test2(){ } }
时间: 2024-10-06 10:59:57