Looking at the Android tutorials such as the Notepad tutorial, I noticed that almost all variables are named starting with the letter 'm'. What convention is this, and where does it originate from?
Thank you for your answers!
|
Looking at the Android tutorials such as the Notepad tutorial, I noticed that almost all variables are named starting with the letter 'm'. What convention is this, and where does it originate from? Thank you for your answers! |
||||
|
|
|
It stands for member. I personally find this convention unhelpful, but it's subjective. |
|||||
|
|
See Code Style Guidelines for Contributors: Follow Field Naming Conventions. The use of the "m" prefix is more specific that simply denoting a "member" variable. |
||||
|
'm' means member of the class. So, if you don't use IDE to highlight your members, then you will understand that it is a member by it's name |
|||
|
|
|
As already answered this prefix indcates that a variable is member. Somtimes people use other prefixes if you discover some variables starting with 'i' or 's' it could also be a variant of the Hungarian Notation |
|||
|
|
|
not only in java, I've seen similar convention in cocos2d+box2d samples where some of the variables start with m_, but others don't, very confusing.
I guess to differentiate C++ box2d variables from Obj-C variables. |
|||
|
|