我是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;
}
}
答案 0 :(得分:1)
因为你定义了方法find()
,所以当没有找到Item时它会抛出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
}
答案 1 :(得分: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();
}