Hey Stack overflow
what's better? nNodes or nodeCount
|
|
|||
|
|
|
|
The second, since it reads properly. |
|||
|
|
|
|
This is simply a style issue. I prefer |
||||
|
|
|
Whichever is consistent with the rest of your code base / style guide / dev team. |
|||
|
|
|
|
It really depends on the accepted naming conventions of whichever language you are using, but |
|||
|
|
|
|
numNodes ? |
|||
|
|
|
|
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. |
|||
|
|
|
|
Avoid putting "count" into variable names, too easy to get an obscene typing error. |
|||
|