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


Java TreeMap firstKey()用法及代码示例


TreeMap类firstKey()方法

  • firstKey() 方法可在java.util包。
  • firstKey() 方法用于返回此 TreeMap 中存在的具有最小键值的第一个键元素。
  • firstKey() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • firstKey() 方法可能在返回第一个键值最低的键元素时抛出异常。
    无此类元素异常:当此 TreeMap 为“空白”时可能会抛出此异常。

用法:

    public Key firstKey();

参数:

  • 它不接受任何参数。

返回值:

该方法的返回类型是Key,它检索具有最低键值的第一个键元素。

例:

// Java program to demonstrate the example 
// of Key firstKey() method of TreeMap 

import java.util.*;

public class FirstKeyOfTreeMap {
    public static void main(String[] args) {
        // Instantiates a TreeMap object
        TreeMap < Integer, String > tree_map = new TreeMap < Integer, String > ();

        // By using put() method is to add
        // key-value pairs in a TreeMap
        tree_map.put(20, "C");
        tree_map.put(50, "C++");
        tree_map.put(30, "JAVA");
        tree_map.put(10, "PHP");
        tree_map.put(60, "SFDC");

        // Display TreeMap 
        System.out.println("TreeMap:" + tree_map);

        // By using firstKey() method is to return
        // the first least key value
        // element exists in this TreeMap
        System.out.println("tree_map.firstKey():" + tree_map.firstKey());
    }
}

输出

TreeMap:{10=PHP, 20=C, 30=JAVA, 50=C++, 60=SFDC}
tree_map.firstKey():10


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java TreeMap firstKey() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。