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 trialYusuf Mohamed
2,631 PointsHow do you add a new string?
I don't know what I'm doing wrong. Could someone help me?
public class PictureBook {
public String mTile() {
}
}
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsHi Yusuf,
You've created your Class
which is one of the steps of the challenge. To create a string you declare it as a variable of the String data type.
You don't need to include a code block for it as it's a public field (or member variable) inside the PictureBook class.
public String mTitle;
All you need to do, is declare the access modifier, the data type and the name of the field/variable.
Yusuf Mohamed
2,631 PointsYusuf Mohamed
2,631 PointsThanks so much! :)