我想实现一个带有签名的函数
static boolean checkAnyOutOfBoundary(int[] index,ArrayList<ArrayList<T>> list)
我想用其他自创类(DocScore)替换 T。我试图用 Object 代替 T。但是当我尝试实例化列表实例时,比如
ArrayList<ArrayList<Object>> DocScoreList = new ArrayList<ArrayList<Object>>();
for (int i = 0; i < index.length; i++)
DocScoreList.add(root.children.get(i).docList);
The type of root.children.get(i).docList is ArrayList<DocScore>
我无法将元素添加到 DocScoreList。有人知道我该如何实现吗?