摘要:
HashMap有一个名为Entry类的内部类,其中包含键和值。还有一个叫做next的东西,你稍后就会知道。 static class Entry<K,V> implements Map.Entry<K,V> { final K key; V value; Entry<K,V> next; final 阅读全文
摘要:
查看binlog名称 进入mysql show master log; #显示bin-log日志名称和大小。 show master status; #显示目前使用的bin-log加偏移信息。 show binlog event in 'master-bin.000003'; #查看bin-log里 阅读全文