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


Java java.util.TreeMap.remove()用法及代碼示例



描述

這個remove(Object key)方法用於從此 TreeMap 中刪除此鍵的映射(如果存在)。

聲明

以下是聲明java.util.TreeMap.remove()方法。

public V remove(Object key)

參數

key- 這是應該刪除映射的關鍵。

返回值

方法調用返回與 key 關聯的先前值,如果沒有 key 的映射,則返回 null。

異常

  • ClassCastException- 如果指定的鍵無法與映射中的當前鍵進行比較,則拋出此異常。

  • NullPointerException- 如果指定的鍵為空並且此映射使用自然排序,或者其比較器不允許空鍵,則拋出此異常。

示例

下麵的例子展示了 java.util.TreeMap.remove() 的用法

package com.tutorialspoint;

import java.util.*;

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

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

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

      System.out.println("Value before modification:"+ treemap);

      // removing value at key 5
      System.out.println("Removed value:"+treemap.remove(5));
      System.out.println("Value after modification:"+ treemap);
   }    
}

讓我們編譯並運行上麵的程序,這將產生以下結果。

Value before modification:{1=one, 2=two, 3=three, 5=five, 6=six}
Removed value:five
Value after modification:{1=one, 2=two, 3=three, 6=six}

相關用法


注:本文由純淨天空篩選整理自 java.util.TreeMap.remove() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。