public class Test6 { //测试类
public static void main(String args[]){
PetShop shop = new PetShop();
shop.add(new Cat("wang",20));
shop.add(new Cat("ming",10));
shop.add(new Dog("wang",20));
shop.add(new Dog("ming",10));
Link all = shop.search("wang");
Object[] obj = all.toArray();
for(int x = 0 ; x < obj.length ; x ++){
System.out.println(obj[x]);
}
}
}
class Link{