Giving good names to all the things is one of the hardest tasks in programming.
Maintaining code is harder than writing it in the first place. Readability greatly impacts maintainability. Favor readability.
Future you (and anyone else reading your code six [weeks/months/years] from now) will greatly appreciate things you name well.
Readability rules:
- Names must be clear
- Names must be concise
- Names must be consistent
(This works sort of like a fire triangle with heat, fuel, and oxygen: if you omit one element, the thing itself can’t exist.)
Balance clear with concise.
x
tells you almost nothing, but is concise.
ThisExplicitlyNamedVariableThatStatesExactlyWhatItIsForIsClearButHardToDigest
.
As with any other writing, strive to be consistent. If you can’t be globally consistent, favor local consistency.
One way to work at consistency is by convention. The source language itself will often have a certain style or specific behaviors imposed by conventions.
In Go, exported functions are written with a leading UppercaseLetter
, while leading lowercaseLetter
functions are not exported.
In Python and JavaScript, a leading underscore _variable
often means the variable shouldn’t be exported, but it’s a naming convention rather than a language convention.
Another one you see this way is PascalCasing
for class names and camelCasing
for names of function parameters. (Again, generally not a convention enforced by a language.)
One thing not to do, is so-called Hungarian notation of variable names. (Microsoft did it this way for a time, and even implmented a style around it.)
One exception to that seems to be in UI. For example, in Godot, there are a number of UI container nodes that are kind of wordy. If you adopt a substitute naming convention, this kind of thing:
Control
MarginContainer
HBoxContainer
PanelContainer
VBoxContainer
PanelContriner2
ScrollContainer
MarginContainer
VBoxContainer
Can be this instead, and I think there’s some economy there:
UI
Mat
Col
Left
Row
Right
Scroll
Mat
Row
Be mindful of scope.
If a function is relatively short and has only one parameter, you could name the parameter x
or value
. But it doesn’t take long before a generic name for a variable becomes something you have to scroll back up the function body to read again if it’s not clearly named.
Basically, the shorter the reach and lifespan of the thing you name, the shorter and more generic the name can be.
In my own code:
i, j, k
— loop variables
a, b, c
— strings
x, y, z
— mathematical or coordinate values
t, d, m, h, p
— expressions involving time
Depending on language-enforced conventions, things like arrays or collections could be uppercase versions of the above (like A, B, C
for a collection of strings). Another way to do it is item
and items
.
Smaller names generally lead to less cognitive load, but again, the longer that variable has to hang around, and the further you need to use it from the context it was introduced, the longer and more specific the name probably ought to be.