16) Wrapper Classes
Autoboxing example from int to Integer object.
← All Topics
▶ Run Program
Java Code
public class Main { public static void main(String[] args) { int a = 10; Integer obj = a; // autoboxing System.out.println("Object value: " + obj); } }
Program Input (optional)
Output