当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java SortedMap remove()用法及代码示例


Java中SortedMap接口的remove()方法用于从映射中删除键的映射(如果该映射中存在键)。

用法:

V remove(Object key)

参数:此方法具有唯一要从映射中删除其映射的参数键。


返回值:此方法返回此SortedMap先前与该键关联的值;如果SortedMap不包含该键的映射关系,则返回null。

注意:SortedMap中的remove()方法是从Java中的Map接口继承的。

以下示例程序旨在说明remove()方法的实现:

示例1:

// Java code to show the implementation of 
// remove method in SortedMap interface 
  
import java.util.*; 
  
public class GfG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
  
        // Initializing a SortedMap 
        SortedMap<Integer, String> map 
            = new TreeMap<>(); 
        map.put(1, "One"); 
        map.put(3, "Three"); 
        map.put(5, "Five"); 
        map.put(7, "Seven"); 
        map.put(9, "Nine"); 
        System.out.println(map); 
  
        map.remove(3); 
  
        System.out.println(map); 
  
        // If it doesn't exists, returns 
        // null and does not afects the map 
        map.remove(2); 
  
        System.out.println(map); 
    } 
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine}
{1=One, 5=Five, 7=Seven, 9=Nine}
{1=One, 5=Five, 7=Seven, 9=Nine}

示例2:下面的代码显示了put()的实现。

// Java code to show the implementation of 
// remove method in SortedMap interface 
  
import java.util.*; 
  
public class GfG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
  
        // Initializing a SortedMap 
        SortedMap<String, String> map 
            = new TreeMap<>(); 
  
        map.put("1", "One"); 
        map.put("3", "Three"); 
        map.put("5", "Five"); 
        map.put("7", "Seven"); 
        map.put("9", "Nine"); 
        System.out.println(map); 
  
        map.remove("3"); 
  
        System.out.println(map); 
    } 
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine}
{1=One, 5=Five, 7=Seven, 9=Nine}

参考:https://docs.oracle.com/javase/7/docs/api/java/util/Map.html#put(K, %20V)



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 SortedMap remove() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。