0

わかりました、コードを分離しました。実行すると、次のようなエラーが1つだけ発生します。

Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - Erroneous tree type: InventoryPro2.MobilePhone
    at InventoryPro2.InventoryPro2.main(InventoryPro2.java:12)
Java Result: 1

以前の返信から得たのは、MobilePhone クラスと InventoryPro2 クラスを同じプロジェクト内の別の .java ファイルに移動する必要があるということでした。ポイントを逃しましたか?前に言ったように、私はこれにまったく慣れていないので、別のプログラミング言語を同時に学習しながら、これらすべてを急速なペースで学習しようとするのはひどいものでした. これまでご愛顧いただき、誠にありがとうございました。

   package InventoryPro2;



    public class InventoryPro2 {

        public static void main(String args[]) {
            MobilePhone MobilePhoneObject = new MobilePhone();
            MobilePhoneObject.MobilePhone();
            System.out.println("Mobile Phone Inventory");
            System.out.println();//skips a line

            MobilePhone[] Phones = new MobilePhone[5];

            Phones[0] = new MobilePhone(1, "Motorola", "Electronics", 98, 150.00);
            Phones[1] = new MobilePhone(2, "LG", "Electronics", 650, 199.99);
            Phones[2] = new MobilePhone(3, "Samsung", "Electronics", 125, 200.25);
            Phones[3] = new MobilePhone(4, "Nokia", "Electronics", 200, 100.05);
            Phones[4] = new MobilePhone(5, "IPhone", "Electronics", 138, 125.75);


            for (int count = 0; count < Phones.length-1; count++) {



                System.out.printf("Product Number:  %1f\n", Phones[count].getproductNumber());
                System.out.printf("Product Name:  %s\n", Phones[count].getname());
                System.out.printf("Units In Stock:  %.2f\n", Phones[count].getunitsInStock());
                System.out.printf("Unit Price: $%4.2f\n", Phones[count].getunitPrice());
                System.out.printf("Inventory Value:  $%4.2f\n", Phones[count].gettotalInv());
                System.out.println(); //blank line to seperate products

            }
        }
    }

package inventorypro2;

class MobilePhone { // Create class to store values

    private double productNumber; // Variables
    private String name;
    private String department;
    private double unitsInStock;
    private double unitPrice;

    public MobilePhone() {
        this(0.0, "", "", 0.0, 0.0);
    }

    public MobilePhone(double productNumber, String name, String department,
            double unitsInStock, double unitPrice) { //assign variables
        this.productNumber = productNumber;
        this.name = name;
        this.department = department;
        this.unitsInStock = unitsInStock;
        this.unitPrice = unitPrice;
    }

    public double getproductNumber() { // retrieve values
        return productNumber;
    }

    public String getname() {
        return name;
    }

    public String getdepartment() {
        return department;
    }

    public double getunitPrice() {
        return unitPrice;
    }

    public double getunitsInStock() {
        return unitsInStock;
    }

    public void setproductNumber(double productNumber) {
        this.productNumber = productNumber;
    }

    public void setname(String name) {
        this.name = name;
    }

    public void setdepartment(String department) {
        this.department = department;
    }

    public void setunitPrice(double unitPrice) {
        this.unitPrice = unitPrice;
    }

    public void setunitsInStock(double unitsInStock) {
        this.unitsInStock = unitsInStock;
    }

    public double gettotalInv() {
        return getunitPrice() * getunitsInStock();
    }
}
4

2 に答える 2

3

Phones[0] = count + 1;

左は整数ではありませんが、右は整数です。

最近の編集に関しては、ファイルごとに 1 つのクラスを配置する (そして公開する) ことをお勧めします。

または、内部クラスを作成します。しかし、ファイルには 1 つの外部クラスが必要です (このようにする必要はありません: Java: 1 つのファイル内の複数のクラス宣言)。

于 2013-04-13T03:46:18.850 に答える
0

電話[0] = カウント + 1;

ここで何をしようとしていますか?整数 ( inttype) を携帯電話 ( MobilePhonetype) に割り当てています! その行を削除してください。

于 2013-04-13T03:46:38.973 に答える