java.util.TreeMap.remove()


描述

remove(Object key) 方法用于如果存在这个TreeMap中移除该键的映射。

声明

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

public V remove(Object key)

参数

key - 这是应该删除映射的关键。

返回值

方法调用返回与key关联的先前值,如果没有key的映射,则返回null。

异常

ClassCastException - 如果无法将指定的键与当前映射中的键进行比较,则抛出此异常。

NullPointerException - 如果指定的键为null并且此映射使用自然排序,或者其比较器不允许空键,则抛出此异常。

实例

以下示例显示了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}