我有这个方法:
public User findById(String name)
{
for (User u : list)
{
if (u.getFirstName() == name)
{
return u;
}
}
return null; // or empty User
}
我如何在我的窗口类中编写一个方法,以便我可以打印出我找到的用户?
这就是我得到的。(认为我很遥远)
public void findCustomer()
{
String firstname = findCustomerField.getText();
if(!firstname.equals(""))
{
String result = list.findById(firstname);
outputText.setText(result);
}
}