标签: java arraylist
对于ArrayList,我们有:
public boolean add(E e) {
但是要删除我们:
public boolean remove(Object o) {
为什么不呢?:
public boolean remove(E e) {