public class FlatList<T> extends AbstractList<T> implements Iterable<T>
modCount| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
add(T t) |
boolean |
addAll(Collection<? extends T> c) |
T |
get(int index) |
Iterator<T> |
iterator() |
T |
set(int index,
T element) |
int |
size() |
Object[] |
toArray() |
<T1> T1[] |
toArray(T1[] a) |
add, addAll, clear, equals, hashCode, indexOf, lastIndexOf, listIterator, listIterator, remove, removeRange, subListcontains, containsAll, isEmpty, remove, removeAll, retainAll, toStringforEach, spliteratorcontains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, sort, spliteratorparallelStream, removeIf, streampublic boolean add(T t)
add 在接口中 Collection<T>add 在接口中 List<T>add 在类中 AbstractList<T>public boolean addAll(Collection<? extends T> c)
addAll 在接口中 Collection<T>addAll 在接口中 List<T>addAll 在类中 AbstractCollection<T>public int size()
size 在接口中 Collection<T>size 在接口中 List<T>size 在类中 AbstractCollection<T>@NonNull public Object[] toArray()
toArray 在接口中 Collection<T>toArray 在接口中 List<T>toArray 在类中 AbstractCollection<T>@NonNull public <T1> T1[] toArray(T1[] a)
toArray 在接口中 Collection<T>toArray 在接口中 List<T>toArray 在类中 AbstractCollection<T>Copyright © 2025. All rights reserved.