What will be the output of the following program?
public class GenericsWithObjectsDemo {
public static void main(String args[])
{
GenericsWithObjects<int> integerObject = new GenericsWithObjects<int>(12);
integerObject.print();
}
}
class GenericsWithObjects<T>
{
T obj;
GenericsWithObjects(T obj)
{
this.obj = obj;
}
void print()
{
System.out.println(obj);
}
}