Map接口_HashMap常用方法[Java]


title: JavaMap接口_HashMap常用方法
top: false
date: 2020-03-28 14:52:42
author: JF
blog:https://www.huqifa.com/
tags:
- Java
- HashMap
categories:
- Java


JavaMap接口_HashMap常用方法

​ 现实生活中,我们经常需要成对存储某些信息。比如,我们使用的微信,一个手机号只能对应一个微信账户。这就是一种成对存储的关系。

​ Map就是用来存储“键(key)-值(Value)对”的。Map类中存储的“键值对”通过键来标识,所以“键对象”不能重复。

​ Map接口实现类有HashMap,TreeMap,HashTable,properties。

//源码
public interface Map<K, V> {
    // Query Operations

    /**
     * Returns the number of key-value mappings in this map.  If the
     * map contains more than {@code Integer.MAX_VALUE} elements, returns
     * {@code Integer.MAX_VALUE}.
     *
     * @return the number of key-value mappings in this map
     */

常见方法

  • Map中键不能重复,如果重复,新的会覆盖旧的。(是否重复是根据equals判断)
package cn.Map;
import java.util.HashMap;
import java.util.Map;
/**
 * 测试Map
 * @author HQF
 *
 */
public class TestMap {
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Employee e1 = new Employee(1001, "张三",100000);
		Employee e2 = new Employee(1001, "李四",100000);
		Employee e3 = new Employee(1001, "王五",100000);
		
		Map<Integer, Employee> map = new HashMap<>();
		
		map.put(1001, e1);
		map.put(1002, e2);
		map.put(1003, e3);
		
		Employee employee = map.get(1001);
		System.out.println(employee.getEname());	
	}
}
//雇员信息
class Employee{
	private int id;
	private String ename;
	private double salary;
	
	public Employee(int id, String ename, double salary) {
		super();
		this.id = id;
		this.ename = ename;
		this.salary = salary;
	}

	@Override
	public String toString() {
		// TODO Auto-generated method stub
		return "id:"+id+"name:"+ename+"salary:"+salary;
	}
	
	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getEname() {
		return ename;
	}

	public void setEname(String ename) {
		this.ename = ename;
	}

	public double getSalary() {
		return salary;
	}

	public void setSalary(double salary) {
		this.salary = salary;
	}
}

  • HashMap底层实现采用了哈希表,这是一种非常重要的数据结构。
  • 哈希表的基本结构就是“数组”+“链表”。

//Node源码
//说实话,看不懂!
    static class Node<K,V> implements Map.Entry<K,V> {
        final int hash;
        final K key;
        V value;
        Node<K,V> next;

        Node(int hash, K key, V value, Node<K,V> next) {
            this.hash = hash;
            this.key = key;
            this.value = value;
            this.next = next;
        }

        public final K getKey()        { return key; }
        public final V getValue()      { return value; }
        public final String toString() { return key + "=" + value; }

        public final int hashCode() {
            return Objects.hashCode(key) ^ Objects.hashCode(value);
        }

        public final V setValue(V newValue) {
            V oldValue = value;
            value = newValue;
            return oldValue;
        }

        public final boolean equals(Object o) {
            if (o == this)
                return true;
            if (o instanceof Map.Entry) {
                Map.Entry<?,?> e = (Map.Entry<?,?>)o;
                if (Objects.equals(key, e.getKey()) &&
                    Objects.equals(value, e.getValue()))
                    return true;
            }
            return false;
        }
    }

测试Hash算法

package cn.Map;
/**
 * 测试Hash算法
 * @author HQF
 *
 */
public class Test {
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		int  h = 25860399;
		int length = 16;
		myHash(h,length);
	}
	public static int myHash(int h,int length) {
		System.out.println(h&(length-1));
		//length为2的整数幂情况下,和取余的值一样。
		System.out.println(h%length);
		return h&(length-1);
	}
}
  • JDK8中,当链表长度大于8时,链表就转换为红黑树,这样大大提高了查找的效率。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值