自己做一个java注解

代码里都经常看到@override这样的形式的注解,于是自己就想写一个。

所谓注解,就是一个特殊的接口

格式如下
@Target(ElementType.TYPE)#作用目标,如在类、方法、参数是使用
@Retention(RetentionPolicy.RUNTIME)#作用时间,运行期间还是编译期间
public @interface testannotion {#注解的申明
     String name();#方法
     int id();#方法
}
以上,就是一个简单的注解

注解完成后就可以使用
@testannotion(id=4,name="王五")
public class hello {
    private int id;
    private String name;
    public hello(int id,String name){
        this.id = id;
        this.name = name;
        System.out.println("id:"+id+" name:"+name);
    }
}
上面函数的目标就是通过注解的方式,将id,name赋值到类中的变量里去。
所以还需要创建一个注解解释器,主要通过反射的方式实现

import java.lang.annotation.Annotation;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;

public class explainAnnotion {
    private Class cls;
    public explainAnnotion(Class cls){
        this.cls = cls;
    }
    
    public void explain() throws InstantiationException, IllegalAccessException, InvocationTargetException {
         boolean hasAnnotation  = cls.isAnnotationPresent(testannotion.class);
         if ( hasAnnotation ) {
             testannotion ta = (testannotion) cls.getAnnotation(testannotion.class);
             int id = ta.id();
             String name = ta.name();   
             System.out.println(name);
             try {
                    Constructor defaultConstructor = cls.getDeclaredConstructor(int.class,String.class);
                    System.out.println("通过class.getDeclaredConstructor()获取默认构造函数:" + defaultConstructor + "\n");
                    hello ho = (hello)defaultConstructor.newInstance(id,name);
             
             } catch (NoSuchMethodException | SecurityException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IllegalArgumentException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
         }

        
    }
}

最后执行

import java.lang.reflect.InvocationTargetException;

public class runannotion {
    public static void main(String[] args) throws InstantiationException, IllegalAccessException, InvocationTargetException{
        explainAnnotion ex = new explainAnnotion(hello.class);
        ex.explain();
    }
}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值