vote up 0 vote down star

Hey Stack overflow

what's better? nNodes or nodeCount

flag

7 Answers

vote up 2 vote down check

The second, since it reads properly.

link|flag
vote up 7 vote down

This is simply a style issue. I prefer nodeCount because I find it clearer. nNodes is more similar to Hungarian notation, but doesn't say it's a count variable.

link|flag
If your code convention is that "nSomething" always stands for "number of somethings", you don't need to say again that it's a count variable. – ShreevatsaR Feb 14 '09 at 6:58
Yes @ShreevatsaR, I agree with you. But if there is no convention (yet) then nodeCount seems clearer (to me). – Hosam Aly Feb 14 '09 at 7:02
vote up 3 vote down

Whichever is consistent with the rest of your code base / style guide / dev team.

link|flag
vote up 2 vote down

It really depends on the accepted naming conventions of whichever language you are using, but nodeCount is more readable. If you are using Java, you can use the Java Naming Conventions guide.

link|flag
vote up 2 vote down

numNodes ?

link|flag
vote up 1 vote down

The first one in C++, the second one in C#/Java.

Though this is really very subjective question and should be answered by your team/company guidelines.

link|flag
vote up 0 vote down

Avoid putting "count" into variable names, too easy to get an obscene typing error.

link|flag
nodeCunt? haha thats funny! not – Iraimbilanja Feb 14 '09 at 7:59

Your Answer

Get an OpenID
or
never shown

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