java-tutorials/core-java-modules/core-java-annotations
YuCheng Hu 2336a45881
Fixed the issue of java compile for 17
2024-04-30 15:10:44 -04:00
..
src Fixed the issue of java compile for 17 2024-04-30 15:10:44 -04:00
.gitignore java annotations demo code and gitignore file 2020-02-26 00:08:31 -05:00
README.md 更新注解文件说明 2024-04-27 08:28:26 -04:00
pom.xml JAVA-32170: Changes made for Fix formatting of POMs - C_01(#16103) 2024-03-15 17:57:32 +02:00

README.md

Annotation注解

Java 注解Annotation又称 Java 标注,是 JDK5.0 引入的一种注释机制。

Java 语言中的类、方法、变量、参数和包等都可以被标注。和 Javadoc 不同Java 标注可以通过反射获取标注内容。在编译器生成类文件时标注可以被嵌入到字节码中。Java 虚拟机可以保留标注内容,在运行时可以获取到标注内容 。 当然它也支持自定义 Java 标注。

相关的文章: