cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Lounge
Just a small wonder
Just a small wonder
Sep 16, 2008 at 12:23am UTC
QWERTYman
(461)
I have seen, on numerous occasions, stuff like
1
2
3
int
iInt;
double
dNum;
bool
bZero_or_one;
Is this aesthetic, necessary, or a format choice?
Just a thought.
Sep 16, 2008 at 1:54am UTC
firedraco
(6247)
I believe that is the Hungarian notation for variables.
http://en.wikipedia.org/wiki/Hungarian_notation
Sep 17, 2008 at 12:41am UTC
helios
(17607)
It is what the feeble-minded use to remember the types of their variables and objects.
Sep 17, 2008 at 7:52pm UTC
QWERTYman
(461)
If they are so "feeble-minded", why don't we just tell them not to via Jedi mind trick?
...
I am such a nerd.
Sep 17, 2008 at 7:53pm UTC
Zaita
(2770)
I am quite a fan of Hungarian notation for variable names. :)
It's not so much for you to remember, but it's an easy way for other developers to pickup on the type of variable they are looking at when reading the code.
Topic archived. No new replies allowed.