本帖最后由 寐海流风 于 2014-6-13 21:09 编辑
张益达 发表于 2014-6-13 10:20
public class test {
public static void main(String[] args){
Integer[] in = {4,2,4,6,1,2, ...
通过我不懈的努力。我终于找到了自己满意的答案,现在将代码发到下面!还是谢谢你。不过遍历的转型我一开始就觉得这个不是最简化的方法。
public static void main(String[] args){
Integer[] in = {4,2,4,6,1,2,4,7,8};
List<Integer> list = new ArrayList<Integer>();
for(Integer i:in){
if(!list.contains(i)){
list.add(i);
}
}
Integer[] inte= list.toArray(new Integer[list.size()]);
System.out.print("{");
for(int x=0;x<inte.length;x++){
if(x<inte.length-1){
System.out.print(inte[x]+",");
}else{
System.out.println(inte[x]+"}");
}
}
}
} |