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

I don't know if I can post this topic here, so if I can't, I'm sorry :)

So, I found the book "Design Patterns: Elements of Reusable Object-Oriented Software" on amazon (http://www.amazon.fr/Design-Patterns-Elements-Reusable-Object-Oriented/dp/0201633612). This book presents design pattern in a C++ environment.

Does someone know a similar book for a Java/Java EE environment ? Or, what books advice me to improve my knowledge in design pattern?

I know the foundation and a little more about design pattern, so I don't want a presentation book but instead an advanced book.

share|improve this question
3  
Scroll down and see right side under Related, It would be helpful – Jigar Joshi May 4 '11 at 11:52

closed as not constructive by Bill the Lizard Sep 26 '11 at 13:42

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

up vote 6 down vote accepted

I have read a few design patterns books in the past, most of them are far from good. Some simply say again what the good authors have already written, allegedly better (I rarely agree).

The best of the ones I have read are certainly the following:

I created a design patterns study group in the office to benefit from the experience and knowledge of all colleagues here. We used the books cited above for our weekly design pattern discussion.

None of them are the kind of book that you simply read and magically understand everything. This kind of books require studying, and it is probable that the more experience you have, the better you understand their statements.

In my opinion, design patterns are about designing software, they are not about any particular programming language. The authors may choose to use different languages to explain the patterns. Some use C++ like the one you describe. Martin Fowler uses Java and C# in the book I cited above. In Head First examples are in Java. But again, the language should not be an impediment to understand a pattern. The language is just a tool to express an implementation of them.

share|improve this answer
Yes once again, I know design pattern is independant of language but once again, it's easier to learn with a known langage rather an unknown language ;) – Kiva May 4 '11 at 18:00

I bet this has been answered before, but you could do a lot worse that Head First Design Patterns by ORA.

share|improve this answer

Design patterns are intended to be transferable between languages; any design pattern that is described in C++ will be able to be transcribed to Java. Books generally use one language out of preference for examples.

I would recommend Head First Design Patters by ORA or the book you mentioned above by Gamma.

Hope this helps.

share|improve this answer
Yes I know that, but it's more efficient to read the langage what I use every day :). – Kiva May 4 '11 at 13:44
I'd disagree; by quickly glancing over the basics of an unknown language implementing what you were looking for in the first place you can a) learn how to implement what you were after in the first place and b) prime yourself for development in a new language when required. In industry you will never be stuck on one specific language (unless you're really lucky!). Or you know, consider rewriting what you see (a Java example for instance) in to pseudo-code and then pin it up for future reference - always good for trying to work out what someone's trying to do anyway. – Ogre May 17 '11 at 13:44

I have Patterns In Java by Mark Grand - it's pretty good. isbn 0-471-25839-3

share|improve this answer

Robert C. Martin's book, Agile Principles, Patterns and Practices is really good, and in Java. It also covers a lot of Agile practices (such as Test Driven Development), and the SOLID OO principles, which help you to design your code for maintainability. There's also an updated version in C#, and to be honest it shouldn't matter what language these books are in since it's the principles you're trying to glean, not boilerplate code.

share|improve this answer

I found Refactoring to Design Patterns extremely useful in combination to the classic GoF book you mentioned.

Contrary to my first impression from the title, this is not a book you read AFTER you learn about DP, but WHILE. I.e. the book discusses the design patterns starting from when you might need them. For a through description of the pattern you are recommended to consult the GoF but there's added value in the book. The book preaches not being 'patterns-happy' and discusses scenarios where a DP would be an over-kill and you better refactor away from it.

The example code is in Java.

share|improve this answer

You can have a look at Effective Java by Joshua Bloch.

It isn't only focused on patterns, but goes into detail of explaining what pattern to use when to be most effective.

I found the book very helpful.

share|improve this answer

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