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

Android Build a Simple Android App with Java Improving Our Code Creating a New Class

There stands "add a field variable named title and make it public" soo I added public String title; yet, not working.

I created the class called PictureBook and got the request to add a field variable named title and make it public. Soo I added "public String title;" yet it does not work? Help?

PictureBook.java
public class PictureBook(){
public String title;

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi Krystal

You're on the right track, but there are a couple of things going on here.

First, Classes don't take any parameters, so they don't have parenthesis in part of the declaration. The fact that the first task (creating the class) passed with the parenthesis probably caused some confusion. Tagging Ben Deitch to have a look.
Second, you are missing the closing curly brace for the Class.

Also, although it won't affect compilation, be aware of the conventions for Java Syntax. The member variable should be indented inside of the class.

Have a look at the corrected code... I hope it helps to clear it up. :)

public class PictureBook {
  public String title;
}

Keep Coding! :dizzy: