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 trialSandy Woods
1,082 PointsObject Inheritance
What's the difference b/t the first and second return stmt w/ regards to what the code will print out?
public String toString(){// toString returns a textual rep of an object
return "Treet: " + mDescription + " -@" + mAuthor;
return "Treet: \"" + mDescription + "\" -@" + mAuthor;
}
1 Answer
Jordan Gauthier
5,552 PointsIf I understand correctly, the second return will place double quotes around description while the first return will not. The escape character \" allows a developer to place a double quote within a string. Because a string is opened and closed with a double quote, the escape character \" is needed to add a literal double quote.
How they would output with mDescription and mAuthor acting as placeholders for the actual value passed into them:
First Return: Treet: mDescription -@ mAuthor
Second Return: Treet: "mDescription*"* -@ mAuthor
Ken Alger
Treehouse TeacherKen Alger
Treehouse TeacherEdited for markdown