当我需要一种在 ArrayList 中轻松识别 ArrayList 的方法时,我只需将标识符放在 0 索引中,然后使用循环打印出所有零索引。现在我想知道是否有办法让嵌套的 ArrayLists 有名字。
例如:
ListOfLists.add( new ArrayList<String>() );
ListOfLists.get(ListOfLists.size() -1).add("someIdentifierHumansCanRead");
有什么办法可以ListOfLists.add(new ArrayList<String>())
做到
ListOfLists.add(ArrayList someIdentifierHumansCanRead = new ArrayList<String>)
吗?
或者这完全是荒谬的?