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 (Retired) Creating the MVP Strings and Chars

i nedd help with my java challenge question

Can you also please help me write out the hasTile method? It should return true if the hand has the tile, and false if it doesn't. Thanks!......plz i need to know what am doing wrong here

ScrabblePlayer.java
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) {
      if (addTile(char tile)) {
      return true;
      }else
      {
       return false;
      }
    }
}

1 Answer

Rob Bridges
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Rob Bridges
Full Stack JavaScript Techdegree Graduate 35,467 Points

Hey Mark, looks like you are overthinking this.

For the hasTile method you just need to call the method indexOf and pass in the char value from the method arguments, if it doesn't find the char then it will automatically return the value of negative one.

So, if the indexOf value is greater than or equal to 0, have the method return true, otherwise have the method return false.

The link below should be a bit of help.

indexOf

Thanks.