摘要:
理论:在Java中有很多类的它们之间含有继承关系,怎么判断他们的类加载顺序呢 father: package com.opendev.father; public class father { public father() { System.out.println("构造器father"); } 阅读全文
摘要:
其实HashMap就是一个Node数组,只是这个数组很奇怪它的每一个Node节点都有自己的下一个Node;这个是hashMap的Node的源码; static class Node<K,V> implements Map.Entry<K,V> { final int hash; final K ke 阅读全文