"Java Data Structures - Retired" was retired on May 31, 2019. You are now viewing the recommended replacement.

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 - Retired Getting There Class Review

Why am I forced to use "m" letter before each name? Doesn't make any sens to me

In my opinion calling fields like:

private String author;
//...
private Date date;

make more sense then adding "m" letter everywhere:

private String mAuthor;
//...
private Date mDate;

1 Answer

Thx for your reply Kieran.

What I've gathered from the link you posted is that basically it used to be popular or maybe still is among Android Community but most people abandoned this practice already.

So I think that I should keep using normal variable names and then in the constructor use keyword "this" instead of what is suggested here. Do you agree?

Kieran Barker
Kieran Barker
15,028 Points

Maybe someone more experienced can answer that for you. I’ve never done any Java myself :)

I see. You're just good at googling things :D