Answer Posted / narayanarao
Automatic conversion from int to Integer is Auto boxing and
automatic conversion back from Integer to int is auto unboxing.
For example
int i;
Integer a
//Manual conversion
i = a.intValue();
a = new Integer(i);
By Auto boxing
i=a;
a=i;
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
What is the maximum size of arraylist in java?
What are the benefits of operations in java?
Is java a software?
What is the simpletimezone class in java programming?
What is instance synchronization?
Explain public static void main(string args[]).
What do you mean by pointer value and address?
Program to Find the second largest element in an array.
What do you mean by chromounits in java8?
Can we override constructor?
Which class is the superclass for all the classes?
What is the byte range?
Where are local variables stored?
What is the symbol for average?
Lowest Common ancestor in a Binary Search Tree and Binary Tree.