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

What is the method of automatic packing of Java?

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly explains "what is the method of Java automatic packing". The content of the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "what is the method of Java automatic packing".

Sample code:

Manual packing, manual unpacking

Integer iOb=new Integer (100); / / manual packing int i=iOb.intValue (); / / manual unpacking System.out.println (I + "" + iOb)

Automatic packing, automatic unpacking

Integer iOb=1000;int iObscape system. Out.println (I + "" + iOb)

Static import: can be referenced directly through static member names

Import static java.lang.Math.sqrt

Comments (metadata): embed additional information in the java source file

@ Retention specifies the retention policy associated with the annotation. The retention policy determines how long the @ Documented tag annotation lasts during compilation and deployment, tells the tool that the annotation is documented @ Target specifies the declaration type of the application annotation @ Inherited tag annotation, so that the superclass annotation inherits the @ Override tag annotation from the self-class, the method of marking the annotation must override the superclass method @ Deprecated tag annotation, declaring that it is outdated and that the @ SafeVarargs tag annotation is not recommended Indicates that there is no unsafe action related to the variable length parameter of the method or constructor. @ SuppressWarnings forbids the compiler to issue a warning @ FunctionalInterface tag comment to annotate the interface declaration. @ Deprecated / / Mark a non-recommended class class MyClass {private String msg; MyClass (String m) {msg=m;} @ Deprecated / / mark a non-recommended method String getMsg () {return msg;}} public class AnnoDemo {public static void main (String [] args) {MyClass myObj=new MyClass ("test"); System.out.println (myObj.getMsg ());}}

Thank you for reading, the above is the content of "what is the method of Java automatic packing". After the study of this article, I believe you have a deeper understanding of what the method of Java automatic packing is, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

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