vote up 32 vote down star
8

I know what Hungarian refers to - giving information about a variable, parameter, or type as a prefix to its name. Everyone seems to be rabidly against it, even though in some cases it seems to be a good idea. If I feel that useful information is being imparted, why shouldn't I put it right there where it's available?

See also: Do people use the Hungarian naming conventions in the real world?

flag

34 Answers

prev 1 2
vote up 0 vote down
  • They're a humongous eyesore
  • Your IDE should be able to tell you all you need to know about a variable's type
  • Good names (which HN gets in the way of) should communicate to you everything else you need to know about a variable.
link|flag
vote up 9 vote down

Joel Spolsky wrote a good blog post about this. http://www.joelonsoftware.com/articles/Wrong.html Basically it comes down to not making your code harder to read when a decent IDE will tell you want type the variable is if you can't remember. Also, if you make your code compartmentalized enough, you don't have to remember what a variable was declared as three pages up.

link|flag
vote up 6 vote down

The IDE should impart that useful information. Hungarian might have made some sort (not a whole lot, but some sort) of sense when IDE's were much less advanced.

link|flag
1  
Then again, you shouldn't rely on the IDE telling you more. After all, code can viewed outside of the IDE... – TraumaPony Sep 22 '08 at 12:42
vote up 32 vote down

I think it massively clutters up the source code.

It also doesn't gain you much in a strongly typed language. If you do any form of type mismatch tomfoolery, the compiler will tell you about it.

link|flag
show 4 more comments
prev 1 2

Your Answer

Get an OpenID
or

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