Hungarian notation is a language-independent naming convention in which an identifier's prefix indicates its type. Examples include iCustomerId, sFirstName, etc.
1
vote
2answers
35 views
Ruby naming conventions? [closed]
For instance, for constants, is it:
THIS_CONSTANT
This_Constant
ThisConstant
Or something else...?
In fact, is there any sort of (quasi|)official reference for this whole subject?
I'd also like ...
0
votes
0answers
43 views
Anyone understand Hungarian Notation? [closed]
I was wondering what hungarian notation is? Like what would an example be of Hungarian Notation used in a function prototype? From what I understand, it is just a way of naming to help the reader ...
1
vote
2answers
69 views
sz and pwsz prefixes in WinAPI
I'm a little confused now with the hungarian notation prefixes in WinAPI for CHAR strings and WCHAR strings.
When we use a CHAR string usually such a prefix is used:
CHAR szString[] = "Hello";
We ...
1
vote
1answer
54 views
Hungarian naming convention: mixed type
I'm using the HNC in this way for variables in PHP: $p_nId. p stands for parameter, so the scope of the variable, n for the type (though PHP is loosely typed, it gives some structure), so numeral ...
1
vote
1answer
98 views
How does Visual Assist X rename symbol work?
I want to remove the Hungarian Notation from a gigantic piece of code,but I'm not sure how the addon handles replaces.I mean - if I have:
void DoNothing(int *pNothing)
{
pNothing = 0;
};
And I ...
1
vote
1answer
60 views
“Codesniffer” for PHP Hungarian Notation
I am using PHAN in my projects and wonder if there is some kind of codesniffer to validate the code is PHAN compliant.
0
votes
1answer
253 views
If Hungarian notation is mostly disparaged why is “UpperCamel for constructors vs lowerCamel for everything else” so popular? [closed]
It seems to be the case at least here on StackOverflow that Hungarian notation is most often considered to be a bad thing (though a minority are still in favour).
Now in the JavaScript world where ...
1
vote
3answers
123 views
Hungarian Notation in Fortran
Is it considered good or bad practice? A friend of mine told me that, generally speaking, it was not considered a good practice in most languages now a days, but that he thought he heard that this was ...
1
vote
0answers
124 views
old-school Hungarian Notation “mz” prefix
Every so often, I need to dig into older APIs, and I keep running across functions with an "mz" prefix for API calls. (Example, functions like mzListDocuments()
I'm just curious what this "mz" ...
4
votes
1answer
196 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 ...
3
votes
5answers
387 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 ...
0
votes
2answers
164 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 ...
1
vote
3answers
303 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 ...
3
votes
2answers
512 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
75 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
0answers
186 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.)
3
votes
3answers
272 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 ...
0
votes
1answer
181 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 ...
4
votes
5answers
798 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. ...
0
votes
1answer
348 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 ...
5
votes
2answers
404 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 ...
3
votes
7answers
1k 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?
3
votes
2answers
3k 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 ...
11
votes
1answer
747 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 ...
0
votes
2answers
51 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.
3
votes
2answers
725 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:
...
3
votes
3answers
872 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 ...
1
vote
4answers
906 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 ...
6
votes
4answers
466 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 ...
1
vote
3answers
72 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 ...
3
votes
11answers
1k 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 ...
12
votes
5answers
533 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, ...
2
votes
4answers
1k 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 ...
0
votes
3answers
509 views
Excel-VBA: Variable Names, Hungarian Notation and Variable Naming Best Practices
When I program in Excel-VBA I use Hungarian notation. Worksheet variables start with ws, workbook variables start wb, etc.
When I use integers, I always use longs, because in the past I have exceeded ...
3
votes
8answers
559 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 ...
0
votes
5answers
2k views
What do you think of Hungarian Notation, especially in the context of Java? [duplicate]
Possible Duplicates:
Why shouldn’t I use “Hungarian Notation”?
Are variable prefixes ( Hungarian ) really necessary anymore?
Do people use the Hungarian Naming Conventions ...
2
votes
1answer
233 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()
...
2
votes
4answers
484 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 ...
-1
votes
3answers
205 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 ...
20
votes
3answers
4k 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:
...
6
votes
14answers
1k 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.
...
36
votes
29answers
5k views
Are variable prefixes (“Hungarian notation”) really necessary anymore? [closed]
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.
8
votes
20answers
846 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 ...
11
votes
22answers
7k views
Good Examples of Hungarian Notation? [closed]
This question is to seek out 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 ...
4
votes
19answers
2k 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 ...
75
votes
37answers
17k views
Why shouldn't I use “Hungarian Notation”? [closed]
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 ...
19
votes
20answers
3k views
Do people use the Hungarian Naming Conventions in the real world? [closed]
Is it worth learning the convention or is it a bane to readability and maintainability?
