大家好,谁能告诉我我哪里出错了?
这个类的基本目的是定义一个最喜欢的项目数组列表,在这种情况下是关于汽车的。汽车对象具有汽车名称和汽车 1-5 的评级。
您如何查看字符串是否等于汽车对象评级。我弄乱了将字符串或 int 与数组列表中的汽车对象进行比较的部分。我的 equals() 方法有什么问题?contains() 方法可以以同样的方式工作吗?
numberOfItemsOfRating 方法允许用户指定评级,因此该方法返回没有带有评级的汽车。searchForItems 方法检查指定的字符串描述是否与数组列表中的汽车名称匹配,因此返回数组列表中的汽车。
这是我使用构造函数和变量的两种方法的一瞥:
public class FavouriteItems
{
private ArrayList<Item> cars;
/**
* Constructor for objects of class FavouriteItems
*/
public FavouriteItems()
{
cars= new ArrayList<Item>();
}
/**
* Add a new Item to your collection
* @param newItem The Item object to be added to the collection.
*/
public void addToFavourites(Item newItem)
{
cars.add(newItem);
}
/**
* Count the number of Items with a given rating
* @return The number of Items (Item objects)
* whose rating is rating (could be 0).
* If the rating parameter is outside the valid
* range 1..5 then print an error message and return 0.
*/
public int numberOfItemsOfRating(int rating)
{
int counter = 0;
if(rating >= 1 && rating <=5)
{
for ( int i =0; i < cars.size(); i++)
{
int num = rating;
String al = Integer.toString(rating);
if(cars.get(i).equals(al))
{
counter++;
}
}
}
else
{
System.out.println("No cars match your ratings");
counter = 0;
}
return counter;
}
/**
* Find the details of a Item given its description
* @return Item object if its description is in the collection
* or null if there is no item with that description
*/
public Item searchForItem(String description)
{
for(int i=0; i<cars.size(); i++)
{
if(cars.equals(description))
{
return cars.get(i);
}
else
{
return null;
}
}
}
}