1

これの何が問題なのかよくわかりませんが、スコープに関係していると確信しています。昨日、メソッドを複数回呼び出したため、フィールドがゼロに初期化されるという問題がありました。クラスフィールドは、メソッドが呼び出された回数に関係なく値を保持するため、これを修正しました。

今、私は反対の問題を抱えています.別のオブジェクトがそれを使用する必要があるため、フィールドをリセットする必要があります(これは可能ですか/悪い習慣ですか?)

コードは次のとおりです。

public class TestDigitalCamera {

    static String brand;
    static double megaPixels;
    static double price;

    //create 2 camera instances with the values of the variables tied to the arguments.
    static DigitalCamera camera = new DigitalCamera(brand, megaPixels);
    static DigitalCamera camera2 = new DigitalCamera(brand, megaPixels);


    public static void main(String[] args) {

        //no idea what this technique is called, need to look back but I know what it does
        //I could use a for loop and reuse the same object over and over(would that even work anyway?) but the task says
        //that i require 4 instances, ofc I am just working with 2 atm for simplicity
        camera = getInformation(camera);
        displayInfo();
        camera2 = getInformation(camera2);
        displayInfo();


    }

    //it basically runs this for the camera instance...right? lol
    public static DigitalCamera getInformation(DigitalCamera dc){
        Scanner userInput = new Scanner(System.in);

        //self explanatory
        System.out.println("Enter brand: ");
        brand = userInput.next();
        System.out.println("Enter Mega Pixels: ");
        megaPixels = userInput.nextDouble();

        //I have another class setup with getters/setters for this, which get used in the next method
        dc.setBrand(brand);
        dc.setMegaPixels(megaPixels);
        return dc;      

    }

    public static void displayInfo(){

        //users the getters to pull the values
        //the price is calculated using an if statement
        System.out.println("Brand: " + camera.getBrand() + "\n"
                + "Megapixels : " + camera.getMegaPixels() + "\n"
                        + "Price : $" + camera.getPrice() + "\n");
    }

}

これはスコープによるものですか?変数はすべてのオブジェクトに使用できますが、1 つだけに使用できますか? これにアプローチする最良の方法は何ですか?

4

3 に答える 3

2

あなたはこのコードを持っています:

camera = getInformation(camera);
displayInfo();
camera2 = getInformation(camera2);
displayInfo();

ここで、メソッドdisplayInfo()は実際には引数を取らず、camera呼び出されたときにオブジェクトから情報を出力します。camera22回目の呼び出しでオブジェクトの参照を取得していますがgetInformation、実際にはそれを印刷していません。

displayInfo次のように宣言できます。

public static void displayInfo(DigitalCamera camera) {
    //users the getters to pull the values
    //the price is calculated using an if statement
    System.out.println("Brand: " + camera.getBrand() + "\n"
         + "Megapixels : " + camera.getMegaPixels() + "\n"
         + "Price : $" + camera.getPrice() + "\n");
}
于 2013-08-30T10:07:04.823 に答える
0

私はあなたのクラスをこのように書きます

パブリック クラス TestDigitalCamera {

public static test_display(){
    DigitalCamera camera = getCamera();
    System.out.println("Brand: " + camera.getBrand() + "\n"
            + "Megapixels : " + camera.getMegaPixels() + "\n"
            + "Price : $" + camera.getPrice() + "\n");

}

public static getCamera(){
    Scanner userInput = new Scanner(System.in);

    //self explanatory
    System.out.println("Enter brand: ");
    brand = userInput.next();
    System.out.println("Enter Mega Pixels: ");
    megaPixels = userInput.nextDouble();

    //I have another class setup with getters/setters for this, which get used in the next method
    DigitalCamera dc = new DigitalCamera();
    dc.setBrand(brand);
    dc.setMegaPixels(megaPixels);
    return dc;
}

public static void main(String[] args) {
    test_displainfo();
}

}

于 2013-08-30T10:18:22.217 に答える