Home > Store > Programming > Java

larger cover

Add To My Wish List

Core Java Volume I--Fundamentals, 9th Edition

Register your product to gain access to bonus material or receive a coupon.

  • Description
  • Extras
  • Reviews
  • Sample Content

Product Author Bios

Cay S. Horstmann is author of Scala for the Impatient (Addison-Wesley, 2012) and coauthor of Core JavaServer™ Faces, Third Edition (Prentice Hall, 2010). He is professor of computer science at San Jose State University, a Java Champion, and a frequent speaker at developer conferences.

 

Gary Cornell has been writing for and teaching programming professionals for more than twenty years. The cofounder of Apress, he has written numerous best-selling books for developers, was a cofinalist for a Jolt Award, and won the Readers Choice award from Visual Basic Magazine.

Fully updated to reflect Java SE 7 language changes, Core Java™, Volume I—Fundamentals, Ninth Edition, is the definitive guide to the Java platform.

 

Designed for serious programmers, this reliable, unbiased, no-nonsense tutorial illuminates key Java language and library features with thoroughly tested code examples. As in previous editions, all code is easy to understand, reflects modern best practices, and is specifically designed to help jumpstart your projects.

 

Volume I quickly brings you up-to-speed on Java SE 7 core language enhancements, including the diamond operator, improved resource handling, and catching of multiple exceptions. All of the code examples have been updated to reflect these enhancements, and complete descriptions of new SE 7 features are integrated with insightful explanations of fundamental Java concepts. You’ll learn all you need to be productive with 

  • The Java programming environment
  • Objects, classes, and inheritance
  • Interfaces and inner classes
  • Reflection and proxies
  • Graphics programming
  • Event handling and the event listener model
  • Swing-based user interface components
  • Application and applet deployment
  • Exceptions, logging, assertions, and debugging
  • Generic programming
  • Collections
  • Concurrency, and more

For detailed coverage of advanced features, including the new API for file input/output and enhancements to the concurrency utilities, look for Core Java™, Volume II—Advanced Features, Ninth Edition (ISBN-13: 978-0-13-708160-8).

Author's Site

Please visit the author site from Core Java Volume I--Fundamentals here

Customer Reviews

17 of 17 people found the following review helpful
5.0 out of 5 stars A Solid Update, February 3, 2013
This review is from: Core Java Volume I--Fundamentals (9th Edition) (Core Series) (Paperback)
Normally I'm not a fan of thick programming tomes (and this "Volume 1" clocks in just under 1000 pages), but the new Core Java is actually a great text for getting started with the language. The Java in a Nutshell series isn't as approachable, and the Head First series of books drives me up a wall. This book covers the basic topics well, providing thorough coverage without coming of as a (very) long checklist of features. As with all modern Java books, they have to deal with AWT and Swing, despite java having mostly found a home in server environments. I personally wish that section would have been slimmed down as I simply don't expect many people to make use of it. But that's the double-edged sword of Java - it is both a language AND an (extensive) core set of classes that has only grown over the years.

Also, even though I spend plenty of time writing C++ code, I find the "C++Notes" as something the series can probably drop. At this point, I'd assume the vast majority of... Read more
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


11 of 13 people found the following review helpful
4.0 out of 5 stars Once a standard, still a standard, January 15, 2013
This review is from: Core Java Volume I--Fundamentals (9th Edition) (Core Series) (Paperback)
I cut my teeth on Java programming a decade and a half ago using the 1st edition of this book. When I saw the 9th edition was out I was curious about what I could still learn about Java and how an author would handle the huge expansion of the language over the years. Turns out to be quite a bit and quite well.

If you're new to Java, this book will give you a great grounding in the language. And if you've been around the block a few times, it still has plenty to teach you. Shortly after it arrived, I was able to dig into some nuances of certain programming practices (imported static methods, and anonymous inner classes) that divided our development staff at work. It's great to have an easy to read reference that covers the topics from beginner level down to the hard-core detail stuff.

The book does a good job of covering the breadth of Java, including features added over the years, without becoming unwieldy. My only criticism was that were still several... Read more
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5 of 5 people found the following review helpful
4.0 out of 5 stars Purchased for Masters level programming subject, January 14, 2013
Amazon Verified Purchase(What's this?)
This review is from: Core Java Volume I--Fundamentals (9th Edition) (Core Series) (Paperback)
The background I bring to the subject of programming in Java is modest.
It took me around 3 days to carefully read the text. I found the subject sufficiently well written that I had difficulty with 2 chapters only (Generics and Multithreading). Have found the material well laid out, well explained, examples provided relevant and covered in adequate detail for a reader with little contemporary programming experience.
Have found guidance on installing and configuring environment useful in getting me going on design and coding. Material covered in the book adequate for many of the questions I encounter when working through the material. Have found that the need to resort to the internet for additional information and answers is minimal.
Am pleased with this purchase. Am looking forward to completing the unit this semester with confidence.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


Share your thoughts with other customers:
 See all 14 customer reviews...

Online Sample Chapter

Working with Interfaces and Inner Classes in Java

Table of Contents

Preface xix

Acknowledgments xxv

 

Chapter 1: An Introduction to Java 1

1.1 Java As a Programming Platform 1

1.2 The Java “White Paper” Buzzwords 2

1.3 Java Applets and the Internet 9

1.4 A Short History of Java 10

1.5 Common Misconceptions about Java 13

 

Chapter 2: The Java Programming Environment 17

2.1 Installing the Java Development Kit 18

2.2 Choosing a Development Environment 24

2.3 Using the Command-Line Tools 25

2.4 Using an Integrated Development Environment 28

2.5 Running a Graphical Application 33

2.6 Building and Running Applets 36

 

Chapter 3: Fundamental Programming Structures in Java 41

3.1 A Simple Java Program 42

3.2 Comments 45

3.3 Data Types 46

3.4 Variables 52

3.5 Operators 55

3.6 Strings 64

3.7 Input and Output 76

3.8 Control Flow 86

3.9 Big Numbers 105

3.10 Arrays 107

 

Chapter 4: Objects and Classes 125

4.1 Introduction to Object-Oriented Programming 126

4.2 Using Predefined Classes 132

4.3 Defining Your Own Classes 145

4.4 Static Fields and Methods 157

4.5 Method Parameters 164

4.6 Object Construction 171

4.7 Packages 182

4.8 The Class Path 190

4.9 Documentation Comments 193

4.10 Class Design Hints 199

 

Chapter 5: Inheritance 203

5.1 Classes, Superclasses, and Subclasses 204

5.2 Object: The Cosmic Superclass 228

5.3 Generic Array Lists 243

5.4 Object Wrappers and Autoboxing 251

5.5 Methods with a Variable Number of Parameters 254

5.6 Enumeration Classes 256

5.7 Reflection 258

5.8 Design Hints for Inheritance 282

 

Chapter 6: Interfaces and Inner Classes 285

6.1 Interfaces 286

6.2 Object Cloning 295

6.3 Interfaces and Callbacks 302

6.4 Inner Classes 305

6.5 Proxies 326

 

Chapter 7: Graphics Programming 333

7.1 Introducing Swing 334

7.2 Creating a Frame 339

7.3 Positioning a Frame 342

7.4 Displaying Information in a Component 350

7.5 Working with 2D Shapes 356

7.6 Using Color 365

7.7 Using Special Fonts for Text 369

7.8 Displaying Images 378

 

Chapter 8: Event Handling 383

8.1 Basics of Event Handling 383

8.2 Actions 403

8.3 Mouse Events 411

8.4 The AWT Event Hierarchy 419

 

Chapter 9: User Interface Components with Swing 425

9.1 Swing and the Model-View-Controller Design Pattern 426

9.2 Introduction to Layout Management 433

9.3 Text Input 443

9.4 Choice Components 452

9.5 Menus 473

9.6 Sophisticated Layout Management 492

9.7 Dialog Boxes 522

 

Chapter 10: Deploying Applications and Applets 565

10.1 JAR Files 566

10.2 Java Web Start 574

10.3 Applets 591

10.4 Storage of Application Preferences 610

 

Chapter 11: Exceptions, Assertions, Logging, and Debugging 625

11.1 Dealing with Errors 626

11.2 Catching Exceptions 635

11.3 Tips for Using Exceptions 649

11.4 Using Assertions 653

11.5 Logging 657

11.6 Debugging Tips 677

11.7 Tips for Troubleshooting GUI Programs 682

11.8 Using a Debugger 690

 

Chapter 12: Generic Programming 697

12.1 Why Generic Programming? 698

12.2 Defining a Simple Generic Class 700

12.3 Generic Methods 702

12.4 Bounds for Type Variables 704

12.5 Generic Code and the Virtual Machine 706

12.6 Restrictions and Limitations 712

12.7 Inheritance Rules for Generic Types 721

12.8 Wildcard Types 723

12.9 Reflection and Generics 731

 

Chapter 13: Collections 741

13.1 Collection Interfaces 741

13.2 Concrete Collections 751

13.3 The Collections Framework 787

13.4 Algorithms 801

13.5 Legacy Collections 810

 

Chapter 14: Multithreading 819

14.1 What Are Threads? 820

14.2 Interrupting Threads 833

14.3 Thread States 836

14.4 Thread Properties 839

14.5 Synchronization 843

14.6 Blocking Queues 877

14.7 Thread-Safe Collections 886

14.8 Callables and Futures 890

14.9 Executors 895

14.10 Synchronizers 905

14.11 Threads and Swing 909

 

Appendix: Java Keywords 925

 

Index 929

Sample Pages

Download the sample pages (includes Chapter 6 and Index)

 
Best Value

Book + eBook Bundle  $107.98  $64.79

Book Price $47.99
eBook Price $16.80
eBook formats included

Buy

This book includes free shipping!

Buy

Book  $59.99  $47.99

Usually ships in 24 hours.

This book includes free shipping!

Buy

eBook (Watermarked)  $47.99  $38.39

Includes EPUB, MOBI, and PDF
About eBook Formats

This eBook includes the following formats, accessible from your Account page after purchase:

ePubEPUBThe open industry format known for its reflowable content and usability on supported mobile devices.

MOBIMOBIThe eBook format compatible with the Amazon Kindle and Amazon Kindle applications.

Adobe ReaderPDFThe popular standard, used most often with the free Adobe® Reader® software.

This eBook requires no passwords or activation to read. We customize your eBook by discretely watermarking it with your name, making it uniquely yours.

Purchase Reward: One Month Free Subscription
By completing any purchase on InformIT, you become eligible for an unlimited access one-month subscription to Safari Books Online.

Get access to thousands of books and training videos about technology, professional development and digital media from more than 40 leading publishers, including Addison-Wesley, Prentice Hall, Cisco Press, IBM Press, O'Reilly Media, Wrox, Apress, and many more. If you continue your subscription after your 30-day trial, you can receive 30% off a monthly subscription to the Safari Library for up to 12 months. That's a total savings of $199.