java – In Eclipse, Variables does not show child variables of extended class-Exceptionshub
Questions: I have a class: class MyArrayList extends ArrayList { public int dog; public MyArrayList(int v) {dog = v;} } I then create one: foo = new MyArrayList(23); System.out.println("foo.dog is"+fo...