Computer Science, asked by malavikamurali1512, 1 year ago

What is autoboxing in Java?

Answers

Answered by malishahzad789
4

automatic conversion that the Java compiler makes between the primitive types and their corresponding object wrapper classes. For example, converting an int to an Integer, a double to a Double, and so on. If the conversion goes the other way, this is called unboxing.

Answered by amitaagarwal4827
0

Answer:

The Automatic conversion of primitive data type into its corresponding wrapper class is known as autoboxing.

Similar questions