这是2019年第17周周报。
classloader工作原理
transient关键字:
保证字段不被序列化,例如hashmap里的modCount,用来判断ConcurrentModificationException
:1
2
3
4
5
6
7
8
9if (size > 0 && (tab = table) != null) {
int mc = modCount;
for (int i = 0; i < tab.length; ++i) {
for (Node<K,V> e = tab[i]; e != null; e = e.next)
action.accept(e);
}
if (modCount != mc)
throw new ConcurrentModificationException();
}- 构建vue js开发环境
学习mysql
- 初次遇见webpack
学习vue js
- axios的使用记录