其他分享
首页 > 其他分享> > 2022.4.20 注解

2022.4.20 注解

作者:互联网

注解与反射

tostring方法是干嘛的

首先你要明白所有的类都有个超类就是Object ,也就是所有类都默认继承Object 或者间接继承。既然是继承那么子类就继承了父类的方法。

注解Annotation

Annotation的作用:

Annotation的格式︰

Annotation在哪里使用?

内置注解

 package com.xing.annotation;
 ​
 @SuppressWarnings("all")
 public class Test01 extends Object{
 //   alt + ins
     @Override   //重写的注解     有检查和约束的作用
     public String toString() {
         return super.toString();
    }
     
     //Deprecated不推荐程序员使用,但是可以使用。或者存在更好的方式
     @Deprecated
     public static void test(){
         System.out.println("Deprecated");
    }
     public static void main(String[] args){
         test();
    }
 ​
 }
 ​

 

 

 

 

元注解

 package com.xing.annotation;
 ​
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 ​
 //测试元注解
 public class Test02 {
 ​
     @MyAnnotation  //方法上使用自己定义的注解
     public void test(){
 ​
    }
 ​
 }
 //定义一个注解   一个类只能有一个public
 /*public @interface MyAnnotation(){
 } */
 ​
 //相当于内部类
 //       参数名 = ElementType.
 //@Target(value = ElementType.METHOD)只能在方法上使用
 ​
 @Target(value = {ElementType.METHOD,ElementType.TYPE})//方法上与类上
 //         参数名 = RetentionPolicy.
 @Retention(value = RetentionPolicy.RUNTIME)
 @interface MyAnnotation{
 }

自定义注解

 package com.xing.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("haha")  //定义注解时参数名为value时,value可以不写
     public void test2(){};
 }
 ​
 ​
 ​
 @Target({ElementType.TYPE,ElementType.METHOD})//可以省略value
 @Retention(RetentionPolicy.RUNTIME)
 @interface MyAnnotation2{
     //注解的参数:注解类型 注解名();
     String name();
     //String name() default "";
 ​
     int age() default 0;
     int id() default -1;//l如果默认值为-1,代表不存在.
     String[] schools();//数组类型
 }
 ​
 @Target({ElementType.TYPE,ElementType.METHOD})
 @Retention(RetentionPolicy.RUNTIME)
 @interface MyAnnotation3{
     //只有一个参数时,建议写value
     String value();
 }

 

标签:lang,20,java,value,public,注解,2022.4,annotation
来源: https://www.cnblogs.com/shanzha/p/16172470.html