摘要:
一 mount选项使用noatime与nodiratime 这样会更快。 2.5.1. Mount Options: noatime and nodiratimeIt is generally recommended to mount GFS2 file systems with the noati 阅读全文
摘要:
import java.util.Arrays; import java.util.Iterator; public class ArrayList implements Iterable { public int size; public int current = 0; Object[] objects = new Object[2]; public voi... 阅读全文
摘要:
public class ArrayList { public int index = 0; Object[] objects = new Object[2]; public void add(Object o) { //当index超出最初定义数组的长度时,自动扩容 if(index == objects.length){ ... 阅读全文