Object-Oriented Programming (CS F213) : BITS Pilani
Object-Oriented Programming (CS F213) : BITS Pilani
Object-Oriented Programming (CS F213) : BITS Pilani
import java.util.*;
class Wraptest
{
public static void main(String args[])
{
Vector<Integer> ints = new Vector<Integer>();
ints.add(10); // ints.add(new Integer(10));
ints.add(20); // ints.add(new Integer(10));
ints.add(30); // ints.add(new Integer(10));
ints.add(40); // ints.add(new Integer(10));
for(int i=0;i<ints.size();i++)
System.out.println(ints.get(i));
}// End of Method
Auto-Boxing
}// End of Class
ints.get(i).intValue() Auto-UnBoxing
5 Object-Oriented Programming (CS F213)
Auto boxing / Auto Unboxing
Example 3
import java.util.*;
class WrapTest
{
public static void main(String args[])
{
Integer a = new Integer("10"); // NO ERROR
Integer b = new Integer("20"); // NO ERROR