Java TreeMap lastEntry() 方法



描述

Java TreeMap lastEntry() 方法用於返回與此對映中最大鍵關聯的鍵值對映,如果對映為空則返回 null。

宣告

以下是 java.util.TreeMap.lastEntry() 方法的宣告。

public Map.Entry<K,V> lastEntry()

引數

返回值

方法呼叫返回具有最大鍵的條目,如果此對映為空則返回 null。

異常

從整數、整數對的 TreeMap 獲取最後一個條目示例

以下示例演示了 Java TreeMap lastEntry() 方法的使用,以獲取對映中最大鍵關聯的對映。我們建立了一個整數、整數對的 TreeMap 物件。然後添加了一些條目,並使用 lastEntry() 列印最大鍵的值。

package com.tutorialspoint;

import java.util.TreeMap;

public class TreeMapDemo {
   public static void main(String[] args) {

      // creating tree map 
      TreeMap<Integer, Integer> treemap = new TreeMap<>();

      // populating tree map
      treemap.put(2, 2);
      treemap.put(1, 1);
      treemap.put(3, 3);
      treemap.put(6, 6);
      treemap.put(5, 5);

      // getting the value with greatest key      
      System.out.println("Checking last entry");
      System.out.println("Value is: "+ treemap.lastEntry());
   }    
}

輸出

讓我們編譯並執行以上程式,這將產生以下結果。

Checking last entry
Value is: 6=6

從整數、字串對的 TreeMap 獲取最後一個條目示例

以下示例演示了 Java TreeMap lastEntry() 方法的使用,以獲取對映中最大鍵關聯的對映。我們建立了一個整數、字串對的 TreeMap 物件。然後添加了一些條目,並使用 lastEntry() 列印最大鍵的值。

package com.tutorialspoint;

import java.util.TreeMap;

public class TreeMapDemo {
   public static void main(String[] args) {

      // creating tree map 
      TreeMap<Integer, String> treemap = new TreeMap<>();

      // populating tree map
      treemap.put(2, "two");
      treemap.put(1, "one");
      treemap.put(3, "three");
      treemap.put(6, "six");
      treemap.put(5, "five");

      // getting the value with greatest key      
      System.out.println("Checking last entry");
      System.out.println("Value is: "+ treemap.lastEntry());
   }    
}

輸出

讓我們編譯並執行以上程式,這將產生以下結果。

Checking last entry
Value is: 6=six

從整數、物件對的 TreeMap 獲取最後一個條目示例

以下示例演示了 Java TreeMap lastEntry() 方法的使用,以獲取對映中最大鍵關聯的對映。我們建立了一個整數、Student 對的 TreeMap 物件。然後添加了一些條目,並使用 lastEntry() 列印最大鍵的值。

package com.tutorialspoint;

import java.util.TreeMap;

public class TreeMapDemo {
   public static void main(String[] args) {

      // creating tree map 
      TreeMap<Integer, Student> treemap = new TreeMap<>();

      // populating tree map
      treemap.put(2, new Student(2, "Robert"));
      treemap.put(1, new Student(1, "Julie"));  
      treemap.put(3, new Student(3, "Adam"));
      treemap.put(6, new Student(6, "Julia"));
      treemap.put(5, new Student(5, "Tom"));

      // getting the value with greatest key      
      System.out.println("Checking last entry");
      System.out.println("Value is: "+ treemap.lastEntry());
   }    
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
   @Override
   public boolean equals(Object obj) {
      if(obj == null) return false;
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }
}

輸出

讓我們編譯並執行以上程式,這將產生以下結果。

Checking last entry
Value is: 6=[ 6, Julia ]
java_util_treemap.htm
廣告

© . All rights reserved.