1 Object o = myArrayList.get(0); 2 Dog d1 = (Dog) o; //将类型转换成Dog 3 d1.eat(); 4 if (o instanceof Dog) { 5 Dog d2 = (Dog) o; 6 d2.eat(); 7 }
1 Object o = myArrayList.get(0); 2 Dog d1 = (Dog) o; //将类型转换成Dog 3 d1.eat(); 4 if (o instanceof Dog) { 5 Dog d2 = (Dog) o; 6 d2.eat(); 7 }