Tagged Questions
Hungarian notation is a language-independent naming convention in which the variable prefix indicates its type.
55
votes
36answers
8k views
Why shouldn't I use “Hungarian Notation”?
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 ...
33
votes
25answers
3k views
Should a project manager enforce coding standards? [closed]
Running a team of about 10 developers, mostly working in their own components, is it absolutely needed to force certain coding standards?
Example 1 in function names: perform_action vs ...
32
votes
29answers
3k views
Are variable prefixes (“Hungarian notation”) really necessary anymore?
Since C# is strongly typed, do we really need to prefix variables anymore?
e.g.
iUserAge
iCounter
strUsername
I used to prefix in the past, but going forward I don't see any benefit.
16
votes
20answers
2k views
Do people use the Hungarian Naming Conventions in the real world?
Is it worth learning the convention or is it a bane to readability and maintainability?
12
votes
5answers
438 views
Is hungarian notation applicable to Perl? [closed]
In Perl, reference to anything is a simple scalar, and has the $ sigil. It's sometimes hard to say what kind of reference it is.
I personally prefix variable names for references with a letter, ...
11
votes
1answer
487 views
Python Generator Function Names — is a prefix helpful?
Most functions are easy to name. Generally, a function name is based on what it does or the type of result it produces.
In the case of a generator function, however, the result could be a iterable ...
9
votes
3answers
2k views
What does the 'k' prefix indicate in Apple's APIs?
I've run across many examples of Core Foundation variables named k + someVariableNameHere or k + APILibraryName(2Char) + someVariableNameHere. What does this prefix K indicate?
Examples include:
...
9
votes
21answers
3k views
Good examples of Hungarian Notation?
Please answer with good examples of Hungarian Notation, so we can bring together a collection of these.
Edit: I agree that Hungarian for types isn't that necessary, I'm hoping for more specific ...
7
votes
20answers
778 views
Do you follow the naming convention of the original programmer?
If you take over a project from someone to do simple updates do you follow their naming convention? I just received a project where the previous programmer used Hungarian Notation everywhere. Our ...
6
votes
4answers
269 views
Hungarian in VBA okay?
I don't use hungarian (str, int) prefixes in .Net, but I still find it useful in VBA, where it is more difficult to see types.
Is this bad? Unnecessary? Maybe I'm missing something.
I'd really ...
5
votes
14answers
713 views
textBoxEmployeeName vs employeeNameTextBox
Which naming convention do you use and why?
I like to use employeeNameTextBox, because:
It seems more natural from an English language perspective.
I find it's easier to look up with Intellisense.
...
4
votes
1answer
111 views
Tool to validate naming style in VB.NET following Hungarian notation
I'm maintaining a legacy ASP.NET website written in VB.NET. Our customers force us to use Hungarian notation for declaring variables and such:
E.g:
Dim sSomeString as String
Dim oSomeObject as ...
4
votes
2answers
216 views
Get rid of Hungarian notation in C# code in automated manner?
Ladies and sirs,
I have a large codebase that uses Systems Hungarian for most variable names, which basically means I have lots of objQueue's, objCommon's, dtDataSet's et cetera.
Is there any way ...
4
votes
19answers
1k views
Best way to get rid of hungarian notation?
Let's say you've inherited a C# codebase that uses one class with 200 static methods to provide core functionality (such as database lookups). Of the many nightmares in that class, there's copious use ...
3
votes
5answers
139 views
Should I use hungarian apps notation in C#?
I know this question has been asked around a bit, and by the looks of it, there isn't a clear yes or no answer to this question, but still, I'm a little confused about something.
Usually when I ...
3
votes
3answers
155 views
How do you keep track of exception safety guarantees offered by each function
When writing exception safe code, it is necessary to consider the exception safety guarantee (none, basic, strong or no-throw) of all the functions called. Since the compiler offers no help, I was ...
3
votes
3answers
278 views
Multi-threading guidelines: Can't remember my source
I'm trying to track down the source of a particular piece of coding advice I once read.
I'm currently working with a class that has a lot of threading around a single shared resource, controlled by ...
3
votes
11answers
742 views
Class names that start with C
The MFC has all class names that start with C. For example, CFile and CGdiObject. Has anyone seen it used elsewhere? Is there an official naming convention guide from Microsoft that recommends this ...
3
votes
8answers
480 views
Naming guidelines with C#
I have this class:
class DoSomething
{
private int timesDone;
...
}
Which is the right way to named variable 'timesDone'?
Sometimes I see named as m_timesDone. Is this correct? Where I can ...
2
votes
2answers
137 views
The opposite of Hungarian Notation?
Most programmers know of a thing called 'Hungarian Notation', each variable has a nice prefix to denote its data type, i.e.
bIsExciting = false; // Boolean
strName = "Gonzo"; // String
...
2
votes
1answer
32 views
Hungarian notation in Intellij IDEA
I have to do some maintenance on legacy code that uses Hungarian notation (and Systems Hungarian at that). Unfortunately, it's not practical for me to just clean it all out of the codebase.
Local ...
2
votes
5answers
209 views
Hungarian notation in VB.NET?
Our programming teacher taught us to use the Hungarian notation (e.g. intMyInteger, strMyString,...) while programming.
But I have heard somewhere this isn't actually used in the professional world. ...
2
votes
3answers
319 views
Do you use Hungarian notation for control names? [closed]
I totally agree that we should not use Hungarian Notation to name variables. But it seems that Hungarian Notation is still useful to name controls (especially Winform controls). Consider these:
...
2
votes
3answers
294 views
An interesting detail about variable name
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 ...
2
votes
4answers
701 views
Where can I find a cheat sheet for hungarian notation?
I'm working on a legacy COM C++ project that makes use of system hungarian notation. Because it's maintenance of legacy code, the convention is to code in the original style it was written in - our ...
2
votes
1answer
137 views
How to notate nested arrays or structs or classes the hungarian way?
i have an array wich contains another array
Would i notate it this way?
pseudocode:
rgrgTest = newArray(2)
What if the array contains i.e. a struct?
pseudocode:
rggrTest = newArray(2).newStruct()
...
1
vote
3answers
98 views
Getters and Setters in Eclipse for Hungarian Style Members
The project I'm working on dictates hungarian notation for class member variables. Example: String m_foo;
Is it possible to make Eclipse strip the hungarian prefix when generating getters and ...
1
vote
0answers
89 views
What's the appropriate Hungarian Notation prefix for a PHP stdClass? [closed]
If there is one, that is.
(Such as nInteger, chChar, cCount or rgArray.)
1
vote
7answers
402 views
Where does the k prefix for constants come from?
it's a pretty common practice that constants are prefixed with k (e.g. k_pi). But what does the k mean?
Is it simply that c already meant char?
1
vote
1answer
1k views
How to fix violation of StyleCop SA1305 (Hungarian)
My code contains a variable named "m_d3dDevice".
StyleCop complains about this name:
SA1305: The variable name
'm_d3dDevice' begins with a prefix
that looks like Hungarian notation.
Remove ...
1
vote
4answers
519 views
mysql naming convention
I have generally always used some sort of Hungarian Notation for my field names in my tables e.g.
#Table Users
u_id, u_name, u_email etc...
#Posts
p_id, p_u_id, p_title, p_content etc...
But I ...
1
vote
3answers
64 views
How to model a duration in an object oriented way?
I'm dealing with different APIs that use Integers to model duration. Only they can't seem to agree on the units. Sometimes it's seconds and sometimes it's milliseconds.
So far the best way to avoid ...
1
vote
4answers
342 views
Naming advice for replacing/avoiding hungarian notation in UI?
I've stopped using Hungarian notation everywhere except in the UI, where often I have a username label, a user name text box, a user name local variable, a required field validator, a user name ...
0
votes
2answers
54 views
Is There Any Way To Make More Custom Naming Style For ReSharper 6?
My project have a coding convention that:
For local variables (inside methods): Use the format [prefix][variable name]
[Prefix] will be the first character of the data type if variables are of ...
0
votes
1answer
113 views
Regex to add hungarian notation
I'm parsing .h and .cpp files and I need to find/replace all non-Hungarian notated variables with their Hungarian equivalents. "Augh, why?!" you ask? My employer requires Hungarian notation, 'nuff ...
0
votes
1answer
149 views
web page change detection
Currently i am doing my project/thesis for the last semester, and i thought of doing it on "detecting the webpage changes in web". I have read two paper on this topic but i have some confusions
1. in ...
0
votes
2answers
31 views
CClass IInterface
If this is Hungarian notation (CClass and IInterface), is there a way around it? I generally don't use Hungarian notation and I'm not sure if it's wise to do this out of habit.
0
votes
5answers
1k views
Hungarian Notation [closed]
Possible Duplicates:
Why shouldn’t I use “Hungarian Notation”?
Are variable prefixes ( Hungarian ) really necessary anymore?
Do people use the Hungarian Naming Conventions ...
-1
votes
3answers
179 views
Good Naming Convention for Anonymous Types
An anonymous type can be thought of as a "Set Once" Object type, whereas an plain old Object or Variant can be set many times. An object or variant tends to be short lived, while an anonymous type is ...