怎么样删除map中指定值为value所有元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么样删除map中指定值为value所有元素相关的知识,希望对你有一定的参考价值。
上面的是代码,下面的是运行结果
祝:学习进步!
参考技术A HashMap的结构是<key, value>想要移除某个元素,只要移除某个key下面的value即可。
如:
package yiibai.com;
import java.util.*;
public class HashMapDemo
public static void main(String args[])
// 构造hashmap
HashMap newmap = new HashMap();
// 给hashmap赋值
newmap.put(1, "tutorials");
newmap.put(2, "point");
newmap.put(3, "is best");
System.out.println("Values before remove: "+ newmap);
// 移除key为2的value
newmap.remove(2);
System.out.println("Values after remove: "+ newmap);
参考技术B HashMap的结构是<key, value>
想要移除某个元素,只要移除某个key下面的value即可。
如:
package yiibai.com;
import java.util.*;
public class HashMapDemo
public static void main(String args[])
// 构造hashmap
HashMap newmap = new HashMap();
// 给hashmap赋值
newmap.put(1, "tutorials");
newmap.put(2, "point");
newmap.put(3, "is best");
System.out.println("Values before remove: "+ newmap);
// 移除key为2的value
newmap.remove(2);
System.out.println("Values after remove: "+ newmap);
参考技术C Map<String, String> map = new HashMap<String, String>();
map.put("1", "123");
map.put("2", "456");
map.put("3", "789");
Collection<String> collect = map.values();
System.out.println(map);
if (collect.contains("123") == true)
collect.remove("123");
System.out.println(map); 参考技术D 由于不太懂java,求详细代码,会加分
map中指定key的值能取出来吗
参考技术A 可以的public static void main(String[] args)
Map<String, String> map = new HashMap<String, String>();
map.put("1", "v1");
map.put("2", "v2");
for (String key : map.keySet())
System.out.println("key= " + key + " and value= " + map.get(key));
本回答被提问者采纳
以上是关于怎么样删除map中指定值为value所有元素的主要内容,如果未能解决你的问题,请参考以下文章