import java.util.SortedSet; import java.util.TreeSet; public class Test { public static void main(String[] args) { TreeSet<Integer> map = new TreeSet<Integer>(); map.add(1); map.add(2); map.add(4); map.add(7); SortedSet<Integer> smap = map.subSet(2,7); map.add(5); map.add(9); System.out.println(smap); } }
import java.util.TreeSet;
public class Test {
public static void main(String[] args) {
TreeSet<Integer> map = new TreeSet<Integer>();
map.add(1);
map.add(2);
map.add(4);
map.add(7);
SortedSet<Integer> smap = map.subSet(2,7);
map.add(5);
map.add(9);
System.out.println(smap);
}
Oracle Certified Professional Java Programmer
Access: Public Instant Grading
Jobilize.com uses cookies to ensure that you get the best experience. By continuing to use Jobilize.com web-site, you agree to the Terms of Use.