Good Books about Object design

Posts   
 
    
omar avatar
omar
User
Posts: 569
Joined: 15-Oct-2004
# Posted on: 28-Apr-2006 09:25:34   

I've started reading Object Design (Roles, Responsibilities, and Collaborations and it really wet my appetite for more reading about the subject.

Can you guys share your reading preferences about this subject?

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39798
Joined: 17-Aug-2003
# Posted on: 28-Apr-2006 09:36:29   

The first 100 pages in "Design Patterns" (Gang of four). simple_smile

Frans Bouma | Lead developer LLBLGen Pro
rblinton
User
Posts: 12
Joined: 11-Apr-2006
# Posted on: 28-Apr-2006 16:23:47   

I'm reading "Head First Design Patterns" which is recommended by Gamma (of the original GOF). Examples are in Java but I highly recommend it as a primer to objects and patterns.

ISBN: 0-596-00712-4

Rob

Ad
User
Posts: 19
Joined: 21-Apr-2006
# Posted on: 28-Apr-2006 17:18:40   

How to Think Like a Computer Scientist: Learning with Python

Fairly good book, in spite of the title. Free (download) too:

http://greenteapress.com/thinkpython/

Is for a first knowledge of objects, not for patterns.

pat
User
Posts: 215
Joined: 02-Mar-2006
# Posted on: 29-Apr-2006 08:38:16   

I started reading Foundations of Object-Oriented Programming Using .NET 2.0 Patterns and so far I really like it http://www.apress.com/book/bookDisplay.html?bID=10019.

pilotboba
User
Posts: 434
Joined: 05-Aug-2005
# Posted on: 01-May-2006 18:56:07   

omar wrote:

Can you guys share your reading preferences about this subject?

If you want really Generic stuff... anything by Ambler.

The Object Primer and Object Applications That Work.

Also look at Object Thinking by David West.

While Frans design patterns suggestion is good, it is also very abstract. For an excellent practicle book in implementing the patterns Head First Design Patterns is excellent. The sample code is in Java, but if you can read and understand C# you can follow the code and implement most of it in C# with minor syntax changes.

BOb