深入浅出设计模式(英文影印版)(2005年第15届Jolt获奖作品)(被《程序员》等机构评选为2006年最受读者喜爱的十大IT图书之一)
基本信息
- 原书名: Head First Design Patterns
- 原出版社: O'Reilly
- 作者: (美)Elisabeth Freeman,Eric Freeman,Bert Bates,Kathy Sierra [作译者介绍]
- 丛书名: 东南大学出版社O'REILLY图书系列
- 出版社:东南大学出版社
- ISBN:7564101652
- 上架时间:2006-1-4
- 出版日期:2005 年11月
- 开本:16开
- 页码:680
- 版次:1-1
- 所属分类:
计算机 > 软件工程及软件方法学 > 设计模式
编辑推荐
本书荣获2005年第十五届Jolt通用类图书震撼大奖。
被china-pub会员评为“2007年我最喜爱的十大技术图书”之一
被《程序员》等机构评选为2006年最受读者喜爱的十大IT图书之一
本书趋近完美,因为它在提供专业知识的同时,仍然具有相当高的可读性。叙述权威、文笔优美。
推荐阅读
内容简介回到顶部↑
你不想重新发明车轮(或者更差的是,没有充气车胎的轮子),所以你从设计模式中寻求帮助——设计模式是过去人们面对同样的软件设计问题所得到的经验。 有了设计模式,就可以利用其他人的实践经验的精华,因此省下的时间可以用在其他的事情上,如:更有挑战性的事情、更复杂的事情以及更有趣的事情。你想要学习:
·重要的模式
·何时使用某个模式,为何使用该模式
·如何在你自己的设计中马上采用这些模式
·何时不该使用该模式(如何避免滥用模式)
·某个模式是依据哪些面向对象设计原理而设计出来的
更重要的是,你想在学习设计模式的过程中,不感觉到昏昏欲睡。如果你曾经读过任何一本深入浅出(head first)系列书籍,你就会知道能够从本书中得到的是:透过丰富的视觉效果让你的大脑充分地运作。本书的编写运用许多最新的研究,包括神经生物学、认知科学以及学习理论,这使得这本书能够将这些设计模式深深地烙印在你的脑海中,不容易被遗忘。你将会更擅长于解决软件设计中的问题,并能够和你的团队成员用模式的语言来更好地沟通。
“我昨天收到了这本书,然后就开始阅读……我简直欲罢不能。酷毙了!内容相当有趣,涵盖层面很广,而且切中要点。这本书让我感到印象深刻。”
——erich gamma
ibm顶级工程师、《design patterns》作者之一
“我感到读这本书的效果等同于读一千磅重的同类书的效果。”
——ward cunningham
wiki发明者、hillside group创始人
“本书趋近完美,因为它在提供专业知识的同时,仍然具有相当高的可读性。叙述权威、文笔优美。”
——david gelernter
耶鲁大学计算机科学系教授
·重要的模式
·何时使用某个模式,为何使用该模式
·如何在你自己的设计中马上采用这些模式
·何时不该使用该模式(如何避免滥用模式)
·某个模式是依据哪些面向对象设计原理而设计出来的
更重要的是,你想在学习设计模式的过程中,不感觉到昏昏欲睡。如果你曾经读过任何一本深入浅出(head first)系列书籍,你就会知道能够从本书中得到的是:透过丰富的视觉效果让你的大脑充分地运作。本书的编写运用许多最新的研究,包括神经生物学、认知科学以及学习理论,这使得这本书能够将这些设计模式深深地烙印在你的脑海中,不容易被遗忘。你将会更擅长于解决软件设计中的问题,并能够和你的团队成员用模式的语言来更好地沟通。
“我昨天收到了这本书,然后就开始阅读……我简直欲罢不能。酷毙了!内容相当有趣,涵盖层面很广,而且切中要点。这本书让我感到印象深刻。”
——erich gamma
ibm顶级工程师、《design patterns》作者之一
“我感到读这本书的效果等同于读一千磅重的同类书的效果。”
——ward cunningham
wiki发明者、hillside group创始人
“本书趋近完美,因为它在提供专业知识的同时,仍然具有相当高的可读性。叙述权威、文笔优美。”
——david gelernter
耶鲁大学计算机科学系教授
作译者回到顶部↑
本书提供作译者介绍
Eric Freeman以及Elisabeth Freeman是作家、教育家以及技术发明者。他们在迪斯尼公司领导了四年数字媒体以及因特网的开发,后来他们将这些经验应用在他们自己的媒体中,包括这本书中。Eric具有耶鲁大学的计算机科学博士学位,Elisbath具有耶鲁大学的计算机科学硕士学位。
Kathy Sierra(javaranch.com的创始者)以及Bert Bates是畅销的深入浅出(Head First)系列书籍的策划者,也是Sun公司Java开发员认证考试的开发者。
.. << 查看详细
Kathy Sierra(javaranch.com的创始者)以及Bert Bates是畅销的深入浅出(Head First)系列书籍的策划者,也是Sun公司Java开发员认证考试的开发者。
.. << 查看详细
目录回到顶部↑
1 welcome to design patterns: an introduction.
2 keeping your objects in the know: the observer pattern
3 decorating objects: the decorator pattern
4 baking with oo goodness: the factory pattern
5 one of a kind objects: the singleton pattern
6 encapsulating invocation: the command pattern
7 being adaptive: the adapter and facade patterns..
8 encapsulating algorithms: thetemplate method pattern
9 well-managed collections: the iterator and composite patterns
10 the state of things: the state pattern
11 controlling object access: the proxy pattern
12 patterns of patterns: compound patterns
13 patterns in the real world: better living with patterns
14 appendix: leftover patterns...
2 keeping your objects in the know: the observer pattern
3 decorating objects: the decorator pattern
4 baking with oo goodness: the factory pattern
5 one of a kind objects: the singleton pattern
6 encapsulating invocation: the command pattern
7 being adaptive: the adapter and facade patterns..
8 encapsulating algorithms: thetemplate method pattern
9 well-managed collections: the iterator and composite patterns
10 the state of things: the state pattern
11 controlling object access: the proxy pattern
12 patterns of patterns: compound patterns
13 patterns in the real world: better living with patterns
14 appendix: leftover patterns...


点击看大图









加载中...
