Best books for Object oriented Software designing

2019-04-16 07:15发布

There are various books written for Design Patterns ranging from "Design Patterns: Elements of Reusable Object-Oriented Software" to "Pattern-Oriented Software Architecture Volume 1-4". But, I did not found any good book which explains Objects Oriented Design, how to design classes, interfaces, etc for large scale and complex systems and make system design as simple as possible through those techniques.

Please share your thoughts about it.

2条回答
我命由我不由天
2楼-- · 2019-04-16 07:50

A couple of the most obvious:

  1. Object Oriented Analysis and Design With Applications (Grady Booch)
  2. Object Oriented Software Construction (Bertrand Meyer)
查看更多
啃猪蹄的小仙女
3楼-- · 2019-04-16 08:00

IMHO good OOD is about keeping modules as small, compact and consistent as possible (e.g. the "SOLID" principles). Therefore, good large-scale OOD is "just" a bunch of good small-scale OOD together.

The only thing that really changes in larger scale systems is the importance of getting the smaller scale bits right. Get your abstractions in good order before you get down to actual code.

查看更多
登录 后发表回答