1. ホーム
  2. java

[解決済み] Javaで「intをデリファレンスできない」と表示される。

2022-02-13 16:57:24

質問

私はJavaのかなり初心者で、BlueJを使っています。コンパイルしようとすると、この "Int cannot be dereferenced" というエラーがずっと出ます。 このエラーは、特に一番下の私のif文の中で起こっており、そこには "equals" はエラーであり "int cannot be dereferenced." と書かれています。どうしたらいいのか全く分からないので、何か支援が得られることを期待しています。

public class Catalog {
    private Item[] list;
    private int size;

    // Construct an empty catalog with the specified capacity.
    public Catalog(int max) {
        list = new Item[max];
        size = 0;
    }

    // Insert a new item into the catalog.
    // Throw a CatalogFull exception if the catalog is full.
    public void insert(Item obj) throws CatalogFull {
        if (list.length == size) {
            throw new CatalogFull();
        }
        list[size] = obj;
        ++size;
    }

    // Search the catalog for the item whose item number
    // is the parameter id.  Return the matching object 
    // if the search succeeds.  Throw an ItemNotFound
    // exception if the search fails.
    public Item find(int id) throws ItemNotFound {
        for (int pos = 0; pos < size; ++pos){
            if (id.equals(list[pos].getItemNumber())){ //Getting error on "equals"
                return list[pos];
            }
            else {
                throw new ItemNotFound();
            }
        }
    }
}

解決方法は?

id はプリミティブ型 int であり Object . ここでやっているように、プリミティブでメソッドを呼び出すことはできません。

id.equals

これを置き換えてみてください。

        if (id.equals(list[pos].getItemNumber())){ //Getting error on "equals"

        if (id == list[pos].getItemNumber()){ //Getting error on "equals"