Re: Help with Naming Conventions
Daz wrote:
Daniel Aarno wrote:
Have you considered you might be writing too long functions or not structuring
your arguments together in logical groups enough. Generally most functions
should not be more than 10-50 lines of code and contain 5 variables or so. If
you can't come up with names that are not to long you can put comments for each
variable in the beginning and try to document your algorithm, not your code.
Same goes for arguments to functions, they should be descriptive and few
(otherwise consider grouping them in a struct).
Thanks for that Daniel, I appreciate your input. I think the main
problem I am trying to address more than anything is consistancy. The
only trouble being, I can't seem to find one easy way to name functions
and variables that suits every situation. Take Hungarian Notation for
example. It has it's good points and it's bad points. Some people
prefer it, others do not.
Hungarian notation doesn't scale particularly well for user-defined
types, IMHO, and that is reason enough to discard it in C++. Daniel's
advice above is good. Listen to him.
Also, I prefer to name functions as Verb() or VerbObject() [e.g.,
Close(), SearchTree(), HasTerminated()]. The object-less versions are
more useful for member functions in the public interface of a class
since, e.g., there could be many things that need closing, but calling
file.Close() is clear and not redundant like file.CloseFile().
As for variables, keep them in as small a scope as possible, and you'll
prevent many name collisions and make things easier to follow. Most
programmers use some convention for identifying member variables such
as a trailing underscore or a leading m_, but beyond that, just use
meaningful names within that scope. Some also use a similar convention
for static and global objects.
You could adopt virtually any style and write readable code with it.
For instance, you might name a variable for holding the number of
elements elem_count, n_elems, arraySize, etc. All of these are fine --
just pick one style and go with it. Consistency is more important than
the particular style. One might choose to use underscores to separate
words (like the standard library does) over CamelCase (like Microsoft
does), and that's not really a big deal as long as you're consistent.
Cheers! --M