Slide 5
Slide 5 text
jgs
460 00001011
Clean Code Principles
§ Readability
Use Meaningful Names for Classes, Methods, and Variables
Follow coding guidelines: e.g., read the Java Style Reference
§ KISS (Keep It Simple by K. Johnson) for your reader
Small functions that do one thing
§ DRY (Do not Repeat Yourself):
Avoid Code Bloat
§ Decoupling