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 trialMUZ140698 Kudakwashe Gwaindepi
4,150 Pointsim getting an error message that says i have to include a return statement
please help guys, if i return a null it gives an error
public class PictureBook {
public String mTitle (){
return "";
}
}
1 Answer
Steve Hunter
57,712 PointsHiya,
In this challenge you are first creating a public class, which you've done, then adding a member variable. You have added a method.
If you just declare a public variable of type String inside the class, then you will have completed the challenge.
public class PictureBook {
public String mTitle;
}
That should do it!
Steve.
MUZ140698 Kudakwashe Gwaindepi
4,150 PointsMUZ140698 Kudakwashe Gwaindepi
4,150 Pointsthanx steve, you saved me
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsNo problem!