1

我很新Java,我正在使用BlueJ. 为了使我的程序正常工作,我需要:

    //  Insert code here to perform a sequence of
    //  interactive transactions with the user.
    //  The user enters an item number and the program
    //  either displays the item or prints an error message
    //  if the item is not found.  The program terminates
    //  when the user enters zero as the item number.

不幸的是,我似乎无法让程序运行。希望有人可以帮助我。

这是class Program2需要循环的:

import java.util.*;

public class Program2 {
    public static void main(String[] args) {
        Scanner kbd = new Scanner(System.in);
        Catalog store = new Catalog(3);
        int itemnum = 0;
        Item item;

        try {
            store.insert
              (new Music(1111, "Gold", 12.00, "Abba"));
            store.insert
              (new Movie(2222, "Mamma Mia", 16.00, "Meryl Streep"));
            store.insert
              (new Book(3333, "DaVinci Code", 8.00, "Dan Brown"));
              store.insert
            (new Music(4444, "Legend", 15.00, "Bob Marley"));
            } catch (CatalogFull exc) {
                System.out.println(exc);
            }


        //  Insert code here to perform a sequence of
        //  interactive transactions with the user.
        //  The user enters an item number and the program
        //  either displays the item or prints an error message
        //  if the item is not found.  The program terminates
        //  when the user enters zero as the item number.

        itemnum = kbd.nextInt();
        while (itemnum == 0) {
            item = store.find(itemnum);
            if (item != null) {
                System.out.print(itemnum);
            } else {
                System.out.printf("%s was not found.%n", item);
            }
            System.out.println();
            System.out.print("Player (0 to exit)? ");
            itemnum = kbd.nextInt();
        }
    }
}

目前,当前错误在“(itemnum)”的循环中说:

unreported exception ItemNotFound; must be caught or declared to be thrown

话虽如此,我怀疑这不是唯一的问题,而且我没有正确执行程序的这一部分。希望有人可以帮助我。先感谢您。

以下是其他一些可能有用也可能没用的类:

这是class ItemNotFound

// This exception is thrown when searching for an item
// that is not in the catalog.
public class ItemNotFound extends Exception {
    public ItemNotFound(int id) {
        super(String.format("Item %d was not found.", id));
    }
}

这是class CatalogFull

// This exception is thrown when trying to insert an item
// when the catalog is full.
public class CatalogFull extends Exception {
    public CatalogFull() {
        super("The catalog is full.");
    }
}

这是class Catalog

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 == list[pos].getItemNumber()){
                return list[pos];
            }
        }
        throw new ItemNotFound(id);
        }
}

这是class Item

public class Item {
    private int itemnum;
    private String title;
    private double price;

    // Construct a new item object.
    public Item(int id, String t, double p) {
        itemnum = id;
        title = t;
        price = p;
    }

    // Return the item number of this item.
    public int getItemNumber() {
        return itemnum;
    }

    // Return the item type. This is overridden in subclasses.
    public String getItemType() {
        return "Item";
    }

    // Return a printable String represenation of this item.
    public String toString() {
        String line1, line2, line3, line4, out;
        String itemtype = this.getItemType();
        line1 = String.format("Item number: %d%n", itemnum);
        line2 = String.format("Item type:   %s%n", itemtype);
        line3 = String.format("Item title:  %s%n", title);
        line4 = String.format("Item price:  %.2f%n", price);
        out = line1 + line2 + line3 + line4;
        return out;
    }
}
4

2 回答 2

1

因为您定义了这样的方法,以便在找不到 Item 时find()抛出异常。ItemNotFound

   public Item find(int id) throws ItemNotFound {

编译器告诉该方法find() 可能会抛出Exception,请采取必要的步骤。

所以你需要把这条线放进 item = store.find(itemnum);try catch block,然后处理它。

所以,

try{

     item = store.find(itemnum);

} catch (ItemNotFound e){

//handle it

}
于 2013-10-03T06:19:00.603 回答
1
item = store.find(itemnum); //here you are finding the item 

您的 find(int id) 方法抛出 ItemNotFound 异常。我们需要在这里处理 ItemNotFound 异常。

    itemnum = kbd.nextInt();
    while (itemnum == 0) {
      try{
        item = store.find(itemnum);

          if (item != null) {
             System.out.print(itemnum);
          } 
        } catch (ItemNotFound e){
            System.out.println(" Item  was not found with id :"+ itemnum);
        }
        System.out.println();
        System.out.print("Player (0 to exit)? ");
        itemnum = kbd.nextInt();
    }
于 2013-10-03T06:26:10.590 回答