由
尼克徐
发布于 2015年10月19日
| 更新于 2015年11月30日
我发现在这里贴代码很困难啊。无法看到换行。
用Mou软件排版后,贴上来也是如此。
因此很难贴我想贴的代码了...
测试:
public List<int[]> getThem() {
List<int[]> list1 = new ArrayList<int[]>();
......
for (int[] x : theList)
if (x[0] == 4)
list1.add(x);
return list1;
}