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 Remaining Characters

I'm completely lost with this can someone help me solve this problem?

Hi I can't even begin to start solving this problem can someone help me through this problem.?

Tweet.java
public class Tweet {
  private String text;

  public Tweet(String text) {
    this.text = text;
  }

  public String getText() {
    return text;
  }

  public void setText(String text) {
    this.text = text;
  }
}

1 Answer

This challenge is asking you to define a property constant for this class. You'll add this constant at the top of the class like private String text;

You will need an access control keyword to make it available to other classes. You'll find that information here: https://docs.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html

The other major part deals with the static keyword in order to be able to use the constant w/out instantiating a new instance of the class. You'll find information on the static keyword here and a bit about Constants here: https://docs.oracle.com/javase/tutorial/java/javaOO/classvars.html