当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.TreeSet.last()用法及代码示例



描述

这个last()方法用于返回此集合中当前的最后一个(最高)元素。

声明

以下是声明java.util.TreeSet.last()方法。

public E last()

参数

NA

返回值

方法调用返回此集合中当前的最后一个(最高)元素。

异常

NoSuchElementException- 如果该集合为空,则抛出此异常。

示例

下面的例子展示了 java.util.TreeSet.last() 方法的用法。

package com.tutorialspoint;

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 

相关用法


注:本文由纯净天空筛选整理自 java.util.TreeSet.last() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。