Java实现List数组的几种替代方案
Posted weiyinfu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java实现List数组的几种替代方案相关的知识,希望对你有一定的参考价值。
在Java中,禁止定义List<Integer>a[]
,这种List数组结构。
但是还是可以使用其它一些方式来实现列表数组。
一、使用Node把List包裹起来
public class GenericArray {
static class Node {
public ArrayList<Integer> x;
public Node() {
x = new ArrayList<Integer>();
}
}
public static void main(String[] args) {
Node[] a = new Node[10];
for (int i = 0; i < a.length; i++) {
a[i] = new Node();
for (int j = 0; j < i; j++) {
a[i].x.add(j);
}
}
for (int i = 0; i < a.length; i++) {
for (int j = 0; j < a[i].x.size(); j++) {
System.out.print(a[i].x.get(j));
}
System.out.println();
}
}
}
二、让Node继承List<Integer>
static class nodenode extends ArrayList<Integer> {
}
public static void main(String[] args) {
nodenode[] a = new nodenode[10];
for (int i = 0; i < 10; i++) {
a[i] = new nodenode();
for (int j = 0; j < i; j++) {
a[i].add(j);
}
}
for (int i = 0; i < a.length; i++) {
for (Integer j : a[i]) {
System.out.print(j + " ");
}
System.out.println();
}
}
三、使用List<List<>>
结构
略
以上是关于Java实现List数组的几种替代方案的主要内容,如果未能解决你的问题,请参考以下文章