我一般需要泛型方法和泛型方面的帮助。
这是我坚持的规范:
在上面的 MyPets 类中,添加一个以 T 作为参数的方法。此方法称为 myGenericMethod,将调用 makeNoise。在此方法中为您的两只宠物调用 makeNoise 方法。
问题是如何从 Animal Class(非泛型类)调用 makeNoise 方法。我必须使用反射吗?
public class MyPets<T>{
//creating the myGenericMethod with T as its parameter.
public void myGenericMethod(T t){
// How do I call the makeNoise() from Animal class here?
}
}
谢谢。