我在A类中声明了这个静态方法,如下所示:
public static boolean staticMethod(List<Object> list)
我想按如下方式调用
List<String> list = new ArrayList<String>();
boolean b = A.staticMethod(list);
为什么不编译?
The method staticMethod(List<Object>) in the type ArrayListHelper is not applicable for the arguments (List<String>)
我想编写一个泛型方法,对包含Object子类的对象的List对象进行特定处理。
感谢。