注冊(cè) | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當(dāng)前位置: 首頁出版圖書科學(xué)技術(shù)計(jì)算機(jī)/網(wǎng)絡(luò)軟件與程序設(shè)計(jì)程序設(shè)計(jì)綜合重構(gòu)手冊(cè)(影印版)

重構(gòu)手冊(cè)(影印版)

重構(gòu)手冊(cè)(影印版)

定 價(jià):¥29.80

作 者: (美)Willian C.Wake著
出版社: 中國電力出版社
叢編項(xiàng): 原版風(fēng)暴系列
標(biāo) 簽: 計(jì)算機(jī)/網(wǎng)絡(luò) 影印版

ISBN: 9787508322087 出版時(shí)間: 2004-06-01 包裝: 平裝
開本: 23cm 頁數(shù): 224 字?jǐn)?shù):  

內(nèi)容簡介

  利用這本通過示例“說話”的實(shí)例手冊(cè),可以充分發(fā)揮重構(gòu)的強(qiáng)大功能,改善現(xiàn)有的軟件。Wake采用了實(shí)例手冊(cè)的方法來組織全書,以幫助了解最為重要的重構(gòu)技術(shù)并將其應(yīng)用于代碼之中。這是一種強(qiáng)調(diào)學(xué)習(xí)的方法,要求你必須充分應(yīng)用本書所提供的諸多技術(shù)。除此之外,這種方法還有一個(gè)附帶的好處,即盡管你當(dāng)前所做的工作也許并非重構(gòu),利用此實(shí)例手冊(cè)也將有助于使你更多地考慮如何創(chuàng)建優(yōu)質(zhì)的代碼。對(duì)于許多人來說,學(xué)習(xí)重構(gòu)的最大障礙是如何找出代碼的“壞味道(smell)”,即可能存在問題之處。本書并非讓你流水帳式地通讀這些壞味道,而是確保你對(duì)這些壞味道有切實(shí)的理解。在此奉上了一系列精心組織的問題,通過這些問題的解決,你將會(huì)茅塞頓開,不僅會(huì)在更深層次上了解重構(gòu),而且還將獲得你自己的一些心得體會(huì)。Wake采用了實(shí)例手冊(cè)的方式來組織全書,以幫助你了解最為重要的重構(gòu)技術(shù)并將其應(yīng)用于代碼之中。這是一種強(qiáng)調(diào)學(xué)習(xí)的方法,要求你必須充分應(yīng)用本書所提供的諸多技術(shù)。除此之外,這種方法還有一個(gè)附帶的好處,即盡管當(dāng)前你所作的工作也許并非重構(gòu),利用本書也將有助于你更多地考慮如何創(chuàng)建優(yōu)質(zhì)的代碼。本書提供了一下優(yōu)秀特性,可令讀者輕松上手:*方便的“壞味道”速查手冊(cè)(嗅探工具)*描述“壞味道”的標(biāo)準(zhǔn)格式*介紹關(guān)鍵重構(gòu)技術(shù)的附錄*支持重構(gòu)的Java工具列表本書面向有Java經(jīng)驗(yàn)的程序員,不過C#或C++程序員對(duì)Java有基本的了解,也能順利地閱讀本書并學(xué)習(xí)書中的示例。本書可以作為MartinFowler所著《重構(gòu)――改善既有代碼的設(shè)計(jì)》(中文版和影印版均已由中國電力出版社出版)一書的姊妹篇,該書對(duì)多種重構(gòu)技術(shù)提供了循序漸進(jìn)的介紹。WillianC.Wake是以為獨(dú)立軟件顧問、教員和培訓(xùn)師。他致力于程序設(shè)計(jì)已逾20年,曾任職于CapitalOneFinancial、MCI/WorldCom和VTLS等世界知名大公司。他還是《ExtremeProgrammingExplored》一書的作者。

作者簡介

  WillianC.Wake是一位獨(dú)立軟件顧問、教員和培訓(xùn)師。他致力于程序設(shè)計(jì)已逾20年,曾任職于CapitalOneFinancial、MCI/WorldCom和VTLS等世界知名大公司。他還是《ExtremeProgrammingExplored》一書的作者。

圖書目錄

Preface. 
1. Roadmap. 
Overview. Section 1: Smells within Classes. Section 2: Smells between Classes. Section 3: Programs to Refactor. A Word on the Challenges. 
I. SMELLS WITHIN CLASSES. 
2. The Refactoring Cycle. 
What Is Refactoring? Smells Are Problems. The Refactoring Cycle. When Are We Done? Inside a Refactoring. Challenges. Conclusion. 
3. Measured Smells. 
Smells Covered. Comments. Long Method. Large Class. Long Parameter List. More Challenges. Conclusion. 
Interlude 1. Smells and Refactorings. 
4. Names. 
Smells Covered. Type Embedded in Name (Including Hungarian). Uncommunicative Name. Inconsistent Names. 
5. Unnecessary Complexity. 
Smells Covered. Dead Code. Speculative Generality. 
Interlude 2. Inverses. 
6. Duplication. 
Smells Covered. Magic Number. Duplicated Code. Alternative Classes with Different Interfaces. Challenges. 
7. Conditional Logic. 
Smells Covered. Null Check. Complicated Boolean Expression. Special Case. Simulated Inheritance (Switch Statement). 
Interlude 3. Design Patterns. 
II. SMELLS BETWEEN CLASSES. 
8. Data. 
Smells Covered. Primitive Obsession. Data Class. Data Clump. Temporary Field. 
9. Inheritance. 
Smells Covered. Refused Bequest. Inappropriate Intimacy (Subclass Form). Lazy Class. 
10. Responsibility. 
Smells Covered. Feature Envy. Inappropriate Intimacy (General Form). Message Chains. Middle Man. Challenges. 
11. Accommodating Change. 
Smells Covered. Divergent Change. Shotgun Surgery. Parallel Inheritance Hierarchies. Combinatorial Explosion. 
12. Library Classes. 
Smells Covered. Incomplete Library Class. Challenges. 
Interlude 4. Gen-A-Refactoring. 
III. PROGRAMS TO REFACTOR. 
13. A Database Example. 
Course.java (Online at www.xp123.com/rwb). Offering.java. Schedule.java. Report.java. TestSchedule.java. TestReport.java. 
14. A Simple Game. 
Development Episodes. 
15. Catalog. 
Introduction. Path 1: Catalog.itemsMatching(query). Path 2: Query.matchesIn(catalog). Path 3: Process(catalog.data, query.data). Conclusion. 
16. Planning Game Simulator. 
Part 1: Original Code. Part 2: Redistributing Features. Removing Duplication, Selection Troubles, and a Few Burrs. Part 3: Pushing the Code Further. 
17. Where to Go from Here. 
Books. Admonitions. Exercises to Try. Web Sites. 
IV. APPENDIXES. 
A: Answers to Selected Questions. 
B: Java Refactoring Tools. 
C: Inverses for Refactorings. 
D: Key Refactorings. 
Bibliography. 
Index.

本目錄推薦

掃描二維碼
Copyright ? 讀書網(wǎng) ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號(hào) 鄂公網(wǎng)安備 42010302001612號(hào)