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 Scrabble Tiles

Patrick Hanson
Patrick Hanson
7,013 Points

modify the addTile method so that it appends the tile that was passed in. I don't understand at all. pls help!

I'm struggling as to what I need to do. I have been on this challenge for like and hour and 30 minutes and haven't even gotten passed task 1.

ScrabblePlayer.java
public class ScrabblePlayer {
  // A String representing all of the tiles that this player has
  private String tiles;
  private String addTiles;

  public ScrabblePlayer() {
    tiles = "";
  }

  public String getTiles()  {
    return tiles;
  }

  public void addTile(char tile) {
    // TODO: Add the tile to tiles
    player.getTile += 'tile';

  }

  public boolean hasTile(char tile) {
    // TODO: Determine if user has the tile passed in
    return false;
  }

}

1 Answer