double cannot be dereferenced for equals and compareTo (java)

随声附和 提交于 2019-12-13 22:41:48

问题


public class Item implements Comparable
{
    private String name, category;
    private int quantity;
    private double price;

    public Item(String nam,String cate,int quant,double pric)
    {
        name = nam;
        category = cate;
        quantity = quant;
        price = pric;
    }

    public String toString()
    {
        return name + ", " + category + ", " + quantity + ", " + price;
    }

    public boolean equals(Object other)
{
    if (price == ((Item)other).getPrice())
    return true;
    else
    return false;
}


    public String getName()
    {
        return name;
    }

    public String getCategory()
    {
        return category;
    }

    public int getQuantity()
    {
        return quantity;
    }

    public double getPrice()
    {
        return price;
    }

    public int compareTo(Object other)
    {
        int result;

        String otherPrice = ((Item)other).getPrice(); 
        String otherCategory = ((Item)other).getCategory();

        if (price.equals(otherPrice)) //Problem Here
            result = category.compareTo(otherCategory);
        else
            result = price.compareTo(otherPrice);
        return result;
    }
}

-------------------------------

at points //problem here. I get the compile error saying that doubles cannot be dereferenced. I understand that doubles are of primitive type, but I still don't fully understand how to use them in a compareTo method. So after overriding the equals method, how do I use it in the compareTo method? I want to first compare price. If price equals otherPrice, category must be compared next.


回答1:


equals() as defined compares the price of items, so the line should read:

if (this.equals(other))


来源:https://stackoverflow.com/questions/28550438/double-cannot-be-dereferenced-for-equals-and-compareto-java

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!