Не удается найти символ - класс InventoryItem - PullRequest
0 голосов
/ 19 октября 2018

Я заново набираю этот код из книги и каким-то образом получаю сообщение об ошибке «Не удается найти символ - класс InventoryItem»

import java.util.Scanner;

public class ReturnObject {    
    public static void main(String[] args) {
        InventoryItem item;
        item = getData();

        System.out.println("Des: " + item.getDescription() + " Unit: " + 
        item.Units());

    }

    public static InventoryItem getData() {
        String desc;
        int units;
        Scanner keyboard = new Scanner(System.in);
        System.out.print("enter descri: ");
        desc = keyboard.nextLine();
        System.out.print("number of unit: ");
        units = keyboard.nextInt();
        return new InventoryItem(desc, units);
    }
}

Я новичок в Java, пожалуйста, помогите, спасибо.

Ответы [ 3 ]

0 голосов
/ 19 октября 2018

Я думаю, что это должно быть InventoryItem, которое вам нужно.

 /**
 * This class uses three constructors.
 */

public class InventoryItem {
    private String description;  // Item description
    private int units;           // Units on-hand

    /**
     * No-arg constructor
     */

    public InventoryItem() {
        description = "";
        units = 0;
    }

    /**
     * The following constructor accepts a
     * String argument that is assigned to the
     * description field.
     */

    public InventoryItem(String d) {
        description = d;
        units = 0;
    }

    /**
     * The following constructor accepts a
     * String argument that is assigned to the
     * description field, and an int argument
     * that is assigned to the units field.
     */

    public InventoryItem(String d, int u) {
        description = d;
        units = u;
    }

    /**
     * The setDescription method assigns its
     * argument to the description field.
     */

    public void setDescription(String d) {
        description = d;
    }

    /**
     * The setUnits method assigns its argument
     * to the units field.
     */

    public void setUnits(int u) {
        units = u;
    }

    /**
     * The getDescription method returns the
     * value in the description field.
     */

    public String getDescription() {
        return description;
    }

    /**
     * The getUnits method returns the value in
     * the units field.
     */

    public int getUnits() {
        return units;
    }
}

полный пример нажмите здесь и здесь

0 голосов
/ 19 октября 2018

может быть, ваш InventoryItem класс:



    public class InventoryItem {
        private String desc;
        private int units;
        public InventoryItem(String desc, int units) {
            this.desc=desc;
            this.units=units;
        }

        public String getDescription() {
            return desc;
        }

        public int Units() {
            return units;
        }
    }

0 голосов
/ 19 октября 2018

Класс, в котором вы сейчас находитесь, не может найти класс (символ) InventoryItem.Вам нужно определить этот класс и метод getData.

public class InventoryItem{

    private String desc;
    private int units;

    public InventoryItem(){
        Scanner keyboard = new Scanner(System.in);
        System.out.print("enter descri: ");
        desc = keyboard.nextLine();
        System.out.print("number of unit: ");
        units = keyboard.nextInt();

    }

    public static InventoryItem getData() {

        return this;
       }

    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...