InterviewSolution
Saved Bookmarks
| 1. |
Differentiate between auto-boxing and auto-unboxing in java |
|
Answer» answerExplanation:AUTOBOXING is the 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.mark me as the BRAINLIEST pls⚡ |
|