
Autoboxing and Unboxing in JavaHi guys! Welcome you again to brajeshNotes. In today's session , we will talk about what is auto boxing and auto unboxing in java. So lets start without spending too much time 😊
Autoboxing : Process of converting the primitive value into its corresponding wrapper class value is called auto boxing.
For example converting int to Integer class. Java compiler applies auto boxing when a primitive value is :
Passed...