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:
The Java FAQ
Author:
J Kanerva
ISBN:
0 201 63456 2
Publisher:
Addison-Wesley
Pages:
324pp
Price:
£21-95
Reviewer:
Brian Bramer
Subject:
java; reference
Appeared in:
10-4
Francis reviewed this book in C Vu November 1997 and I tend to agree with him. I opened this expecting something along the lines of the excellentC++ FAQsby Cline and Lomow (also published by Addison Wesley), which is aimed at profession programmers tackling difficult problems developing C++ based systems. This book, however, is at a much more introductory level ('what is a final class', 'Can I put menus and a menu bar on my applet?', etc.). The basic Java language is much simpler than C++ having automatic garbage collection and without pointers, overloaded operators, templates, etc. (which take many chapters inC++ FAQs). However, other things such as basic I/O (reading an integer number from the keyboard in Java is not as simple as
cin>> i
) are more difficult and the Java APIs are large and complicated.

This book covers the basic language, applets, AWT, events (in Java 1.0 and 1.1), drawing, threads, I/O, etc., in the main at the level of a beginner/ intermediate Java programmer. A professional programmer would probably be better off with a good set of reference manuals. To suit the professional programmerJava FAQswould need much more depth in the area of the APIs, in particular the complexities of the AWT. Not suitable (or intended as) a Java learning text but fine as a backup text for the beginner/intermediate programmer.