Slide 12
Slide 12 text
jgs
460 00001010
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