Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

David Lewis
Courses Plus Student 3,405 PointsHelp!... Getting java.util.NoSuchElementException WHY!!!
// my code in Game.java
public class Game{
private String mAnswer;
private String mHits;
private String mMisses;
public Game(String answer){
mAnswer = answer;
mHits = "";
mMisses = "";
}
public boolean applyGuess(char letter){
boolean isHit = mAnswer.indexOf(letter) >= 0;
if (isHit){
mHit += letter;
} else {
mMisses += letter;
}
return isHit;
}
}
// My java-repl output
Type expression to evaluate, :help for more options or press tab to auto-complete.
java> :load Game.java
Loaded source file from Game.java
java> Game game = new Game("treehouse");
java.util.NoSuchElementException
Video followed again and again looking for my error?
[MOD: added ```java markdown formatting -cf]
3 Answers

Chris Freeman
Treehouse Moderator 68,082 PointsThe errors in the REPL aren't the same as if you tried to compile it yourself. Using javac Game.java
, I get the following error:
$ javac Game.java
Game.java:15: error: cannot find symbol
mHit += letter;
^
symbol: variable mHit
location: class Game
1 error
Looks like a typo: mHit
should be mHits
.

David Lewis
Courses Plus Student 3,405 PointsThanks Chris! man do I suck at this...

Chris Freeman
Treehouse Moderator 68,082 PointsNo worries! Typos are a way of life. I only found it by executing the code and letting the compiler tell me the issue. If you're using an IDE for code development, they usually highlight symbols not defined, or defined and not used.

David Lewis
Courses Plus Student 3,405 PointsThanks again Chris, I'm still using work spaces in the course.