?侯捷老師 C++ 全系列八部曲(完結)
public boolean add(E e) {
? ? ? ?add(size(), e);
? ? ? ?return true;
? ?}
? ?public void add(int index, E element) {
? ? ? ?throw new UnsupportedOperationException();
? ?}
? ?public E remove(int index) {
? ? ? ?throw new UnsupportedOperationException();
? ?}}
標簽: