このページを日本語で表示しますか?ここをクリック

 

or
Sign in to turn on 1-Click ordering.
 
 
More Buying Choices
18 used & new from ¥ 3,827

Have one to sell? Sell yours here
 
   
Effective Java (2nd Edition) (Java Series)
 
 

Effective Java (2nd Edition) (Java Series) (ペーパーバック)

by Joshua Bloch (著)
No customer reviews yet. Be the first.
List Price: ¥ 5,153(Tax Included)
Price: ¥ 5,092 (Tax Included) & eligible for Free Shipping. Details
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock. Click here for details of availability.
Ships from and sold by Amazon.co.jp. Gift-wrap available.

Want it delivered 2009/11/24 Tuesday? Choose お急ぎ便 at checkout.
14 new from ¥ 3,827 4 used from ¥ 4,681

Special Offers and Product Promotions


Frequently Bought Together

Customers buy this book with Java(TM) Programming Language, The (4th Edition) (Java Series) by Ken Arnold

Effective Java (2nd Edition) (Java Series) + Java(TM) Programming Language, The (4th Edition) (Java Series)
Price For Both: ¥ 10,795

Show availability and shipping details

  • This item: Effective Java (2nd Edition) (Java Series) by Joshua Bloch

    In Stock. Click here for details of availability.
    Ships from and sold by Amazon.co.jp.
    This item ships for FREE shipping more than 1500 yen . Details

  • Java(TM) Programming Language, The (4th Edition) (Java Series) by Ken Arnold

    In Stock. Click here for details of availability.
    Ships from and sold by Amazon.co.jp.
    This item ships for FREE shipping more than 1500 yen . Details


Customers Who Bought This Item Also Bought

Implementation Patterns (Addison-Wesley Signature Series)

Implementation Patterns (Addison-Wesley Signature Series)

by Kent Beck
5.0 out of 5 stars (1)  ¥ 4,166
Java(TM) Programming Language, The (4th Edition) (Java Series)

Java(TM) Programming Language, The (4th Edition) (Java Series)

by Ken Arnold
4.3 out of 5 stars (10)  ¥ 5,703
コーディングの掟(最強作法) 現場でよく見る不可解なJavaコードを一掃せよ! (開発の現場セレクション)

コーディングの掟(最強作法) 現場でよく見る不可解なJavaコードを一掃せよ! (開発の現場セレクション)

by arton
4.0 out of 5 stars (4)  ¥ 2,520
プログラミング言語Java (The Java Series)

プログラミング言語Java (The Java Series)

by ケン・アーノルド
2.2 out of 5 stars (8)  ¥ 4,410
Effective Java 第2版 (The Java Series)

Effective Java 第2版 (The Java Series)

by Joshua Bloch
5.0 out of 5 stars (5)  ¥ 3,780
Explore similar items

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.



Book 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.

Product Details


Inside This Book (Learn More)
Browse Sample Pages
Front Cover | Copyright | Table of Contents | Excerpt | Index
Search inside this book:

What Do Customers Ultimately Buy After Viewing This Item?

Effective Java (2nd Edition) (Java Series)
52% buy the item featured on this page:
Effective Java (2nd Edition) (Java Series)
¥ 5,092
Effective Java 第2版 (The Java Series)
29% buy
Effective Java 第2版 (The Java Series) 5.0 out of 5 stars (5)
¥ 3,780
Effective Java(TM) Programming Language Guide (Java Series)
8% buy
Effective Java(TM) Programming Language Guide (Java Series) 4.8 out of 5 stars (14)
¥ 5,092
Java(TM) Programming Language, The (4th Edition) (Java Series)
6% buy
Java(TM) Programming Language, The (4th Edition) (Java Series) 4.3 out of 5 stars (10)
¥ 5,703

Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(1)

Your tags: Add your first tag
 

Customer Reviews


There are no customer reviews yet.
Video reviews
Video reviews
Amazon now allows customers to upload product video reviews. Use a webcam or video camera to record and upload reviews to Amazon.



Customer Discussions

※ Posts in Customer Discussions are written by other customers. Amazon.co.jp supports the free exchange of customer opinions, whether positive or negative. Please use your own judgment when making product purchase decisions.
This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 

   


Listmania!

Create a Listmania! list

Look for similar items by category


Look for similar items by subject


Feedback



Your Recent History

 (What's this?)

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.