Scientific evidence that supports using long variable names instead of abbreviations?
Posted
by
Sebastian Dietz
on Programmers
See other posts from Programmers
or by Sebastian Dietz
Published on 2011-01-03T14:26:59Z
Indexed on
2011/01/03
16:00 UTC
Read the original article
Hit count: 375
language-agnostic
|coding-style
|naming-conventions
|variable-naming
|variable-names
Is there any scientific evidence that the human brain can read and understand fully written variable names better/faster than abbreviated ones?
Like
PersistenceManager persistenceManager;
in contrast to
PersistenceManager pm;
I have the impression that I get a better grasp of code that does not use abbreviations, even if the abbreviations would have been commonly used throughout the codebase. Can this individual feeling be backed up by any studies?
© Programmers or respective owner