Academic Superstore
Affordable Textbooks, Notebooks, Academic Supplies for Students
Back to Scholarship Resources
Search Advanced SearchView Cart   Checkout   
 Location:  Home » Textbooks » Object-Oriented Software Design » Effective Java (2nd Edition) (Java Series)  

Effective Java (2nd Edition) (Java Series)

Effective Java (2nd Edition) (Java Series)

zoom enlarge 
Author: Joshua Bloch
Publisher: Prentice Hall PTR
Category: Book

List Price: $49.99
Buy New: $33.84
You Save: $16.15 (32%)



New (40) Used (45) from $33.84

Avg. Customer Rating: 5.0 out of 5 stars 21 reviews
Sales Rank: 2420

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
Condition: All orders ship same business day via standard shipping (USPS Media Mail) if received by 1 PM CST.

Also Available In:

  • Kindle Edition - Effective Java

Accessories:

  • Filthy Rich Clients: Developing Animated and Graphical Effects for Desktop Java Applications (Java Series)
  • Java Concurrency in Practice
  • Java(TM) Puzzlers: Traps, Pitfalls, and Corner Cases

Similar Items:

  • Java Concurrency in Practice
  • Java Generics and Collections
  • Java(TM) Puzzlers: Traps, Pitfalls, and Corner Cases
  • Core Java(TM), Volume I--Fundamentals (8th Edition) (Sun Core Series)
  • Head First Design Patterns

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 Javaâ 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, âGo 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 Javaâ programming language so that you can write code that is clearer, more correct, more robust, and more reusable? Look no further! Effective Javaâ, 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 Javaâ, Second Edition, presents the most practical, authoritative guidelines available for writing efficient, well-designed programs.




Customer Reviews:   Read 16 more reviews...

5 out of 5 stars Idiomatic Java   December 8, 2008
As Java evolves and there are more ways to do things, it's getting more important to learn which idioms to use to benefit from library and language features. Effective Java is a well written book that will help new programmers learn how the right way to solve problems, and provide experienced programmers with a refresher course so that they can break out of bad habits, and make use of new library and language features. Read or skim the book from start to finish to get a sense of what's there, and keep it nearby when you are coding as a reference.


5 out of 5 stars A must have for practicing engineers   December 3, 2008
A great book that you'll go back to time and again as you encounter the various scenarios addressed in the book. I recommend scanning the TOC every few months to see what's suddenly relevant because of your current project. A great companion to Java Concurrency in Practice.




5 out of 5 stars 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.



5 out of 5 stars 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).



5 out of 5 stars 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


Student Superstore Suppported by International Scholarship Resources and Amazon.Com
UK Life Insurance Quotes
Life Quotes
Web Site
Web Site
MPP
Campus Essentials
Apparel
Cellphones
Handhelds
Laptops and Notebooks
DVD Players
MP3 Players
Music
Digital Cameras
Computers & Video Games
School Supplies
Subcategories
Mass Market
Trade
Extracurricular Reading
Audio Books
Bargain Books
Classics
Cook Books
Computers & Internet
Health, Mind, & Body
Literature & Fiction
Women's Fiction