Class BoundedList<E>

java.lang.Object
Type Parameters:
E - 元素类型
All Implemented Interfaces:
Iterable<E>, Collection<E>, List<E>, SequencedCollection<E>, BoundedCollection<E>, Wrapper<List<E>>, Provider

public class BoundedList<E> extends ListWrapper<E> implements BoundedCollection<E>
指定边界大小的List 通过指定边界,可以限制List的最大容量
Since:
Java 17+
Author:
Kimi Liu