FAQ: Static Variables and Methods - Modifying Static Variables

This community-built FAQ covers the “Modifying Static Variables” exercise from the lesson “Static Variables and Methods”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn Java

FAQs on the exercise Modifying Static Variables

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in Language Help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to Language Help and Tips and Resources. If you are wanting feedback or inspiration for a project, check out Projects.

Looking for motivation to keep learning? Join our wider discussions in Community

Learn more about how to use this guide.

Found a bug? Report it online, or post in Bug Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

In step 1 I originaly used
numATMs++;
It seemed to work fine, but it wasn’t accepted as the right code to use. Was this just a quirk of the system that checks for correct answers, or is there some reason that “+=1” is better than “++”?

In step 2 I originally used
totalMoney += this.Money;
Again it worked fine but it wants me to use
totalMoney += inputMoney;
Again, does this make a difference - is there some reason why it’s better to use inputMoney than this.money? Although the results are the same in practice, it seems slightly neater to me to define totalMoney according to the money value in each ATM, rather than the inputMoney. (Or even better, to have a separate method to set totalMoney according to the sum of money in each ATM, rather than increasing and decreasing it with deposits and withdrawals.)

10 Likes

Indeed this needs to be changed. This sends an incorrect message to the user when the user did nothing wrong.

public class ATM {
    // Static variables
    public static int totalMoney = 0;
    public static int numATMs = 0;

    // Instance variables
    public int money;

    public ATM(int inputMoney) {
        this.money = inputMoney;

        // Steps 1 and 2: Edit numATMs and total money here
        ATM.numATMs++;
    }

    public void withdrawMoney(int amountToWithdraw) {
        if (amountToWithdraw <= this.money) {
            this.money -= amountToWithdraw;
            // Step 3: Edit totalMoney here
        }
    }

    public static void main(String[] args) {

        System.out.println("Total number of ATMs: " + ATM.numATMs);
        ATM firstATM = new ATM(1000);
        ATM secondATM = new ATM(500);
        System.out.println("Total number of ATMs: " + ATM.numATMs);

        System.out.println("Total amount of money in all ATMs: " + ATM.totalMoney);
        firstATM.withdrawMoney(500);
        secondATM.withdrawMoney(200);
        System.out.println("Total amount of money in all ATMs: " + ATM.totalMoney);

    }

}

This should be failing step 1.

2 Likes

same problem. I also used numATMs++

3 Likes

Funny. I also used ++ and it told me it was incorrect but I guess the checker just wanted a different way to write it. Should be changed.

1 Like

In this instance, yes because you are using post-increment i++ instead of pre-increment ++i

++i increments and then uses the variable
i++ uses and then increments the variable

Running it with ++numATMs; works fine. And since pre-incrementation hasn’t been covered in the lesson thus far, += 1 is the logical better solution especially in that constructer’s signature.

totalMoney += inputMoney is consistent with the signature of the decrementation in the withdrawMoney method, which first runs an if-then check on this.money. I could imagine a more realistic scenario on step 2 that applies these similar checks on both the existing and the incoming values. And assignment via the incoming value could be the cleanest route to separating concerns

1 Like