これの何が問題なのかよくわかりませんが、スコープに関係していると確信しています。昨日、メソッドを複数回呼び出したため、フィールドがゼロに初期化されるという問題がありました。クラスフィールドは、メソッドが呼び出された回数に関係なく値を保持するため、これを修正しました。
今、私は反対の問題を抱えています.別のオブジェクトがそれを使用する必要があるため、フィールドをリセットする必要があります(これは可能ですか/悪い習慣ですか?)
コードは次のとおりです。
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 つだけに使用できますか? これにアプローチする最良の方法は何ですか?