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

Android

Is it necessary to add m in front of the field variables?

By m I mean the letter m in front of the names of the field variables. I still do not get what do you mean by field variables!!

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

Field means member variable. The terms are fairly interchangeable in Java. Prefixing them with 'm' isn't really necessary. It's never been a popular practice in Java outside of Android programming. There's actually been a push in recent years to stop doing so outside of the OS proper.