Could you please explain the difference between these declarations :
List<Number> test = new ArrayList<Number>();
List<Number> test1 = new ArrayList();
test.add(new Integer(10));
test1.add(new Integer(10));
//test.add(new Object());
//test1.add(new Object());
The first 2 invocation of add method work fine, the last 2 fail. Is there anything else, except compile warning at the second initialization ?
Do I understand correct that compile time type safety is based on variable type (and not the referenced object type)?
Thank you in advance.