Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

6 Answers

up vote 22 down vote accepted

It stands for member. I personally find this convention unhelpful, but it's subjective.

share|improve this answer
7  
I always read the 'm' as 'my'. Good to know it's not that stupid, lol – Falmarri Nov 21 '10 at 21:17

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.

share|improve this answer
Great link, not just for prefixes. – Иван Бишевац Dec 1 '11 at 22:57
Is this link refers to writing application? or just to Open android project? – David Jul 9 '12 at 8:08
I get an "Insufficient permissions" error when trying to open that page. Maybe someone can post here some of its contents? – Cosmin Feb 28 at 11:47

'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

share|improve this answer

'm' means the variable is a member variable of the class...

share|improve this answer

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

share|improve this answer

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.


b2World* world;
GLESDebugDraw *m_debugDraw;

I guess to differentiate C++ box2d variables from Obj-C variables.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.