码迷,mamicode.com
首页 > 编程语言 > 详细

java Annotation原理

时间:2014-04-27 21:14:59      阅读:431      评论:0      收藏:0      [点我收藏+]

标签:java annotation

    Annotations are one of the fundamental language changes introduced in Java SE5. They provide information that you need to fully describe your program, but that cannot be expressed in Java. Thus, annotations allow you to store extra information about your program in a format that is tested and verified by the compiler

    Annotations can be used to generate descriptor files or even new class definitions and help ease the burden of writing "boilerplate" code(样板代码). Using annotations, you can keep this metadata in the Java source code, and have the advantage of cleaner looking code, compile-time type checking and the annotation API to help build processing tools for your annotations. Although a few types of metadata come predefined in Java SE5, in general the kind of annotations you add and what you do with them are entirely up to you.

      The syntax of annotations is reasonably simple and consists mainly of the addition of the @ symbol to the language. Java SE5 contains three generalpurpose built-in annotations, defined in java.lang:
?
     @Override, to indicate that a method definition is intended to override a method in the base class. This generates a compiler error if you accidentally misspell the method name or give an improper signature.
?
    @Deprecated, to produce a compiler warning if this element is used.
?
    @SuppressWarnings, to turn off inappropriate compiler warnings. This annotation is allowed but not supported in earlier releases of Java SE5 (it was ignored).

Syntactically, annotations are used in much the same way as modifiers.

Most of the time, you will be defining your own annotations and writing your own processors to deal with them.

Apart from the @ symbol, the definition of @Test is much like that of an empty interface.

(注解相当于一个空的接口,除了系统自带的注解之外,可以自定义注解)

java Annotation原理

标签:java annotation

原文地址:http://blog.csdn.net/michael10001/article/details/24599619

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!