我有这两种方法来寻找客户。如何从列表中删除我刚刚找到的客户?我正在使用 arrayList 继承我的两种方法:
public User findById(int id)
{
for (User u : list)
{
if (u.getCustomerID() == id)
{
return u;
}
}
return null; // or empty User
}
和
public void findByID()
{
int customer = Integer.parseInt(findCustomerField.getText());
if(customer != 0)
{
User user = list.findById(customer);
outputText.setText(user.toString());
}
}