找到不兼容的类型:double

时间:2013-02-25 23:41:22

标签: incompatibletypeerror

我正在尝试编写一个程序,其余的代码到目前为止工作但是我发现了一个不兼容的类型:double required:第38行的Grocery项目。任何人都可以帮我解释为什么我收到此错误以及如何纠正它?谢谢。这是我的代码:

 import java.util.Scanner;

public class GroceryList {

  private GroceryItem[]groceryArr; //ARRAY HOLDS GROCERY ITEM OBJECTS
  private int numItems;
  private String date;
  private String storeName;
  public GroceryList(String inputDate, String inputName) {

//FILL IN CODE HERE
// CREATE ARRAY, INITIALIZE FIELDS
    groceryArr = new GroceryItem[10];
    numItems = 0;

  }

  public void load() {

    Scanner keyboard = new Scanner(System.in);
      double sum = 0;
      System.out.println ("Enter the trip date and then hit return:");
    date = keyboard.next();
    keyboard.nextLine();
    System.out.println("Enter the store name and then hit return:");
    storeName = keyboard.next();
    keyboard.nextLine();
    double number = keyboard.nextDouble();

    //NEED TO PROMPT USER FOR, AND READ IN THE DATE AND STORE NAME.


    System.out.println("Enter each item bought and the price (then return).");
    System.out.println("Terminate with an item with a negative price.");
    number = keyboard.nextDouble();

    while (number >= 0 && numItems < groceryArr.length) {
      groceryArr[numItems] = number;
      numItems++;
      sum += number;
      System.out.println("Enter each item bought and the price (then return).");
      System.out.println("Terminate with an item with a negative price.");
      number = keyboard.nextDouble();
    }


     /* 
    //READ IN AND STORE EACH ITEM. STORE NUMBER OF ITEMS
  }

  private GroceryItem computeTotalCost() {
    //add code here
  }

  public void print() {
    \\call computeTOtalCost
  }
  */
}
}

1 个答案:

答案 0 :(得分:0)

“groceryArr [numItems] = number;”

groceryArr [numItems]是GroceryItem()的一个实例 - 'number'是双精度

你需要在GroceryItem()对象中使用一个双变量来存储'number'值。