Set集合重复性?

2020-05-17 16:02:27来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

Set集合重复性?

今天学习了一下集合类的知识,练习Set的时候发现

1*Set集合允许重复的值插入,但是重复的值会被覆盖;

2*List集合允许重复的值插入,但是重复的值会不会被覆盖;

import java.util.*;
public class Test14702 {

    public static void main(String[] args) {
        Scanner in=new Scanner(System.in);
        int len=in.nextInt();
        int ar[]=new int[len];
        Set<Integer> s=new TreeSet<>();
        for(int i=0;i<4;i++) {
            int d=in.nextInt();
            s.add(d);
            ar[i]=d;
        }
        Iterator<Integer> it=s.iterator();
        System.out.println("All Sets:");
        while(it.hasNext()) {
            System.out.println(it.next());
        }
    }
}

console:

4
7 7 3 2
All Sets:
2
3
7


原文链接:https://www.cnblogs.com/RorinL/p/12907257.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:用6块钱将tomcat映射到外网/公网(花生壳+tomcat)

下一篇:JSP+Servlet+JDBC+mysql实现的学生成绩管理系统