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:
Classical and Object-Oriented Software Engineering
Author:
Stephen Schach
ISBN:
0 07 116761 7
Publisher:
McGraw-Hill
Pages:
616
Price:
£24-99
Reviewer:
Tim Penhey
Subject:
object oriented; engineering
Appeared in:
OL38
I remember being told that if you are going to give a negative remark, always start and finish on a positive. This book markets itself as a textbook for teaching Software Engineering and as a textbook I find it reasonably good.

The book is split into two parts. The first talks about software lifecycles and issues with software development, while the second covers each of the steps in the software lifecycle in more detail. The content of the sections has all the usual boredom that you would expect from a textbook. However there are occasional boxes titled 'Just in case you wanted to know' that hold interesting bits of information.

The subscript to the title of this book is With UML and C++. I find examples that refer to

title : char[41]
in a class diagram as opposed to
title : string
somewhat lacking in the C++ field. The introduction to the book says that although the code examples are written in C++, they prefer to make the code more accessible to readers that are not C++ experts as opposed to using good C++ style. I think that using strings is much easier for people from either a Java or Pascal background to pick up rather than char[41]. I also found it interesting that one of the 'Just in case you wanted to know' boxes told me that C++ programmers would use
queueLength += 1;
to increment a variable rather than
queueLength = queueLength + 1;
Personally I use
++queueLength
.

Each chapter has a section for problems. These I expect are discussion questions that would be talked about at the end of a lecture. As far as a textbook for teaching software engineering at the university level, I think that this book does a reasonable job teaching a very dry subject. Do not expect to learn UML or C++ though. Recommended as a textbook.