Effective Java (2nd Edition) (Java Series) | 
enlarge | Author: Joshua Bloch Publisher: Prentice Hall PTR Category: Book
List Price: $49.99 Buy New: $30.80 You Save: $19.19 (38%)
New (43) Used (37) from $30.80
Rating: 19 reviews Sales Rank: 1167
Media: Paperback Edition: 2 Number Of Items: 1 Pages: 384 Shipping Weight (lbs): 1.7 Dimensions (in): 8.8 x 7.5 x 0.9
ISBN: 0321356683 Dewey Decimal Number: 005.71262 EAN: 9780321356680 ASIN: 0321356683
Publication Date: May 28, 2008 Availability: Usually ships in 1-2 business days
| |
| Also Available In:
|
| Accessories:
|
| Similar Items:
|
| Editorial Reviews:
Product Description Raves for the First Edition! “I sure wish I had this book ten years ago. Some might think that I don’t need any Java books, but I need this one.” –James Gosling, fellow and vice president, Sun Microsystems, Inc. “An excellent book, crammed with good advice on using the Java programming language and object-oriented programming in general.” –Gilad Bracha, coauthor of The Javaa Language Specification, Third Edition “10/10–anyone aspiring to write good Java code that others will appreciate reading and maintaining should be required to own a copy of this book. This is one of those rare books where the information won’t become obsolete with subsequent releases of the JDK library.” –Peter Tran, bartender, JavaRanch.com “The best Java book yet written.... Really great; very readable and eminently useful. I can’t say enough good things about this book. At JavaOne 2001, James Gosling said, aGo buy this book!’ I’m glad I did, and I couldn’t agree more.” –Keith Edwards, senior member of research staff, Computer Science Lab at the Palo Alto Research Center (PARC), and author of Core JINI (Prentice Hall, 2000) “This is a truly excellent book done by the guy who designed several of the better recent Java platform APIs (including the Collections API).” –James Clark, technical lead of the XML Working Group during the creation of the XML 1.0 Recommendation, editor of the XPath and XSLT Recommendations “Great content. Analogous to Scott Meyers’ classic Effective C++. If you know the basics of Java, this has to be your next book.” –Gary K. Evans, OO mentor and consultant, Evanetics, Inc “Josh Bloch gives great insight into best practices that really can only be discovered after years of study and experience.” –Mark Mascolino, software engineer “This is a superb book. It clearly covers many of the language/platform subtleties and trickery you need to learn to become a real Java master.” –Victor Wiewiorowski, vice president development and code quality manager, ValueCommerce Co., Tokyo, Japan “I like books that under-promise in their titles and over-deliver in their contents. This book has 57 items of programming advice that are well chosen. Each item reveals a clear, deep grasp of the language. Each one illustrates in simple, practical terms the limits of programming on intuition alone, or taking the most direct path to a solution without fully understanding what the language offers.” –Michael Ernest, Inkling Research, Inc. “I don’t find many programming books that make me want to read every page–this is one of them.” –Matt Tucker, chief technical officer, Jive Software “Great how-to resource for the experienced developer.” –John Zukowski, author of numerous Java technology books “I picked this book up two weeks ago and can safely say I learned more about the Java language in three days of reading than I did in three months of study! An excellent book and a welcome addition to my Java library.” –Jane Griscti, I/T advisory specialist Are you looking for a deeper understanding of the Javaa programming language so that you can write code that is clearer, more correct, more robust, and more reusable? Look no further! Effective Javaa, Second Edition, brings together seventy-eight indispensable programmer’s rules of thumb: working, best-practice solutions for the programming challenges you encounter every day. This highly anticipated new edition of the classic, Jolt Award-winning work has been thoroughly updated to cover Java SE 5 and Java SE 6 features introduced since the first edition. Bloch explores new design patterns and language idioms, showing you how to make the most of features ranging from generics to enums, annotations to autoboxing. Each chapter in the book consists of several “items” presented in the form of a short, standalone essay that provides specific advice, insight into Java platform subtleties, and outstanding code examples. The comprehensive descriptions and explanations for each item illuminate what to do, what not to do, and why. Highlights include: -
New coverage of generics, enums, annotations, autoboxing, the for-each loop, varargs, concurrency utilities, and much more -
Updated techniques and best practices on classic topics, including objects, classes, libraries, methods, and serialization -
How to avoid the traps and pitfalls of commonly misunderstood subtleties of the language -
Focus on the language and its most fundamental libraries: java.lang, java.util, and, to a lesser extent, java.util.concurrent and java.io Simply put, Effective Javaa, Second Edition, presents the most practical, authoritative guidelines available for writing efficient, well-designed programs.
|
| Customer Reviews: Read 14 more reviews...
Fixing your programming style November 18, 2008 1 out of 1 found this review helpful
Greatest Java book ever written. In fact, it's beyond a 'java book', once many tips from here are 'universal tips'.
It's a great book for those who already have at least 4 or 5 programming years (code enough different projects), 'cause you'll notice several (apparently) minor mistakes that everyone make everyday.
Essential Java November 12, 2008 1 out of 1 found this review helpful
Did you realize that enums can implement interfaces? That the simplest safe way to implement a singleton is using an enum? That it's possible to obtain an object reference to a private member using serialization? There are lots of ways to learn the language basics and figure out how to use the libraries. But nowhere do you have such a dense collection of non-obvious, yet important issues that any Java developer ought to be aware of. The book is written from the perspective of someone who creates public APIs, so there is a lot of obsessing over how to prevent users from doing things they shouldn't (intentionally, or not). But even if that's not a big concern for you, it's nevertheless important to be aware of the issues. Having read the first edition a while back, reading the second edition was more that a good refresher -- it's almost a different book. This is in part thanks to Java 5, which has made a lot of the original items (e.g. how create enumerations) obsolete, while introducing the need for a whole new set of items (e.g. regarding the use of generics).
All Java programmers should read this book September 22, 2008 1 out of 1 found this review helpful
This book is a must-read for all Java programmers. In fact, I think every programmer should read this book before they start programming Java. The book is full of good advice, best practices and guidelines.
Highly recommended
Excellent book September 20, 2008 2 out of 2 found this review helpful
Absolute classic, definitely my favorite Java book. Every professional Java developer should have it on her/his desk.
It's not the easiest book and shouldn't be read if You are novice in Java, there better books to get started with Java, but for experienced developers, this book is invaluable.
The best general Java book I've read so far September 5, 2008 2 out of 2 found this review helpful
This book seems to be one of the most critically acclaimed Java titles. What could I possibly add to what has been said? The acclaim is fully deserved. I had the feeling that I already learned something new and important as soon as I reached page twenty. This is something that I cannot say of very many books. Effective Java manages to be extremely useful and simultaneously extremely easy to read. However, "easy" doesn't mean simple in this case, since many of the discussed problems are subtly complex. Some are so complex, in fact, that Java beginners might not fully understand or appreciate them. So, it's probably not a book for beginners. On the other hand, the book is neither esoteric. The 78 items are general Java programming issues which one is likely to encounter in everyday work at some point, regardless of any specific domain. The book is written in a clear and concise language and each problem is exceptionally well reasoned. The author has a very deep understanding of the Java language, which is rather apparent and no surprise, since Joshua Bloch is one of the architects of the Java platform. Incidentally, this also means that the problems are discussed from the perspective of an API designer rather than from the perspective of an application programmer. This is useful, because it is primarily concerned with creating robust and high quality interfaces. Architects, designers, and application programmers benefit likewise from this. The items discussed in this book can probably be described as design and implementation level rationales. They are grouped by Java categories, such as generics, enums, annotations, exceptions, serialisation, as well as by more general concepts, such as object creation, classes and interfaces, methods and concurrency. Many of the individual topics are related; therefore the author makes ample use of cross references, which is helpful for reference use. The included code examples are a joy to read; they are clear, concise, and always illustrative. While discussing the intricacies of the above named topics, Joshua Bloch casually introduces the reader to a good number of commonly used design patterns, many of which are illustrated with code examples. However, design patterns are not themselves formally discussed. The book equips Java programmers with an arsenal of relevant best practices, from comparatively simple things such as creating objects, implementing "equals()" and "hashCode()" methods to more advanced topics, such as concurrency, mutability, and thread safety. In doing so, Joshua Bloch points out quite a few quirks and peculiarities of the Java language, and he does not only point them out, but explains their practical consequences in detail. Thus, the book has great didactic value, as the reader will end up with a higher level of familiarity with the language. Reading this book is time well invested for any Java programmer.
|
|
|