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/C++ Cross-Reference Handbook
Author:
F F Chew
ISBN:
0 13 848318
Publisher:
Prentice Hall
Pages:
446pp+CD
Price:
£30-99
Reviewer:
Brian Bramer
Subject:
java; advanced c++
Appeared in:
10-4
Although Java and C++ are syntactically similar (having common types, operators, control structures, etc.) learning either language (assuming a knowledge of the other) and converting applications between the languages is non-trivial. Many of the differences are quite subtle and have major implications, e.g. Java variables of non-primitive types contain a reference to an object, not the object itself.

This book is aimed at either Java or C++ programmers who need to learn or use the other language. It starts with language basics covering types, operators, control structures, arrays, parameter passing to functions/methods, etc. Class implementation is then described (basic syntax, constructors, access control, abstract classes, multiple inheritance and interfaces, etc.) followed by a discussion of run-time type identification, exception handling, I/O and threads. The final two chapters compare the Java AWT with the Microsoft MFC and networking under Java and UNIX. At each stage the languages are compared and contrasted, there are plenty of hints (including what C++ programmers need to 'unlearn') and example programs (available on the CD) to illustrate points made in the text.

I found the latter chapters most interesting, looking at problems common in real applications and how these are implemented in the two languages, e.g. a client/server example in C under BSD UNIX (using

fork(), socket(), listen()
, etc.) compared with the Java Network API. A useful book for a software engineer working with both languages and having to maintain and translate applications. I would not recommend it for someone wishing to learn either language.