解决方法
你可以使用
List#subList(int,int):
List<Integer> list = ... list = list.subList(10,list.size()); // creates a new list from the old starting from the 10th element
或者,由于subList创建了一个视图,每个修改都会影响原始列表,这可能更好:
List<Integer> list = ... list.subList(0,10).clear(); // clears the first 10 elements of list