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:
Concurrent Programming, The Java Programming Language
Author:
S Hartley
ISBN:
0 19 511315 2
Publisher:
OUP
Pages:
260pp
Price:
£25-00
Reviewer:
Francis Glassborow
Subject:
java; parallel systems
Appeared in:
11-1
The main thrust of this book is Concurrent programming. The Java aspect is simply that you need some language to use. The author gives you a quick overview of Java in the early chapters, possibly enough for the experienced programmer who has never learnt Java. Enough that is if you want to learn about concurrent programming, not if you want to program in Java.

The problems of concurrent programming are rapidly becoming those of most programmers. Even if you never intend to write a multi-threaded program and never intend to deal with client-server applications your code may well finish up in systems where these and other aspects of concurrent programming are rife.

You need to develop a coding style that will survive in a multi-tasking or multi-threading context. If you still think that static (compile time) data is acceptable you need to put in some study. For example, how often have you seen C++ programmers provide static data members for their classes without any caveats? Pick up almost any magazine for programmers and you will find numerous examples of coding idioms that simply assume that there will be a single thread of execution.

Unlike earlier languages Java has some (all-be-it primitive) support for multiple threads of execution. This makes it a good language to use while learning about such issues as 'race conditions', 'dead locks', 'condition synchronisation' etc.

This book seems to be a better than average place to start your study of concurrent programming. I am not an authority on the subject and so have to believe the author. Until someone contradicts me I will recommend this book as a place to start.