|
|||||||||||||||||||||||||||||||||||
|
16 Reviews
|
Average Customer Review
Share your thoughts with other customers
Create your own review
|
|
Most Helpful First | Newest First
|
|
25 of 26 people found the following review helpful:
5.0 out of 5 stars
All programmers should buy this book,
By
This review is from: The Elements of Programming Style (Paperback)
I firmly believe that computer programming is a craft, perhaps an art but certainly not a science. As you learn the craft you need to learn the wisdom of those that have gone before you. This book becomes essential.It spells out, first with a counter example found in a piece of code published elsewhere and then with the code rewritten, over 70 pearls of wisdom that should be engraved into our consciousness; for many years every morning when I logged on to start work as a commercial Unix programmer one of these rules was randomly chosen as my message of the day, if I didn't understand the short rule I dragged out the book and refreshed my memory. Brian Kernighan has co-authored three books almost essential to learning our craft, this volume, "Software Tools" and "The Unix Programming Environment". "Elements of Programming Style" spells out the fundamental rules, "Software Tools" shows you how to apply them to a number of simple projects and extends the rules to software design and finally "The Unix Programming Environment" shows you how to use them in an operating system designed to reward you for your effort. The examples in either PL/I or Fortran expound the simple rules clearly and expertly in a manner typical of Kernighan's writing. That the languages used are old and most of the rules long accepted lore are not a drawback to this volume. Anyone who knows C, Pascal or even Perl should easily understand the code and programmers turn out code just as bad today in any number of languages. These things make this book highly recommended reading for anyone who wishes to call them self "programmer." A final word of warning, don't lend this book to anyone, you'll never get it back - I've bought four copies so far.
9 of 9 people found the following review helpful:
5.0 out of 5 stars
A classic programming book,
By
This review is from: The Elements of Programming Style (Paperback)
Published in 1978. 168 pages. These 77 rules represent the definitive basis of good programming style and best programming practices. Included in this famous set of rules are gems such as "say what you mean", "write clearly", "use the telephone test", "make sure comments and code agree", and "make it right before you make it faster". Each rule is described in the context of a small program or code fragment. The authors expertly illuminate their rules by correcting these deficient programs. All of the example code in FORTRAN or PL/I was taken from prior publications. The rules are programming language independent (76/77); the only exception is "avoid the FORTRAN arithmetic IF." This book solidified many of the ideals expressed in the structured programming movement.
5 of 5 people found the following review helpful:
4.0 out of 5 stars
Many rules still apply,
This review is from: The Elements of Programming Style (Paperback)
I dare say many rules Mr. Kernighan preached almost three decades ago are still NOT followed by the programming community at large. For examples, "Modularize. Use subroutines." "Each module should do one thing well." and "Don't patch bad code--rewrite it." A widespread, bad practice of 90% of the programmers today is still writing functions that are way too long! And they very often keep modifying existing functions--inserting new logic into them--to make already bad code even worse; they seldom give it a second thought about rewriting the whole damn crap!
Another set of rules from the book: "Make sure code and comments agree." and "Don't over-comment." Many programmers seldom do the first thing, resulting in widespread mismatches between the actual codes and surrounding comments. This applies to Java code as well. The comment style recommended by Java--that is, mixing code and comments that can be extracted into so-called self documentation--is an outright violation of the "don't over-comment" rule. (This is intended to be a criticism of Java-style comments.) Good code should document itself clearly; with perhaps a little help from judiciously added few comments that are not self-evident from the code itself. The book uses FORTRAN and PL/I code examples. There are things that no longer apply today. But the fundamental rules and styles are still well applicable today and in the future.
2 of 2 people found the following review helpful:
5.0 out of 5 stars
Some good rules for us all, still valid after so many years,
By Jill Malter (jillmalter@aol.com) - See all my reviews
This review is from: The Elements of Programming Style (Paperback)
I think this little book is still relevant today, over thirty years after it first appeared.
Yes, some people claim that computer programming is taught a little better today, and we all learn better habits. Actually, I'm not sure how true that is. People may be better at telling kids how to tidy up their rooms, but I've seen some rather messy rooms! And people may say that FORTRAN and PL/I are absurd languages to use as examples today. I'm not so sure about that. As a programmer, you may very well see old and confusing programs written in either language, especially FORTRAN. And anyone who can program in more modern languages ought to be able to read the programs. It's easy to read, it's still interesting, and it raises some issues of style that are worth thinking about. Strunk and White (The Elements of Style) is still worth reading. And so is this.
2 of 2 people found the following review helpful:
4.0 out of 5 stars
Atrocious code is still with us!,
By
This review is from: The Elements of Programming Style (Paperback)
The most interesting thing about Kernighan & Plauger's collection is that they took their bad examples from published textbooks and articles. Unfortunately, today's authors and course instructors are still turning out atrocious code, now in C++, Java, and VB. The examples may be dated, but the principles remain valid.
2 of 2 people found the following review helpful:
4.0 out of 5 stars
Still an excellent book after all these years.,
This review is from: The Elements of Programming Style (Paperback)
Despite its age, this book still has much to offer that other books, like Writing Solid Code, miss. Even though it uses languages from a bygone age in its examples, it points are still very valid. Coupled with the clear, lucid, writing it is a joy to read. If you think your code is the bee's knees, think again unless you've read Elements of Programming Style.
2 of 3 people found the following review helpful:
5.0 out of 5 stars
The examples are dated but great background material,
By
Amazon Verified Purchase(What's this?)
This review is from: The Elements of Programming Style (Paperback)
As the name implies, this is about the elements of programming style. The examples are a bit dated (old languages, not C/C++/Java/the-next-great-language). But this isn't a *language* programming book, it is about how to write good programs in any language.
5.0 out of 5 stars
Still one of the best,
By
This review is from: The Elements of Programming Style (Paperback)
This is still one of the best books on programming. In some ways much like the popular "Code Complete", but much more concise and clear. One of the best things about the book is that its goal of clarity and simplicity is wonderfully demonstrated by the book itself. The fact that the examples are all in ancient text bothers me not at all -- the Knuth books also use ridiculous sample code and are also wonderful. "The Practice of Programming" is another good work.
5.0 out of 5 stars
Must read for programmers.,
By
Amazon Verified Purchase(What's this?)
This review is from: The Elements of Programming Style (Paperback)
A must read for programmers interested in making their code more accessible to others. Examples and tips are not language specific and easily applied to your project.
This is one of those books I reach for when others ask what they can do to improve their craft.
5.0 out of 5 stars
Computer Science,
By Carlos Jorge (Lisboa, Portugal) - See all my reviews
This review is from: The Elements of Programming Style (Paperback)
The Elements of Programming Style, by Brian W. Kernighan and P. J. Plauger, is an influential book on the study of computer programming styles and languages. It endorses the strategy that computer programs should be written not only to satisfy the compiler, but also keep the human readers in mind. The book utilizes examples taken from actual, published programs. The book's recommendations are made in the context of the examples which are realistic rather than an academic vacuum.
|
|
Most Helpful First | Newest First
|
|
The Elements of Programming Style by P.J. Plauger (Paperback - January 1, 1978)
Used & New from: $19.65
| ||