Java集合容器

package rongqi;

import java.util.*;

import java.util.HashSet;

public class setrongqi{
    static HashSet<String> notes = new HashSet<String>();
    public static void main(String args[]) {
        notes.add("first");
        notes.add("second");
        notes.add("first"); //set表示集合,则有集合的无序性和不重复性
        //即:没有顺序,没有相同元素

        System.out.println(notes);
    }
    
}
上一篇:【Notes】# 使用Github+hexo创建个人博客


下一篇:Cpp primer plus notes