Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Objects Creating the MVP Remaining Tries

Can't run code because of these apparent exceptions?

Exception in thread "main" java.lang.NullPointerException at Game.getCurrentProgress(Game.java:24) that is my output error, now for the code it's referring to:

class Game { private String answer; private String hits; private String misses;

public Game(String Answer) { this.answer = answer; hits = ""; misses = ""; }

public boolean applyGuess(char letter) { boolean isHit = answer.indexOf(letter) != -1; if (isHit) { hits += letter; } else { misses += letter; } return isHit; }

public String getCurrentProgress() { String progress=""; for (char letter : answer.toCharArray()) { char display = '-'; if (hits.indexOf(letter) != -1) { display = letter; } progress+=display; } return progress; }

}

Is there anything I'm visibly doing wrong, or what?

1 Answer

Christof Baumgartner
Christof Baumgartner
20,864 Points

So at least one problem is in you constructor. You wrote Answer with an capital A in the parameters, but with a lower a in the function body. Here is correct version:

    public Game(String answer) {
        this.answer = answer; 
        hits = ""; 
        misses = "";
    }

Does this solve your problem?

Thank you so much, I was getting so frustrated because I couldn't tell what was wrong.