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 trialKevin Jervis
884 PointsHi There. Getting some compiler errors and not too sure why
I'm doing the Java Basics tutorials - Java Objects - Exceptions
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) { if (misses indexOf(letter) != -1 || hits.indexOf(letter) != -1){ throw new IllegalArgumentException(letter + " has already been guessed"); }
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; } }
1 Answer
Tyler B
5,787 PointsWell the first issue I see is that you're missing a .
between misses
and indexOf
inside the if statement at the start of applyGuess
. If you post the error messages and/or stack trace you're getting we can probably help further.
Kevin Jervis
884 PointsKevin Jervis
884 PointsHi Tyler
Thank you so much. That fixed the problem. I checked several times but just could not find the error. Good to have a fresh pair of eyes.