Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
NavigableSet Class higher() method in Java
The higher() method in NavigableSet returns the least element strictly greater than the given element i.e. 35 here −
higher(35);
The following is an example to implement the higher method in Java −
Example
import java.util.NavigableSet;
import java.util.TreeSet;
public class Demo {
public static void main(String[] args) {
NavigableSet<Integer> set = new TreeSet<>();
set.add(10);
set.add(25);
set.add(40);
set.add(55);
set.add(70);
set.add(85);
set.add(100);
System.out.println("Returned Value = " + set.higher(35));
}
}
Output
Returned Value = 40
Advertisements