Java 中 SortedSet last()方法
原文:https://www . geesforgeks . org/sorted set-last-method-in-Java/
Java 中 SortedSet 接口的 last()方法用于返回最后一个,即当前在这个集合中最高的元素。 语法 :
E last()
其中,E 是该集合维护的元素类型。 参数:本功能不接受任何参数。 返回值:返回集合中当前最后或最高的元素。 异常:如果集合为空,则抛出 NoSuchElementException 。 以下程序举例说明上述方法: 程序 1 :
Java 语言(一种计算机语言,尤用于创建网站)
// 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());
}
}
Output:
Greatest element in set is : 9
节目 2 :
Java 语言(一种计算机语言,尤用于创建网站)
// 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);
}
}
}
Output:
Exception: java.util.NoSuchElementException
参考:https://docs . Oracle . com/javase/10/docs/API/Java/util/sorted set . html # last()T4】
版权属于:月萌API www.moonapi.com,转载请注明出处