public class BoxDemo3 { public static void main(String[] args) { Box integerBox = new Box(); integerBox.add(new Integer(10)); Integer someInteger = integerBox.get(); // no cast! System.out.println(someInteger); } }