`

一个Map的工具类

    博客分类:
  • java
阅读更多
package com.huanglq.util;

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

/**
 * 这是一个用1.5写的Map的工具类
 * 
 * @author huanglq
 * 
 * @param <K>
 * @param <V>
 */
public class MapUtil<K, V> {

	/**
	 * 这个方法只用于存放一个K-V的Map
	 * 
	 * @param map
	 * @return
	 */
	@SuppressWarnings(value = { "unchecked" })
	public K getMapKey(Map<K, V> map) {
		Set set = map.keySet();
		Iterator iterator = set.iterator();
		if (iterator.hasNext()) {
			return (K) iterator.next();
		}
		return null;
	}

	/**
	 * 获得Map中特定value的key值
	 * 
	 * @param map
	 * @param value
	 * @return
	 */
	@SuppressWarnings(value = { "unchecked" })
	public K getMapKeyFromValue(Map<K, V> map, V value) {
		Set set = map.keySet();
		K key = null;
		Iterator it = set.iterator();
		while (it.hasNext()) {
			key = (K) it.next();
			if (value.equals(map.get(key))) {
				return key;
			}
		}
		throw new NullPointerException("没有对应的Key值");
	}

	/**
	 * 测试
	 * 
	 * @param args
	 */
	public static void main(String[] args) {
		//这个Map要怎么样建都可以
		Map<Integer, String> map = new HashMap<Integer, String>();
		map.put(1, "one");
		map.put(2, "two");
		map.put(null, "three");
		//map.put(4, null);
		//map的value不能为空,不然就没意义,而且在用它时会出现java.lang.NullPointerException

		System.out.println(map.get(null));
		/*
		 * 输出 three
		 */
		
		MapUtil<Integer, String> mapUtil = new MapUtil<Integer, String>();
		// Integer a=(Integer)mapUtil.getMapKey(map);
		// System.out.println(a);
		
		Integer key = (Integer) mapUtil.getMapKeyFromValue(map, "two");
		System.out.println(key);
		/*
		 * 输出 2
		 */
		Integer key3 = (Integer) mapUtil.getMapKeyFromValue(map, "three");
		System.out.println(key3);
		/*
		 * 输出 null
		 */
		Integer key2 = (Integer) mapUtil.getMapKeyFromValue(map, "twoo");
		System.out.println(key2);
		/*
		 * Exception in thread "main" java.lang.NullPointerException: 没有对应的Key值
		 */
	}

}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics