Online Java Compiler By
JavaTpoint.com
import java.util.*; public class CollectionsSynchronizedNavigableSetExample1 { public static void main(String[] args) { NavigableSet
set = new TreeSet<>(); set.add("Instagram"); set.add("JavaTpoint"); set.add("Facebook"); set.add("Google"); Set
synset = Collections.synchronizedNavigableSet(set); System.out.println("Synchronized navigable set is :" + synset); } }
Output