當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。