• Home
  • LLMs
  • Python
  • Docker
  • Kubernetes
  • Java
  • Maven
  • All
  • About
Java | LinkedHashSet
  1. Notes
  2. Example

  1. Notes
    Ordered collection
    null elements allowed
    Duplicates elements not allowed (hash code)
  2. Example
    LinkedHashSet<String> lhs = new LinkedHashSet<>();
    
    lhs.add(null);
    lhs.add("ccc");
    lhs.add("bbb");
    lhs.add("bbb");
    lhs.add("aaa");
    lhs.add("aaa");
    lhs.add("aaa");
    
    lhs.forEach(System.out::println);
    Output:
    null
    ccc
    bbb
    aaa
© 2025  mtitek