Java SortedSet first()方法
Java中SortedSet接口的first()方法用于返回第一个,即当前这个集合中最低的元素。
语法 :
E first()
其中,E是这个集合维护的元素类型。
参数 :这个函数不接受任何参数。
返回值 :它返回当前集合中的第一个或最低的元素。
异常 :如果集合是空的,它会抛出 NoSuchElementException 。
以下程序说明了上述方法:
程序1 :
// A Java program to demonstrate
// working of SortedSet
import java.util.SortedSet;
import java.util.TreeSet;
public class Main {
public static void main(String[] args)
{
// Create a TreeSet and inserting elements
SortedSet<Integer> s = new TreeSet<>();
// Adding Element to SortedSet
s.add(1);
s.add(5);
s.add(2);
s.add(3);
s.add(9);
// Returning the lowest element from set
System.out.print("Lowest element in set is : "
+ s.first());
}
}
输出
Lowest element in set is : 1
示例2 :
// Program to illustrate the first()
// method of SortedSet interface
import java.util.SortedSet;
import java.util.TreeSet;
public class GFG {
public static void main(String args[])
{
// Create an empty SortedSet
SortedSet<Integer> s = new TreeSet<>();
// Trying to access element from
// empty set
try {
s.first();
}
catch (Exception e) {
// throws NoSuchElementException
System.out.println("Exception: " + e);
}
}
}
输出
Exception: java.util.NoSuchElementException
参考资料 : https://docs.oracle.com/javase/10/docs/api/java/util/SortedSet.html#first()