01: import java.util.*;
02: public class TestClass {
03: public static void main(String[] args) {
04: List<Number> list = new ArrayList<Integer>();
05: list.add(1);
06: list.add(1.2);
07: list.add(new Integer());
08: list.add(new Integer("5"));
09: }
10: }
Login in to like
Login in to comment