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