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

Robert Roberson
PLUS
Robert Roberson
Courses Plus Student 8,401 Points

I watch the video again and still have no idea what I am supposed to do.

What is the exercise about. Am I adding a string or Char? Where am I to get the info that I need to do it?

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

    }

    public boolean hasTile(char tile) {
       return false;
    }
}

2 Answers

Adam Sawicki
Adam Sawicki
15,967 Points

I think you should just add character to String

    mHand = mHand + tile;
Robert Roberson
PLUS
Robert Roberson
Courses Plus Student 8,401 Points

Thank you, But there has got to be a better means of conveying what must be done in the exercises by the instructor. It seems to be written for those who know how to program already not those who are learning to program.