Home
Cloud
Big Data
CI
Install
Samples
Java
Ubuntu
Maven
Archive
Java
|
LinkedHashSet
Notes
Example
Notes
Ordered collection
null elements allowed
Duplicates elements not allowed (hash code)
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
© 2010-2022
mti
tek