Prefixes
Somehow, package name is not enough to identify a class. We should think harder before we decide to prefix all classes names with, for example company name or company first letter.
Company or product prefixes
Lets say we work for company named UmpaLumpaOfScience
that is developing a product named science
. We should probably avoid using these kind of prefixes.
If there is a conflict in names in one class, probably something else is wrong our class design and we need to rethink how our classes exchange data and how they work together.
m
for member s
for static
m
for member s
for staticJust don't do this.
Last updated
Was this helpful?