`

Java Annotation 注解

阅读更多
Annotations Gotchas and Best Practices:
http://willcode4beer.com/design.jsp?set=annotations_gotchas_best_practices

写的非常全面实用的一个Java Annotation系列:
作者:cleverpig
作者Blog:http://blog.matrix.org.cn/page/cleverpig
Java Annotation入门
http://blog.csdn.net/dongtg/archive/2007/09/06/1774101.aspx
Java Annotation手册
http://blog.csdn.net/dongtg/archive/2007/09/06/1774102.aspx
Java Annotation 高级应用
http://blog.csdn.net/dongtg/archive/2007/09/06/1774104.aspx


Annotations Types:
1. 13. 1. Annotations and Annotation Types:
http://www.java2s.com/Tutorial/Java/0020__Language/AnnotationsandAnnotationTypes.htm
引用
Annotations are notes in Java programs to instruct the Java compiler to do something. Java provides three standard annotations and four standard meta-annotations.

1 An annotation type is a special interface type.
2 An annotation is an instance of an annotation type.
3 An annotation type has a name and members.
4 The information contained in an annotation takes the form of key/value pairs.
5 There can be zero or multiple pairs and each key has a specific type.
6 It can be a String, int, or other Java types.
7 Annotation types with no key/value pairs are called marker annotation types.
8 Those with one key/value pair are referred to single-value annotation types.

1 There are three annotation types in Java 5: Deprecated, Override, and Suppress Warnings.
2 There are four other annotation types that are part of the java.lang.annotation package: Documented, Inherited, Retention, and Target.
3 These four annotation types are used to annotate annotations,
1. 13. 2 - 1. 13. 9见上链接页面。


Meta-Annotations:
http://en.wikibooks.org/wiki/Java_Programming/Annotations/Meta-Annotations
引用
There are four annotation types in the java.lang.annotation package. These so-called meta-annotations are used to annotate other annotation types.
1 Documented
2 Inherited
3 Retention
4 Target




设计自己的Annotation:
http://www.iteye.com/topic/36659
分享到:
评论

相关推荐

    Java Annotation注解技术

    Java Annotation注解技术是自Java SE 5.0版本引入的一种元编程机制,它允许程序员在源代码的各个层面(如类、方法、变量等)添加元数据,以供编译器、JVM或第三方工具在编译时或运行时进行处理。Annotation简化了...

    Java Annotation注解.doc

    Java Annotation,也称为注解,是Java编程语言中的一种元数据机制,用于向编译器、JVM或工具提供有关代码的附加信息。这些信息不直接影响代码的执行,但可以被编译器或运行时环境用来执行特定的操作,如代码分析、...

    Java Annotation注解

    本篇将深入探讨Java Annotation注解的相关知识点。 1. **注解类型**: Java提供了三种类型的注解:源码级注解、编译器级注解和运行时注解。源码级注解在编译后不保留,只用于源码阶段;编译器级注解会影响编译过程...

    java Annotation 注解

    Java Annotation,也称为注解,是Java编程语言中的一种元数据机制,自JDK 5.0开始引入。注解提供了在源代码中嵌入元数据的能力,这些元数据可以被编译器、构建工具或者运行时环境用来处理代码。它们在代码中看起来...

    Java Annotation

    Java Annotation(注解)是自 Java 5.0 开始引入的一种语言元素,它为开发者提供了在代码中添加元数据的能力。简单来说,注解就像是对代码进行标记或注释的方式,这些标记可以在编译时或者运行时被读取并执行特定的...

    Java Annotation(Java 注解)

    如果你想知道java annotation是什么?你可以看看

    java1.5 annotation注释源代码

    Java 1.5 引入了一种新的元编程机制——注解(Annotation),极大地增强了代码的可读性和可维护性。注解是一种在代码中添加元数据的方式,它允许程序员在源代码上添加一些信息,这些信息可以被编译器或运行时环境...

    JDK5.0 Java Annotation 介绍(ppt)

    Java Annotation 是 JDK5.0 引入的一种元数据机制,它允许程序员在代码中嵌入额外的信息,这些信息可以被编译器、构建工具或运行时系统用来执行特定的任务。Annotation 提供了一种安全、灵活的方式来描述代码的属性...

    java annotation demo

    Java 注解(Annotation)是Java语言提供的一种元编程机制,它允许程序员在源代码的各个元素(如类、方法、变量等)上添加信息。这些信息可以被编译器或运行时系统用来验证代码、执行特定操作或者提供额外的运行时...

    Java Annotation手册

    在Java编程语言中,注解(Annotation)是一种元数据,它提供了在编译时或运行时处理代码的一种方式。通过注解,开发者可以向编译器或JVM提供有关代码的附加信息,而这些信息通常不直接影响程序的执行,但可以用于...

    Java.Annotation注解.part4

    Java.Annotation注解.part4

    Java annotation (JDK5)

    Java的`javax.annotation.processing.Processor`接口定义了注解处理器的规范。 5. 使用注解 注解可以应用于类、方法、字段、参数、构造函数、包等不同级别。例如: ```java @MyAnnotation("Hello, World!") ...

    JAVA Annotation学习

    通过上述示例中的JavaAnnotation压缩包,你可能包含了注解的使用示例、源码以及相关的博客文章。源码可以帮助你理解注解的实际应用,而博客文章可能深入解释了注解的工作原理和最佳实践。学习这些材料,将有助于你...

    Java.Annotation注解.part3

    Java.Annotation注解.part3

    Java.Annotation注解.part2

    Java.Annotation注解.part2

    Java.Annotation注解.part1

    Java.Annotation注解.part1

    Java自定义注解Annotation的使用

    ### Java自定义注解Annotation的使用 #### 1. 前言 自从JDK 1.5引入了注解这一特性以来,它已经成为Java开发中的一个重要组成部分。注解最初是为了推动EJB 3.0的普及和发展而设计的,其目的是减少配置文件的使用,...

    java之Annotation及其应用

    Java注解(Annotation)是Java语言的一个重要特性,它为元数据提供了强大的支持。元数据是一种描述数据的数据,可以提供有关代码的附加信息,而这些信息并不直接影响代码的执行。在Java中,注解用于向编译器、JVM或...

Global site tag (gtag.js) - Google Analytics