刷题笔记:1.ArrayList的remove()方法有两种,1⃣️remove(int index)删除下标索引处的元素2⃣️remove(object o)直接删除元素当传入参数为int类型时,调用方法1⃣️当传入参数为对象时,调用方法2⃣️