自己动手写注解

Posted 蜡笔小斌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自己动手写注解相关的知识,希望对你有一定的参考价值。

跟同学吹牛的时候,他说公司里的大牛写的注解他看不懂,我也的确是一知半解,只知道Spring用起来很爽,今天看Java核心技术卷二的时候,翻到了注解这一章,写的很好,于是就研究了一下。

一个简单的注解

package com.company;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

public class LearnAnnotation 

    //定义注解,指定注解在运行时留存
    @Retention(RetentionPolicy.RUNTIME)
    @interface MyAnnotation
        String name();
        int age();
    

    //使用注解
    @MyAnnotation(name="Moon", age=21)
    class Foo 
        String name;
        int age;
    

    public static void main(String[] args) 
        //检查Foo中是否存在MyAnnotation注解
        if (Foo.class.isAnnotationPresent(MyAnnotation.class))
            //获取注解
            MyAnnotation myAnnotation = Foo.class.getAnnotation(MyAnnotation.class);
            System.out.print(String.format("Hello %s, your age is %s", myAnnotation.name(), myAnnotation.age()));
        
    

Spring注解实现

待续

参考资料

Java核心技术卷二
Java注解Annotation详解
深入理解Java:注解(Annotation)–注解处理器

以上是关于自己动手写注解的主要内容,如果未能解决你的问题,请参考以下文章

自己动手写一个操作系统——总目录

自己动手写一个操作系统——总目录

自己动手写一个操作系统——总目录

Java中的自定义注解

原创自己动手写控件----XSmartNote控件

死磕 java线程系列之自己动手写一个线程池