Keep in mind: code reads 10 times more than it is written.!
You really write code that is often read over and over again. The more meaningful your names are, the more comprehensible the code is.
You declare classes, fields, methods, variables, and many others. You think about them, you develop a well-defined structure. You make tough decisions all the time. The names you give your entities (classes, fields, ...) reflect all your thoughts on this subject. They reflect the intent of your code.
Conclusion: names are the most important properties of your code. So, you should always think deeply about the names that you give your variables, methods, etc. And you should not always cut them in any way.
source share