One of the factors in looking at this is why are we refactoring in the first
place. One of my concerns with many proponents of lightweight methods and
refactoring (not all as I too am a proponent of refactoring and lightweight
methods) is that they don't make the distinction of why the refactoring is
needed. Refactoring to fix "code smell" to my mind is because people didn't
understand the basics of good design in the first place. To write great
code, you must write code that:
1. Runs all the tests.
2. Contains no duplication (once and only once)
3. Expresses all the ideas you want to express.
a) Do not put the implementation of unrelated ideas in the same
method.
b) Classes should organize ideas in a readily understandable way.
c) Use appropriate names so you don't have to explain method, member
or class names with additional documentation
d) Methods and classes should be implemented so they can be
understood totally from their public interfaces. This not only allows
for up-front testing, but decreases coupling.
4. Minimizes classes and methods. This is actually redundant, but is a
reminder that we are trying to make this simple and concise
In my mind, refactoring should not be needed to fix code if you are
following these rules. However, refactoring is definitely needed to:
1) fix legacy code once your understanding of patterns has increased
2) prepare code for new functions resulting from changing requirements or
the next development iteration
place. One of my concerns with many proponents of lightweight methods and
refactoring (not all as I too am a proponent of refactoring and lightweight
methods) is that they don't make the distinction of why the refactoring is
needed. Refactoring to fix "code smell" to my mind is because people didn't
understand the basics of good design in the first place. To write great
code, you must write code that:
1. Runs all the tests.
2. Contains no duplication (once and only once)
3. Expresses all the ideas you want to express.
a) Do not put the implementation of unrelated ideas in the same
method.
b) Classes should organize ideas in a readily understandable way.
c) Use appropriate names so you don't have to explain method, member
or class names with additional documentation
d) Methods and classes should be implemented so they can be
understood totally from their public interfaces. This not only allows
for up-front testing, but decreases coupling.
4. Minimizes classes and methods. This is actually redundant, but is a
reminder that we are trying to make this simple and concise
In my mind, refactoring should not be needed to fix code if you are
following these rules. However, refactoring is definitely needed to:
1) fix legacy code once your understanding of patterns has increased
2) prepare code for new functions resulting from changing requirements or
the next development iteration
博客探讨了代码重构的原因,指出很多轻量级方法和重构的支持者未区分重构的必要性。认为编写优质代码应满足运行所有测试、无重复、清晰表达想法、最小化类和方法等规则。同时提到重构在理解模式提升时修复遗留代码,以及为新功能做准备时是必要的。

被折叠的 条评论
为什么被折叠?



