尽管糟糕的代码也能运行,但如果代码不整洁,会使整个开发团队泥足深陷,写得不好的代码每年都要耗费难以计数的时间和资源。然而这种情况并非无法避免。
著名软件专家Robert C.Martin在本书中为你呈现出了革命性的视野。Martin携同Object Menlor公司的同事,从他们有关整洁代码的最佳敏捷实践中提炼出软件技艺的价值观,以飨读者,让你成为更优秀的程序员——只要你着手研读本书。
阅读本书需要你做些什么呢?你将阅读代码——大量代码。本书促使你思考代码中何谓正确,何谓错误。更重要的是。本书将促使你重新评估自己的专业价值观,以及对自己技艺的承诺。
从本书中可以学到:
·好代码和糟糕的代码之间的区别;
·如何编写好代码。如何将糟糕的代码转化为好代码;
·如何创建好名称、好函数、好对象和好类;
·如何格式化代码以实现其可读性的最大化;
·如何在不妨碍代码逻辑的前提下充分实现错误处理;
·如何进行单元测试和测试驱动开发。
软件质量,不但依赖于架构及项目管理,而且与代码质量紧密相关。这一点,无论是敏捷开发流派还是传统开发流派,都不得不承认。
本书提出一种观念:代码质量与其整洁度成正比。干净的代码,既在质量上较为可靠,也为后期维护、升级奠定了良好基础。作为编程领域的佼佼者,本书作者给出了一系列行之有效的整洁代码操作实践。这些实践在本书中体现为一条条规则(或称“启示”),并辅以来自现实项目的正、反两面的范例。只要遵循这些规则,就能编写出干净的代码,从而有效提升代码质量。
本书阅读对象为一切有志于改善代码质量的程序员及技术经理。书中介绍的规则均来自作者多年的实践经验,涵盖从命名到重构的多个编程方面,虽为一“家”之言,然诚有可资借鉴的价值。
Chapter 1:Clean Code
There Will Be Code
Bad Code
The Total Cost Of Owning a Mess
The Grand Redesign in the Sky
Attitude
The Primal Conundrum
The Art of Clean Code?
What Is Clean Code?
Schools of Thought
Wle Are Authors
The Bov Scout Rule
Prequel and Principles
Conclusion
Bibliography
Chapter 2:Meaningful Names
Introduction
Use Intention-Revealing Names
Avoid Disinformation
Make Meaningful Distinctions
Use Pronounceable Names
Use Searchable Names
Avoid Encodings
Hungarian Notation
Member Prefixes
Interfaces and Implememations
Avoid Mental Mapping
Class Names
Method Names
Don't Be Cute
Pick One Word per Concept
Don't Pun
Use Solution Domain Names
Use Problem Domain Names
Add Meaningful Context
Don'tAdd Gratuitous Context
Final Words
Chapter 3:Functions
Small!
Blocks and Indenting
Do one Thing
Sections within Functions
One Level of Abstraction per Function
Reading Code from Top to Bottom:The Stepdown Rule
Switch Statements
Use Descriptive Names
Function Arguments
Common Monadic Forms
Flag Arguments
Dyadic Functions
Triads
Argument Objects
Argument Lists
Verbs and Keywords
Have No side Efrects
Output Arguments
Command Query Separation
……
Chapter 4:Comments
Chapter 5:Formatting
Chapter 6:Objects and Data Structures
Chapter 7:Error Handling
Chapter 8:Boundaries
Chapter 9:Unit Tests
Chapter 10:Classes
Chapter 11:Systems
Chapter 12:Emergence
Chapter 13:Concurrency
Chapter 14:Successive Refinement
Chapter 15:JUnit Internals
Chapter 16:Refactoring SerialDate
Chapter 17:Smells and Heuristics
Appendix A:ConcurrencyⅡ
Appendix B:org.jfree.date.SerialDate
Appendix C:Cross References of Heuristics
Epilogue
Index