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 trialBrett Jones
7,923 PointsIssue completing getTileCount challenge. How to have method accept char
I'm trying to complete the getTileCount challenge. I have written the code below. When I define getTileCount (public int getTileCount()), I get an error when I check my work saying: "Did you forget to create the method getTileCount that accepts a char?"
If I define getTileCount like this (public char getTileCount()), I get a syntax error about lossy conversion from int to char
If I define getTileCount like this (public int getTileCount(char tile)), I get a syntax error in line 23 saying char tile is already defined.
Can someone clarify what is making this code not work in the way the challenge is looking for?
public class ScrabblePlayer {
private String mHand;
public ScrabblePlayer() {
mHand = "";
}
public String getHand() {
return mHand;
}
public void addTile(char tile) {
// Adds the tile to the hand of the player
mHand += tile;
}
public boolean hasTile(char tile) {
return mHand.indexOf(tile) > -1;
}
public int getTileCount(){
int count = 0;
for (char tile: mHand.toCharArray()){
if(mHand.indexOf(tile)>=0){
count++;
}
}
return count;
}
}
1 Answer
jcorum
71,830 PointsBrett, close. Try this instead:
public int getTileCount(char tile){
int count = 0;
for (int i = 0; i < mHand.length(); i++) {
if(mHand.charAt(i) == tile){
count++;
}
}
return count;
}
tile is a char, and charAt() returns a char, so they can be compared directly.
Plus the method must take a char tile as a parameter.