TreeSet with looping

In this article, we will see how to loop TreeSet in java Its very much common requirement to iterate or loop through TreeSet in java applications There are mainly 2 ways to loop through Treeset in java 1) Enhanced For loop 2) Iterator Let’s see each of these ways with an example 1) Enhanced For […]

Share this article on

Remove TreeSet elements

We can use remove() method of TreeSet to remove elements from TreeSet collection boolean remove(Object obj) Example import java.util.*; public class TreeSetRemoveExample { public static void main(String args[]) {   TreeSet<String> ts = new TreeSet<String>();   ts.add(“java”); ts.add(“c”); ts.add(“c++”); System.out.println("TreeSet before removing elements”); System.out.println(ts); ts.remove(“java”); System.out.println("TreeSet after removing elements”); System.out.println(ts); } } import java.util.*; public […]

Share this article on
< Previous Next >