Advertisement
Guest User

LinkedHashSet

a guest
Apr 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. import java.util.LinkedHashSet;
  2. public class Main
  3. {
  4.     public static void main(String[] args) {
  5.         LinkedHashSet linkedHashSet = new LinkedHashSet<>();
  6.         linkedHashSet.add("5");
  7.         linkedHashSet.add("3");
  8.         linkedHashSet.add("1");
  9.        
  10.         System.out.println(linkedHashSet);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement