Online Java Compiler By
JavaTpoint.com
import java.util.*; public class CollectionsEmptySetExample2 { public static void main(String[] args) { //Create an empty Set Set
EmptySet = Collections.emptySet(); System.out.println("Created empty immutable Set: "+EmptySet); //Try to add elements EmptySet.add("A"); EmptySet.add("B"); } }
Output