Java SortedSet last()方法
Java中SortedSet接口的last()方法用于返回最后一个,即当前这个集合中最高的元素。
语法 :
E last()
其中,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("Greatest element in set is : "
+ s.last());
}
}
输出
Greatest element in set is : 9
示例2 :
// Program to illustrate the last()
// 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.last();
}
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#last()