簡體   English   中英

Java中的可變范圍和可見性

[英]Variable Scope and Visibility in Java

我正在休假和度假。 休假文件將用作我的藍圖,而驅動程序將成為創建休假實例的程序的交互式部分。 我一切正常,但是當我添加一個值時,我在假期驅動程序類的第47行的打印語句中丟失了,我中斷了程序。

我需要調用我認為在第42行中聲明的numSales的值。當我在輸出的開頭和中間在第47行鍵入numSales時,如圖所示,我在下面顯示一條紅線,Eclipse告訴我“ numSales無法解析為變量” 我需要怎么做才能使numSales的值在假期驅動程序的第47行的打印語句中主動輸出?

這是假期班:

    package cbrownmod4;

    import java.text.NumberFormat;

    public class Vacation {

// money formatting
NumberFormat money = NumberFormat.getCurrencyInstance();

// instance variables
private String vacationName;
private int numSold;
private Double priceEach;

// empty constructor
public Vacation() {
}

// partial constructor
public Vacation(String n, int s, double e) {
    vacationName = n;
    numSold = s;
    priceEach = e = 0;
}

// updatSales method
public int updateSales() {
    int updateSales = 0;
    updateSales = updateSales + numSold;
    return updateSales;
}

// totalValue method
public double totalValue() {
    double totalValue = 0;
    totalValue = totalValue + (numSold * priceEach);
    return totalValue;
}

// toString method
public String toString() {
    return vacationName + " has been sold " + numSold + " times for " + money.format(priceEach) + 
            " each for a total value of " + money.format(numSold*priceEach);
}

// getters and setters
public String getVacationName() {
    return vacationName;
}

public void setVacationName(String vacationName) {
    this.vacationName = vacationName;
}

public int getNumSold() {
    return numSold;
}

public void setNumSold(int numSold) {
    this.numSold = numSold;
}

public Double getPriceEach() {
    return priceEach;
}

public void setPriceEach(Double priceEach) {
    this.priceEach = priceEach;
}

}

這是假期司機:

    package cbrownmod4;

   import java.text.NumberFormat;
   import java.util.Scanner;

   public class VacationDriver {

public static void main(String[] args) {

    Scanner input = new Scanner(System.in);
    NumberFormat money = NumberFormat.getCurrencyInstance();

    // ask for the number of vacations and read it into numVacations
    System.out.println("How many vacations are there?:");
        int numVacations = input.nextInt();

    // ask for the number of sales people and read it into numPeople
    System.out.println("How many sales people are there?: ");
        int numPeople = input.nextInt();

    // beginning of loop for number of vacations
    for(int i = 0; i < numVacations; i++) { 

        //ask for the name and price and read these into variables
        System.out.println("What is the name of vacation #" + Integer.toString(i+1) + "?:");
            String name = input.next();

        System.out.println("How much does " + name + " cost?: ");
            Double price = input.nextDouble();

        // create a Vacation instance using the data obtained above
        Vacation vacay = new Vacation (name, i, price); 

        // loop through the sales people    
        for(int j = 0; j < numPeople; j++) {

            // ask for the sales for the current vacation and read it in
            System.out.println("What are the sales for the current vacation by person #" + Integer.toString(j+1) + "?:");
                int numSales = input.nextInt(); // line 42

            // call updateSales with this number
            numSales = vacay.updateSales(); 

        } //end of inner loop
        //where line 47 begins  
        //print out this vacation info
        System.out.println(numSales + " trips to " + name + " were sold for " + money.format(price) + " for a total of " + money.format(numSales * price));

    } //end of outer for loop

} //end of main

}

由於要求提供一段代碼片段的要求,此處無法正常工作是證明我有問題的一點:

    //print out this vacation info
        System.out.println(numSales + " trips to " + name + " were 
    sold for " + money.format(price) + " for a total of " + 
    money.format(numSales * price));

注意:如果您在假期驅動程序的片段中取出numSales,則該程序可以正確執行,但沒有正確的輸出,因為它缺少必要的輸出變量

簡潔明了的問題是-為什么當我像簡短代碼段所示使用numSales時,它不能工作。 同樣,我的問題是Eclipse表示“ numSales無法解析為變量”。

問題是您在for {}塊中聲明了numSales

您需要在for塊之前聲明它:

    int numSales = 0;  // set initial value in case numPeople is 0 and the loop never runs

    // loop through the sales people    
    for(int j = 0; j < numPeople; j++) {

        // ask for the sales for the current vacation and read it in
        System.out.println("What are the sales for the current vacation by person #" + Integer.toString(j+1) + "?:");
        numSales = input.nextInt();  // line 42; this value is never used?  it is overwritten below

        // overwrite the never-used value from line 42?? 
        numSales = vacay.updateSales(); 

    } //end of inner loop

    // now numSales is still visible, because it was declared on this same 'level' and not in an inner block
    System.out.println("numSales: " + numSales);

第42行中設置的值從不使用,而在第45行中被覆蓋,因此您最好調用input.nextInt(); 而不將值設置為numSales

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM