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 Improving Our Code Creating a New Class

Getting 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?

I found the solution. Question just wanted the basic string: public String mTitle;

1 Answer

Jacek Szemplinski
Jacek Szemplinski
6,423 Points

Hi 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.

Thanks so much for replying! i had already found the solution but its great to see that the community is active.