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 Objects Meet Objects Constructors

return this.characterName?

Could you use return this.characterName? Or is this just redundant? What is best practice?

2 Answers

rydavim
rydavim
18,813 Points

It may be helpful to Java community members if you include a workspace snapshot or a snippet of the code you're referencing using markdown.

Karin Laner
Karin Laner
4,483 Points

1) You could return this.characterName 2) It is redundant 3) Best practice is to keep it consistent. If you are using this in a situation where it is redundant then you should always use it. Commonly, it is preferred that we leave out redundant syntax.