从数组列表中删除具有特定值的项目
我创建了一个对象列表,并让人们添加到其中:
ArrayList<Person> peeps = new ArrayList<Person>();
peeps.add(new Person("112", "John", "Smith"));
peeps.add(new Person("516", "Jane", "Smith"));
peeps.add(new Person("114", "John", "Doe"));
我正在尝试弄清楚如何通过ID号从列表中删除该人。因此,如果我想删除ID号为114的人,但现在没有删除它在列表中的位置,我该怎么办?