主帖
9 条回复
本论坛代码块MarkDown格式的显示问题
我发现在这里贴代码很困难啊。无法看到换行。
用Mou软件排版后,贴上来也是如此。
因此很难贴我想贴的代码了...
测试:
public List<int[]> getThem() {
List<int[]> list1 = new ArrayList<int[]>();
......
for (int[] x : theList)
if (x[0] == 4)
list1.add(x);
return list1;
}