java.util.TreeSet.last()方法实例
last() 方法用于返回当前在此集合中最后一个(最高)元素。
声明
以下是java.util.TreeSet.last()方法的声明。
public E last()
参数
-
NA
返回值
该方法调用返回当前最后一个(最高)元素在此set。
异常
-
NoSuchElementException--如果此集合为空,抛出此异常。
例子
下面的例子展示java.util.TreeSet.last()方法的使用。
package com.yiibai; import java.util.TreeSet; public class TreeSetDemo { public static void main(String[] args) { // creating a TreeSet TreeSet <Integer>treeadd = new TreeSet<Integer>(); // adding in the tree set treeadd.add(1); treeadd.add(13); treeadd.add(17); treeadd.add(2); // displaying the last highest element System.out.println("Last highest element: "+treeadd.last()); } }
现在编译和运行上面的代码示例,将产生以下结果。
Last highest element: 17