解决方法
您可以使用
List.subList()
来查看原始列表的尾部:
List<E> tail = l.subList(Math.max(l.size() - 3,0),l.size());
这里,当l包含少于三个元素时,Math.max()会处理这种情况.