When writing BookStoreApplication, using the Book, Tape, and CD classes to create objects. Although it is not complete, the application class should create new BookStoreItems, which are Book, Tape and CD. They inherit from the BookStoreItems class. In this application class, I get an error all the time:
error: non-static method printMenu() cannot be referenced from a static context
error: non-static method getUserChoice() cannot be referenced from a static context
error: non-static variable input cannot be referenced from a static context
I changed it as static and then not static, but I keep getting this error ...
import java.util.Scanner;
public class BookStoreApp2 {
static final int ADD_BOOK = 0;
static final int ADD_TAPE = 1;
static final int ADD_CD = 2;
static final int QUIT = -1;
Scanner input = new Scanner (System.in);
public static void main(String[] args) {
BookStoreItem[] item;
item = new BookStoreItem[10];
int itemType = -1;
printMenu();
getUserChoice();
for (int i = 0; i < item.length; i++){
System.out.print("\n" + i + "\tEnter 0 for Book, 1 for Tape, 2 for CD: ");
itemType = input.nextInt();
switch (itemType) {
case 0:
item[i] = new Book();
break;
case 1:
item[i] = new Tape();
break;
case 2:
item[i] = new CD();
break;
default:
System.out.println("\nInvalid choice.");
}
}
for (int i = 0; i < item.length; i++) {
System.out.println("\nAnimal #" + i + ": ");
System.out.println("\n\tTitle: " + item[i].getTitle());
System.out.println("\n\tAuthor: " + item[i].getAuthor());
}
}
public void printMenu(){
System.out.println("\nPress:");
System.out.println("\t" + ADD_BOOK + "\tTo add a book to the book store.\n");
System.out.println("\t" + ADD_TAPE + "\tTo add a tape to the book store.\n");
System.out.println("\t" + ADD_CD + "\tTo add a CD to the book store.\n");
System.out.println("\t" + QUIT + "\tTo exit\n");
}
public int getUserChoice() {
int choice;
System.out.print("Please enter your choice: ");
choice = input.nextInt();
return choice;
}
}
source
share