| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/AvinandanBose/JavaCollectionFramework/main/HashSetDemo2.java | [Back] [Original] |
import java.util.HashSet;
public class HashSetDemo2 {
public static void main(String[] args) {
HashSet set = new HashSet();
set.add("A");
set.add("a");
set.add("B");
set.add("b");
System.out.println(set);
set.clear();
System.out.println(set);
}
}
| Web Proxy Viewer | New URL | Original Page |