0

每当循环运行时,下面的代码墙应该会更改“lowestguess”和“highestguess”的值。理想情况下,它意味着将最高猜测值从 100 降低,并将最低猜测值从 1 提高,这样程序就无法猜测出比它已经猜测的更低或更高的数字(减少完成程序所需的循环数量。

但是,每次运行“takestab”函数时,最低猜测和最高猜测总是重置为默认值,分别为 1 和 100。不知道这里发生了什么,因为我没有收到任何错误。

是否有可能因为这里的方法是私有的,所以它们不会更新各自范围之外的变量?

import java.util.Scanner;

public class AIGuessing
{
    public static void main(String[]args) 
    {
        //DECLARATIONS*
        Scanner inputReader = new Scanner(System.in);
        int number;
        int guess;
        int guesses = 0;
        int lowestguess = 1;
        int highestguess = 100;

        //code
        System.out.println("Welcome!");
        System.out.println("Please enter a number for the AI to guess");
        number = inputReader.nextInt();

        //computer tries to guess number
        do
        {
            guesses++;
            guess = takestab(lowestguess, highestguess, number);
            System.out.println("\"I guess " +guess+ ".\"");
        }while(guess != number);

        if(guess == number)
        {
            System.out.println("WOO! I got it!");
        }

        if(guesses >= 1 && guesses ==2)
        {
            System.out.println(guesses + " guesses? I..AM...GOD!!!!");
        }
        else if(guesses >= 3 && guesses <= 5)
        {
            System.out.println(guesses + " guesses? Hooray! I'm as average as gravy!!!");
        }
        else if(guesses >= 6 && guesses <= 8)
        {
            System.out.println(guesses + " guesses? I only guess when I'm drunk");
        }
        else if(guesses >= 9)
        {
            System.out.println(guesses + " guesses? Bugger me... turn me into scrap");
        }
        //end code
    }

    public static int takestab(Integer lowestguess, Integer highestguess, Integer number)
    {  

        int estimate;
        estimate = estimate(lowestguess, highestguess);
        System.out.println("Estimate is: "+estimate+".");

        if(estimate < number && estimate > lowestguess)
        {
            lowestguess = estimate;
            barkchange(lowestguess, highestguess, estimate);
        }
        else if(estimate > number && estimate < highestguess)
        {
            highestguess = estimate;
            barkchange(lowestguess, highestguess, estimate);
        }
                return estimate;
    }

    //function to generate and return a random number
    public static int estimate(int low, int high)
    {
        int comGuess;
        comGuess = (low + (int)(Math.random() * ((high - low) + low)));
        return comGuess;
    }

    //function to 'bark' the changes of lowest and highest guesses
    public static void barkchange(Integer lowestguess, Integer highestguess, Integer guess)
    {
        System.out.println("Current guess is: "+guess+".");
        System.out.println("Lowest guess is: "+lowestguess+".");
        System.out.println("Highest guess is: "+highestguess+".\n");
    }
}
4

1 回答 1

3

整数是不可变的对象。

lowestguess = estimate;

在这一行(以及 for 的那一行highestguess),您正在更改lowestguess 的本地副本,而不是您传递给它的副本。

在这种情况下,最简单的解决方案是“全局”(静态)声明最低猜测和最高猜测。

高于你的主要看跌期权

static int highestGuess = 100;
static int lowestGuess = 1;

然后,您可以将参数删除到您的方法中,并且您不必再将它们传递进去。您可以直接引用静态的。

吹毛求疵的旁白:我在这里使用“全局”,因为这里没有 OO。在这种情况下,静态变量在所有意图和目的上都是全局变量。

于 2013-09-24T16:18:57.613 回答