我的 Arraylist 包含 9 个人。每个人都有一个 String 类型的 name 值、一个 int 类型的 age 值和一个 Enum 类型的值(TV、SMARTPHONE、CAR)。我必须创建实现一个根据产品名称查找名称的方法。如果 arrayListName 包含 SMARTPHONE,则返回所有带有智能手机的名称。
public void showByProduct(Product SMARTPHONE) {
public void showByProductName(Product SMARTPHONE) {
if (arrayListName.contains(SMARTPHONE))
System.out.println("found"+nameofowner);
else {
System.out.println("not found");
}
}