0

我正在制作一个图书馆程序,记录收藏中的任何书籍以及每本书的副本数。这是代码

import java.util.Arrays;
import java.util.Scanner;
public class Library{
  static String title;
  static String author;
  static int id;
  static int copies;
  static String date;
  static Book[] database = new Book[100];
  static int count=0;

  public static void main(String[] args){
    int i;
    Scanner s = new Scanner(System.in);
    do{
      addBook();
      System.out.println("would you like to add another book?");
      i=s.nextInt();
    }while(i == 0);
    database[0].viewDetails();
    database[1].viewDetails();
    checkingOut();
  }
  public static void addBook(){
    Scanner s = new Scanner(System.in);
    System.out.println("Enter the title of the book you want to add to the collection");
    title=s.nextLine();
    System.out.println("Enter the author of the book you want to add to the collection");
    author=s.nextLine();
    System.out.println("Enter the publishing date of the book you want to add to the collection");
    date=s.nextLine();
    System.out.println("Enter the ID number of the book you want to add to the collection");
    id=s.nextInt();
    System.out.println("Enter the the number of copies that will be added into the collection");
    copies=s.nextInt();

    Book Book1 = new Book(date, author, copies, id, title);
    database[count] = Book1;
    count++;
  }
  public static void checkingOut(){
    boolean found=false;
    int idSearch;
    int i=0;
    Scanner s = new Scanner(System.in);
    System.out.println("Enter the ID number of the book you want to check out");
    idSearch=s.nextInt();
    while(i<database.length && found!=true){
      if(database[i].getIdentificationNumber() == idSearch){
        found = true;
      }
      i++;
    }
    if(found==true){
      database[i].checkOut();
      System.out.println("There are "+database[i].getNumberCopies()+" copies left");
    }
    else{System.out.println("There is no book with that ID number!");}
  }
}

我在签出方法的第 55 行遇到空指针异常,我不知道为什么。如果您能发现它是什么,请告诉我任何帮助将不胜感激。

4

3 回答 3

1

if(found=true) will be always executed because the expression of the assignment returns the assigned value, and this will cause database[i].checkOut(); to be executed where it shouldn't.

You should write:

if(found)

That's why we avoid writing == when we compare booleans. It's enough to write if(someBoolean).

于 2013-11-02T18:21:01.007 回答
0

found == true, not found = true

于 2013-11-02T18:20:45.923 回答
0

should be if(found==true)

instead of = use == as = will always evaluate as true.

于 2013-11-02T18:22:38.570 回答