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 (2014) Improving Our Code Creating a Class

The syntax says that I am missing a return statement. Am I over looking something?

public class PictureBook {
  public String mTitle() {
  } 
}

1 Answer

Ethan Lowry
PLUS
Ethan Lowry
Courses Plus Student 7,323 Points

Just like it says, you are missing a return statement :)

Specifically, because you specified the String return type when creating your mTitle function, that means that function has to return a String value.

So in this case, you probably want something along the lines of:

return title

...inside your function, assuming you have a variable called title somewhere else in your class.

The typical pattern for this is that your variable will be called mTitle, while the 'getter' function you're writing will be called getTitle() or something similar, and will use return mTitle to retrieve the object's title. But I haven't looked at the code for this particular challenge, so maybe they name things a little differently.