美文网首页js css html
Java--HashSet基本使用

Java--HashSet基本使用

作者: 李赫尔南 | 来源:发表于2022-10-27 17:15 被阅读0次

      大家在做下面练习时,重点体会“Set是无序、不可重复”的核心要点。
    【示例】HashSet的使用
    public class Test {
      public static void main(String[] args) {
        Set<String> s = new HashSet<String>();
        s.add("hello");
        s.add("world");
        System.out.println(s);
        s.add("hello");//相同的元素不会被加入
        System.out.println(s);
        s.add(null);
        System.out.println(s);
        s.add (null);
        System.out.println(s);
      }
    }
    输出:
      [world, hello]
      [world, hello]
      [null, world, hello]
      [null, world, hello]

    相关文章

      网友评论

        本文标题:Java--HashSet基本使用

        本文链接:https://www.haomeiwen.com/subject/vqyttdtx.html