Possible Duplicate:
List of freely available programming books
Hi,
I would like have a in depth knowledge in OOP and Design patterns to improve my programming skill. Can anyone suggest good Reference books for this.
Hi, I would like have a in depth knowledge in OOP and Design patterns to improve my programming skill. Can anyone suggest good Reference books for this. |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
If you want to improve your programming skill, look to broaden instead of digging deeper into OOP. Become conversationally fluent in the following styles of language (examples in brackets):
Learning about entirely new ways to approach problems will improve your programming skill far more than reading books filled with cookie cutter templates (which is not what design patterns are supposed to be, I know, but which is what they almost invariably turn out to be in the hands of novices). Once you've broadened your mental toolkit with these alternative approaches to thinking, you'll have the seasoned background needed to see design patterns for what they really are and what they're really intended to do. But if you want to insist on a book, this is the starting point. No design patterns there either, I'll note, but if you stick with it you'll definitely come out a better programmer. edited to add Note that when you're learning a programming paradigm, even if you're trying it out in a multi-paradigm language try to stick with the purest form of the paradigm for pedagogical purposes. The point is to learn the form, not to learn how to get around the form with what you're currently comfortable using. |
||||
|
|
|
I'd recommend some books in this order: first, read Robert Martin's Clean Code followed by his Agile Software Development Principles, Patterns and Practices. He has a C# version of this, too, if that's where you're coming from. Then read the GoF Design Patterns book. It's the definitive reference work, but it's also pretty dry stuff. (I like Martin's examples better and his SOLID principles help put the patterns in context, but if you really want definitive information about the patterns this is where you go.) Then go read at least the first couple chapters of Structure and Interpretation of Computer Programs. |
|||||||
|