Unboxing(wrapper classees)

PHOTO EMBED

Thu Feb 01 2024 13:36:24 GMT+0000 (Coordinated Universal Time)

Saved by @E23CSEU1151

class F
{
    public static void main(String[] args)
    {
        Integer a = new Integer(100);
        int b=a.intValue();
        System.out.println(a+b);
    }
}
content_copyCOPY