0

スキャナーを作成すると、このエラーが発生するようです。エラー名を検索してこれを解決しようとしましたが、これまでのところメッセージの表示を停止できませんでした。

コード:

import java.util.Scanner;
public class PrintQueue {
    //Instance variables
    private Queue<Job> pq;
    //Constructor
    public PrintQueue() {
        pq = new Queue<Job>();
    }
    //Adds a job object to the end of the queue
    public void lpr(String owner, int jobId) {
        Job j = new Job(owner, jobId);
        pq.enqueue(j);
    }
    //Enumerates the queue
    public void lpq() {
        Job curr = pq.first();
        for (int i = 0; i < pq.size(); i++) {
            System.out.println(curr);
            curr = pq.next();
        }
    }
    //Removes the first entry in the queue if the input integer matches the integer contained within the job object
    public void lprm(int jobId) {
        if (pq.first().getJobId() == (jobId))
            pq.dequeue();
        else 
            System.out.println("Unable to find jobId.");
    }
    //Removes all objects that contain the input String
    public void lprmAll(String owner) {
        Job curr = pq.first();
        for (int i = 0; i < pq.size(); i++) {
            if (curr.getOwner().equals(owner)) 
                pq.dequeue();
            curr = pq.next();
        }
    }
    //Demo 
    public static void main(String[] args) {
        Scanner k = new Scanner(System.in);
        PrintQueue myPQ = new PrintQueue();
        String name;
        int id;
        for (int i = 1; i <= 5; i++) {
            System.out.print("Enter owner and id: ");
            name = k.next();
            id = k.nextInt();
            myPQ.lpr(name, id);
        }
        System.out.println("Print Queue");
        myPQ.lpq();
        myPQ.lprm(101);
        myPQ.lprmAll("ronaldinho");
        System.out.println("Print Queue"); 
        System.out.println("\n\n"); 
        myPQ.lpq(); 
    }
}

エラーが発生する部分:

Scanner k = new Scanner(System.in);
4

2 に答える 2

1

それはあなたが決して閉じていないからですScanner. コードを次のように変更します。

Scanner k = null;
try {
    k = new Scanner(System.in);
    //do stuff with k here...
} finally {
    if( k != null )
        k.close();
}
于 2013-10-19T18:50:42.377 に答える