Clean Code 读书笔记一——什么是 clean code?

文章目录

  • 什么是 clean code ?

什么是 clean code ?

大神对优雅代码的定义:

	I like my code to be elegant and efficient. The
logic should be  straightforward to make it hard
for bugs to hide, the dependencies minimal to
ease maintenance, error handling complete
according to an articulated strategy, and per-
formance close to optimal so as not to tempt
people to make the code messy with unprinci-
pled optimizations. Clean code does one thing
well.
	                 ———  Bjarne Stroustrup, inventor of C++
						 and author of The C++ Programming
						 Language

	Clean code is simple and direct. Clean code
reads like well-written prose. Clean code never
obscures the designer’s intent but rather is full
of crisp abstractions and straightforward lines
of control.

				 ———  Grady Booch, author of Object
					 Oriented Analysis and Design with
					 Applications

Clean code can be read, and enhanced by a
developer other than its original author. It has
unit and acceptance tests. It has meaningful
names. It provides one way rather than many
ways for doing one thing. It has minimal depen-
dencies, which are explicitly defined, and pro-
vides a clear and minimal API. Code should be
literate since depending on the language, not all
necessary information can be expressed clearly
in code alone.
							 ——— “Big” Dave Thomas, founder
								 of OTI, godfather of the
								 Eclipse strategy
								 							 
In recent years I begin, and nearly end, with Beck’s
	rules of simple code. In priority order, simple code:
	• Runs all the tests;
	• Contains no duplication;
	• Expresses all the design ideas that are in the
	system;
	• Minimizes the number of entities such as classes,
	methods, functions, and the like.
		
Of these, I focus mostly on duplication. 
When the same thing is done over and over,it’s a sign that there is an idea in our mind that is not well represented in the code. I try to figure out what it is. Then I try to express that idea more clearly. Expressiveness to me includes meaningful names, and I am likely to change the names of things several times before I settle in. 

With modern coding tools such as Eclipse,renaming is quite inexpensive, so it doesn’t trouble me to change. Expressiveness goesbeyond names, however. I also look at whether an object or method is doing more than one thing. If it’s an object, it probably needs to be broken into two or more objects. If it’s a method, I will always use the Extract Method refactoring on it, resulting in one method that says more clearly what it does, and some submethods saying how it is done.

In addition, the collection abstraction often calls my attention to what’s “really” going on, and keeps me from running down the path of implementing arbitrary collection behavior when all I really need is a few fairly simple ways of finding what I want.  		

Reduced duplication, high expressiveness, and early building of simple abstractions.
That’s what makes clean code for me.
						  ———   Ron Jeffries, author of Extreme Programming Installed and Extreme Programming
				                      Adventures in C#(值得反复看看)

要做到

  • 直白易读
  • 意图明确,实事求是,拒绝让读者猜测
  • 分单元 ,要有TestCase验收测试
    (如果你的代码写的够简洁,做testCase会很清晰,测试的覆盖率会很高)
  • 精心关注细节,如 一个命名等等
  • 拒绝重复、高抽象度
    一个对象、方法、类 只做一件事情,否则抽象出来,单独实现。
    一个方法抽象出主要逻辑目的,然后实现,并在其中分为子逻辑去实现

好处是暴漏出bug,解耦等等

你可能感兴趣的:(Clean-code)