Java TreeSet last()方法

java.util.TreeSet.last() 方法用于返回TreeSet中当前的最后一个(最高)元素。

1 语法

public E last()

2 参数

3 返回值

返回当前在此集合中的最后一个(最高)元素。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.TreeSet.last()方法的例子
 */
import java.util.TreeSet;

public class Demo {
    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

热门文章

优秀文章