开发者

An interesting detail about variable name

开发者 https://www.devze.com 2023-01-15 02:16 出处:网络
I have read tutorials all over the web with different kinds of tutorials specified on game (however, this turns out to be pretty general).

I have read tutorials all over the web with different kinds of tutorials specified on game (however, this turns out to be pretty general).

Are there any reasons to why many developers name their variables like:

mContext

For me it is default to just name it "context" or something similar.

Are there any reasons why th开发者_如何学Goe "m" are before? (I know that this is a matter of style, but I'm just curious what it stands for)


To those of us who disapprove of cluttering up our variable names with such characters, they're known as "warts". In my opinion, with today's IDEs it is better to leave the warts off, because we can readily distinguish between local variables and member variables without their help.


The m will be to signify that the object is a member variable of the class in question. It's a common use of Hungarian Notation to prefix the name with clues to the variable's purpose or type.


Many programmers like to prefix their variables with lowercase letters that represent the object type that variable represents. For example:

var strMyString = new String();

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号