Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Read this: stackoverflow.com/questions/194812/… – Harry Joy Apr 20 '11 at 12:38

marked as duplicate by Robert Harvey Apr 20 '11 at 14:23

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.

2 Answers

up vote 1 down vote accepted

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.

share|improve this answer

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.

share|improve this answer
2  
I think you have the order exactly backwards! – Jason Apr 20 '11 at 13:08
@Jason: yeah, I was trying to order them by approachability, assuming the reader is used to conventional imperative programming. But putting SICP first would not be a bad idea. – Nathan Hughes Apr 20 '11 at 13:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.