How to declare and initialize a List?
本问题已经有最佳答案,请猛点这里访问。
我需要创建一个类的数组或列表。
我的班级
1 2 3 4 5 6 7 8 9 10 11 |
在C中,您可以通过
1 | List<TreeItem> list = new List<TreeItem>(); |
号
你如何在Java中做到这一点?
如果你需要一个数组列表
1 | List<TreeItem> list = new ArrayList<TreeItem>(); |
链表
1 | List<TreeItem> list = new LinkedList<TreeItem>(); |
号