Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Erick Ramirez
1,633 PointsGetting a compiler error for task 2 of 2: public class PictureBook{ public String mTitle(){ } }
Qustion is as follows: Now add a String field (member variable) named mTitle. Make it public. The compiler is asking for a return statement i have tried setting the return to made up variables or null to no avail. Am i doing something wrong?
1 Answer

Jacek Szemplinski
6,423 PointsHi Erick,
In this task you should create a member variable like this:
public String mTitle;
What you were trying to do was to create a method called mTitle what wasn't the point of this exercise.
Jacek.

Erick Ramirez
1,633 PointsThanks so much for replying! i had already found the solution but its great to see that the community is active.
Erick Ramirez
1,633 PointsErick Ramirez
1,633 PointsI found the solution. Question just wanted the basic string: public String mTitle;