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:
Borland JBuilder 3 Unleashed
Author:
Neal Ford et al.
ISBN:
0 672 31548 3
Publisher:
Sams
Pages:
1072pp+CD
Price:
£36-50
Reviewer:
Steve Dicks
Subject:
java
Appeared in:
14-5
A 1,000 page book on an IDE? A very unlikely scenario and so it proves in this book. This weighty tome tries to deliver 'Java everything plus JBuilder' and inevitably fails.

The first 150 pages try to cover software development in general and manage little more than this example on 'Best Practices':

'Development teams should make efforts to establish their own coding standards. These standards can consist of high-level practices such as the use of design patterns or low-level standards including the specific formats for program structures such as if blocks'

I.e. well intentioned but ultimately too shallow to be of any real use.

I also take exception to some of the author's 'example' code viz this little fragment on 'handling I/O Exceptions' (middle of the try block removed for brevity):

try{

// do some file i/o

}

catch (IOException iofex){

Message msg = new Message(new Frame(), "File Exception",

("An exception occurred writing to the file!"));

msg.setVisible(true);

return ("Error");

}

This has so many faults [user told 'exception' rather than user language, no mention of filename or any detail from exception, no logging of exception, and the mysterious return of a string "Error" from the method (whose signature we never see) for the error case] that I would hesitate to call it an 'example'.

The book has 6 different authors, who do make a reasonable job of writing in a consistent style; if only the book as a whole didn't have such a 'global' ambition.

While there are some good chapters on use of JBuilder, they are so thinly scattered to make this book neither a good reference nor an introductory text. The publication date of 1999 just adds to this book's problems, that it is written at a snapshot in time which ages far too quickly in the Java world.Perl, Python etc.