NavigableMap 中的 florrEntry() 方法


NavigableMap 的 floorEntry() 方法返回與小於或等於給定鍵的最大鍵相關聯的鍵值對映

以下是用 floorEntry() 方法的一個示例 −

示例

線上試用

import java.util.*;
public class Demo {
   public static void main(String[] args) {
      NavigableMap<Integer, String> n = new TreeMap<Integer, String>();
      n.put(5, "Tom");
      n.put(9, "John");
      n.put(14, "Jamie");
      n.put(1, "Tim");
      n.put(4, "Jackie");
      n.put(15, "Kurt");
      n.put(19, "Tiger");
      n.put(24, "Jacob");
      System.out.println("NavigableMap elements...
"+n);       System.out.println("
Floor Entry = "+n.floorEntry(5));    } }

輸出

NavigableMap elements...
{1=Tim, 4=Jackie, 5=Tom, 9=John, 14=Jamie, 15=Kurt, 19=Tiger, 24=Jacob}

Floor Entry 5=Tom

更新日期: 30-7-2019

147 次瀏覽

開啟您的 職業生涯

透過完成課程獲取認證

開始操作
廣告
© . All rights reserved.