auto commit

This commit is contained in:
CyC2018 2018-03-29 21:06:52 +08:00
parent e767f105e6
commit 3ab18f6cf0

View File

@ -171,11 +171,7 @@ public class ArrayList<E> extends AbstractList<E>
implements List<E>, RandomAccess, Cloneable, java.io.Serializable
```
<<<<<<< HEAD
基于数组实现,保存元素的数组使用 transient 修饰,该关键字声明数组默认不会被序列化。这是 ArrayList 具有动态扩容特性因此保存元素的数组不一定都会被使用那么就没必要全部进行序列化。ArrayList 重写了 writeObject() 和 readObject() 来控制只序列化数组中有元素填充那部分内容。
=======
基于数组实现,保存元素的数组使用 transient 修饰,该关键字声明数组默认不会被序列化。这是 ArrayList 具有动态扩容特性因此保存元素的数组不一定都会被使用那么就没必要全部进行序列化。ArrayList 重写了 writeObject() 和 readObject() 来控制只序列化数组中有元素填充的那部分内容。
>>>>>>> 643953f9f9fa478bf713faedc019ff4659e60f14
```java
transient Object[] elementData; // non-private to simplify nested class access