测试Vditor😄
测试用例

tips:success
二号
// 初始容量,默认 16
static final int DEFAULT_INITIAL_CAPACITY = 1 << 4;
// 默认负载因子,控制扩容阈值
static final float DEFAULT_LOAD_FACTOR = 0.75f;
// 链表长度达到8时转换为红黑树
static final int TREEIFY_THRESHOLD = 8;
// 红黑树节点数小于6时退化为链表
static final int UNTREEIFY_THRESHOLD = 6;
// 存储键值对的数组
transient Node<K,V>[] table;
// 当前存储的键值对数量
transient int size;