Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to understand the enumeration and comments of Java

2025-03-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

2.4MetaAnnotation of JDK

JDK's meta-Annotation is used to modify other Annotation definitions; JDK5.0 provides annotation types specifically for annotations, which are:

Retention

Target

Documented

Inherited

@ Retention: can only be used to modify an Annotation definition to specify how long the Annotation can be retained. @ Rentention contains a member variable of type RetentionPolicy, and a value must be specified for the value member variable when using @ Rentention:

RetentionPolicy.SOURCE: the compiler directly discards comments for this policy

RetentionPolicy.CLASS: the compiler will record comments in the class file. When you run the Java program, JVM does not retain comments. This is the default value.

RetentionPolicy.RUNTIME: the compiler will record comments in the class file. When you run the Java program, JVM retains comments. The program can get the comment through reflection

Target: used to modify the Annotation definition, to specify which program elements the modified Annotation can be used to modify. @ Target also contains a member variable named value.

Documented: used to specify that the Annotation class modified by the meta Annotation will be extracted into a document by the javadoc tool.

Annotations defined as Documented must set the Retention value to RUNTIME.

Inherited: the Annotation modified by it will have inheritance. If a class uses Annotation modified by @ Inherited, its subclasses will automatically have this annotation

At this point, the study of "how to understand the enumeration and comments of Java" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report