Map 基础用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Map 基础用法相关的知识,希望对你有一定的参考价值。

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

public class Test {

	public static void main(String[] args) {
		
		Map<String, Object> map = new HashMap<String, Object>();
		map.put("hah", 123);
		map.put("aa", 12314);
		map.put("xu", "123");
//		map.clear();
		Object object = map.get("hah");
		System.out.println("map.get:" + object);
		
		boolean containsKey = map.containsKey("hah");
		System.out.println("map.containsKey:" + containsKey);
		
		int hashCode = map.hashCode();
		System.out.println("map.hashCode:" + hashCode);
		
		boolean empty = map.isEmpty();
		System.out.println("map.isEmpty:" + empty);
		
		Set<String> keySet = map.keySet();
		System.out.println("map.keySet:" + keySet);

		Object remove = map.remove("xu");
		System.out.println("map.keySet:" + map.keySet());
		
		int size = map.size();
		System.out.println("map.size:" + size);
		
		Collection<Object> values = map.values();
		System.out.println("map.values:" + values);
		
		Set<String> keySet2 = map.keySet();
		System.out.println("map.keySet2:" + keySet2);
		
		Map<String, Object> map1 = new HashMap<String, Object>();
		map1.put("aa", "123");
		map1.put("bb", 234);
		
		Map<String, Object> map2 = new HashMap<String, Object>();
		map2.put("aa", "123");
		map2.put("bb", 234);
		boolean equals2 = map1.equals(map2);
		System.out.println("map2.equals:" + equals2);
	}
}

  

map.get:123
map.containsKey:true
map.hashCode:163837
map.isEmpty:false
map.keySet:[aa, hah, xu]
map.keySet:[aa, hah]
map.size:2
map.values:[12314, 123]
map.keySet2:[aa, hah]
map2.equals:true

  

以上是关于Map 基础用法的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 加载源图像固定用法(代码片段,不全)

java基础(15)----stream().map().collect()用法(转)

CSP核心代码片段记录

将多个输出中的hls属性设置为单独的片段代码

js中in运算符,forEach与map的用法-基础知识总结------彭记(016)

SQL Select 语句的用法