Program to explain Wrapper class with function in Java
// Program to explain Wrapper class with function.
class Wrapper3
{
static int func(Integer v)
{
return v ;
}public static void main(String args[ ])
{
Integer iOb = func(100);
System.out.println(iOb);
}
}
Output:100