A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

今天学习了一下集合类的知识,练习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

1 个回复

倒序浏览
以上内容转载自网络
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马