ACCU Home page ACCU Conference Page
Search Contact us ACCU at Flickr ACCU at GitHib ACCU at Facebook ACCU at Linked-in ACCU at Twitter Skip Navigation

Search in Book Reviews

The ACCU passes on review copies of computer books to its members for them to review. The result is a large, high quality collection of book reviews by programmers, for programmers. Currently there are 1949 reviews in the database and more every month.
Search is a simple string search in either book title or book author. The full text search is a search of the text of the review.
    View all alphabetically
Title:
Java in Practice - Design Styles and Idioms for Effective Java
Author:
Nigel Warren&Philip Bishop
ISBN:
0 201 36065 9
Publisher:
Addison-Wesley
Pages:
209pp
Price:
£29.95
Reviewer:
Burkhard Kloss
Subject:
java
Appeared in:
11-5
First off, a disclosure; I have a - small - personal interest in this book because I worked with one of the authors for a while. I hope this does not cloud my judgement - though that is, of course, for you to decide.

Unlike many other Java books on the market, this one does not attempt to teach you the basics of the language in the first few pages. This is laudable - usually these micro-introductions are at best useless.

Java in Practiceis obviously not intended as a first book on Java; but once you are familiar with the syntax, you should put this book high on your list, even if you are an experienced OO programmer. Java is in many ways a deceptively simple language, especially if you approach it from a C++ background, it has its own subtleties and requires familiarity with its idioms to be used effectively. This is where the book excels; much as Effective C++ highlighted the most dangerous and tricky areas of C++ and provided idiomatic solutions,Java in Practicegives detailed advice on how to make your Java applications run faster and be more maintainable. For example, it gives valuable advice on such micro-level techniques as typesafe constants, immutable objects and proper exception handling strategies. In addition, it also discusses higher level techniques such as creational patterns and balancing performance with resource requirements.

Of course, some of this material is quite basic and most of it has been covered before in other sources; but I have not yet seen another Java book that makes it so accessible. Admittedly, I personally found the style a little chatty at times, but that is a matter of taste. If you are looking for a book to take your Java beyond the basic, this is definitely one worth working through - and the summary of the recommendations in the appendix will make it a handy reference afterwards, too.

The fact that it is much thinner thanEffective C++probably has more to do with the language?