Heim > Java > javaLernprogramm > Hauptteil

Autoboxing in Java

WBOY
Freigeben: 2024-08-30 15:58:00
Original
885 Leute haben es durchsucht

Autoboxing ist ein in JAVA verfolgter Prozess, bei dem die Konvertierung primitiver Daten durch den Compiler in den Objekttyp konvertiert wird. Wenn die Variable beispielsweise als „int“ deklariert ist, wird die Variable vom Compiler aus einer primitiven Ganzzahl in einen Objektdatentyp konvertiert, der in diesem Format verwendet wird. Es gibt noch einen weiteren Prozess, nämlich die Umkehrung des Autoboxings, das „Unboxing“ genannt wird.

Starten Sie Ihren kostenlosen Softwareentwicklungskurs

Webentwicklung, Programmiersprachen, Softwaretests und andere

Definition: Die Konvertierung eines beliebigen Werts eines primitiven Datentyps in ein Objekt einer entsprechenden Wrapper-Klasse wird als Autoboxing bezeichnet.

Syntax

Die für das Autoboxing verwendete Syntax lautet wie folgt:

primitive_DataType variableName = 'VariableValue';
Nach dem Login kopieren

Wie funktioniert Autoboxing in Java?

Der JAVA-Compiler nimmt den primitiven Datentyp und konvertiert ihn in ein Objekt der Wrapper-Klasse. Dann funktioniert der Compiler nur, wenn die folgenden zwei Punkte erfüllt sind:

  1. Variablen werden als Parameter an die Funktion übergeben, die eine Objekterstellung der Wrapper-Klasse erwarten würde.
  2. Primitive Werte werden Variablen zugewiesen, damit der Compiler Autoboxing durchführen kann.
  3. Alle primitiven Datentypen sind mit ihrer jeweiligen Wrapper-Klasse verknüpft (dies erfolgt bereits durch JAVA, das in ihren Bibliotheken gespeichert ist). Die primitiven Datentypen und ihre verknüpften Wrapper-Klassen sind wie folgt verknüpft:
Primitive data type Wrapper class
boolean Boolean
byte Byte
long Long
double Double
short Short
char Character
Int Integer
float Float

Examples of Autoboxing in Java

Below are the examples of autoboxing in JAVA which are helpful to understand this concept further.

Example #1

Code:

import java.io.*;
class example1
{
public static void main (String[] args)
{
//here we are creating an integer "test1" having value of "100".
Integer test1 = new Integer(100);
System.out.println("Here is the value of integer test1 which is created into object of the wrapper class integer: " + test1);
//here we are autoboxing a character "test2" with a value of "a".
Character test2 = 'a';
System.out.println("Here is the value of test2 variable after autoboxing using character wrapper class: " + test2);
}
}
Nach dem Login kopieren

Output:

Autoboxing in Java

Explanation:

The JAVA library named “java.io” was imported so that JAVA prime functionalities can be used. First, the main class name “example1” was created containing the main function. The main function is the point where the execution of the program will start. Next, an integer named “test1” was created and assigned with the value. It is slightly different from the normal way of declaring and assigning the values; as you can see, the wrapper class “Integer” was instantiated, and the value to be assigned is passed as a parameter to the wrapper class. This process is called objectifying the primitive data type using the wrapper class. No doubt that “JAVA” is called a fully object-oriented language.

In the next section of code, the Character primitive data type is assigned to a variable named “test2” with a value “a.” This is a usual way of declaring and assigning the variable with the value. This is working because the JAVA compiler is smart enough to convert the primitive data type into an object of its wrapper class automatically in the back. This functionality is called autoboxing in JAVA.

Example #2

Code:

public class BoxingWidening
{
// The function below is demonstrating the boxing functionality in JAVA.
static void testFunction(char i)
{
System.out.println("Program output for boxing:: ");
System.out.println("char in short");
}
// This function is demonstrating the widening functionality in JAVA.
static void testFunction(Character i)
{
System.out.println("Program output for widening: ");
System.out.println("Character in full");
}
public static void main(String args[])
{
char ch='a';
testFunction(ch);
}
}
Nach dem Login kopieren

Output:

Autoboxing in Java

Explanation:

In this example, the difference between “widening” and “boxing” is demonstrated. Widening is a functionality where the full class name is used, for example, Integer or character instead of int or char. Two functions are defined with the same name, “testFunction,” one with widening and the other with boxing syntax declarations and assignments. In the main function, a character named “ch” is declared and assigned with a value “a,” and a function is called with its function name. This function has two definitions on its name. Since JAVA prefers boxing, the function’s boxing definition is called, and the parameter “ch” is passed to the boxing definition. The final result is displayed using the print() function. This function shows boxing definition in the output screen rather than taking a widening definition. Certainly, autoboxing is much powerful in comparison to the widening functionality offered by the JAVA language.

Advantages

Some of the advantages derived from this useful functionality by JAVA are enlisted below:

  1. The developer has to write less code, and this reduces the burden on the coder so that the coder can concentrate on complex logic.
  2. Cleaner code as the complexity of creating an object and instantiating it is abstracted due to compiler intelligence.
  3. The best strategy for information is picked up by the compiler using this. For example, if we want the value of the integer to be picked up, then we should use code: valueOf (int) rather than new Integer (int). This improves turnaround time.
  4. Promotes abstraction.
  5. Reduces the possibility of bugs in the lengthy code/ project because of abstraction.

Conclusion

Autoboxing is one of the best strategies to abstract complex code from the developer by adding compiler intelligence. This reduces the overhead on the developer of writing small code snippets which are not logically related. This is used so extensively by developers that the instantiating of a wrapper class is not known to many developers. Autoboxing is certainly a powerful and cleaner way of declaring and assigning the values to the variables.

Das obige ist der detaillierte Inhalt vonAutoboxing in Java. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
Quelle:php
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!