Online Java Compiler By
JavaTpoint.com
import java.util.*; public class CollectionsEmptySetExample3 { public static void main(String[] args) { //Create an empty Set Set
empSet = Collections.emptySet(); empSet.add(1); empSet.add(2); System.out.println("Created empty immutable Set: "+empSet); } }
Output