摘要: 题目:把一个数组里的数组合全部列出,比如1 2 列出来为1, 2, 12, 21代码: 1 import java.util.*; 2 import java.io.*; 3 public class Test { 4 5 public static void main(String[] args) throws Exception{ 6 String[] array = new String[]{ 7 "1","2","3" 8 }; 9 listAll(Arrays.asList(array)... 阅读全文
posted @ 2013-12-31 22:06 soul390 阅读(139) 评论(0) 推荐(0) 编辑