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

Java Java Data Structures Getting There Object Inheritance

Object 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;
}
Ken Alger
Ken Alger
Treehouse Teacher

Edited for markdown

1 Answer

Jordan Gauthier
Jordan Gauthier
5,552 Points

If 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