The Java Programming Language by Ken Arnold, James Gosling, David Holmes, James Gosling, David Holmes

BUY IT NEW

  • Limited Time Offer! Everyone receives the Member Price on books.
    See Details
  • This item is currently out of stock.
  • Add To List uiAction=GetAllLists&page=List&pageType=list&ean=9780201704334&productCode=BK&maxCount=100&threshold=3

BUY IT USED

24 copies from $1.99

See All Available

Textbook (Paperback - Older Edition)

  • 624pp

Textbook Information

  • ISBN-13: 9780201704334
  • Edition Description: Older Edition
  • Edition Number: 3
  • Pub. Date: June 2000
  • Publisher: Prentice Hall Professional Technical Reference
Buy it Used: 24 copies from $1.99 See All Available
 
  • Overview
  • Editorial Reviews
  • Customer Reviews
  • Features

Product Details

  • Pub. Date: June 2000
  • Publisher: Prentice Hall Professional Technical Reference
  • Format: Textbook Paperback, 624pp

Synopsis

Direct from the creators of the Java(tm) programming language, the completely revised fourth edition of The Java(tm) Programming Language is an indispensable resource for novice and advanced programmers alike.

Developers around the world have used previous editions to quickly gain a deep understanding of the Java programming language, its design goals, and how to use it most effectively in real-world development. Now, Ken Arnold, James Gosling, and David Holmes have updated this classic to reflect the major enhancements in Java(tm) 2 Standard Edition 5.0 (J2SE(tm) 5.0).

The authors systematically cover most classes in Java's main packages, java.lang.*, java.util, and java.io, presenting in-depth explanations of why these classes work as they do, with informative examples. Several new chapters and major sections have been added, and every chapter has been updated to reflect today's best practices for building robust, efficient, and maintainable Java software.

Key changes in this edition include

*New chapters on generics, enums, and annotations, the most powerful new language features introduced in J2SE 5.0
*Changes to classes and methods throughout to reflect the addition of generics
*Major new sections on assertions and regular expressions
*Coverage of all the new language features, from autoboxing and variable argument methods to the enhanced for-loop and covariant return types
*Coverage of key new classes, such as Formatter and Scanner

The Java(tm) Programming Language, Fourth Edition, is the definitive tutorial introduction to the Java language and essential libraries and an indispensable reference for all programmers, including those with extensive experience. It brings together insights you can only get from the creators of Java: insights that will help you write software of exceptional quality.

Booknews

"A reference for Java programmers, offering a solid foundation in Java programming strategies and techniques. After a concise introduction to the programming language, chapters describe its commands, constructs, and libraries and offer real-world examples showing how to exploit its portability and flexibility. Coverage includes classes and objects, interfaces, exception-handling, and Java core library packages. This second edition integrates Java 1.1 in both text and examples. Assumes familiarity with basic programming concepts."
--Annotation c. by Book News, Inc., Portland, Or.

More Reviews and Recommendations

Biography

Ken Arnold, a Staff Engineer at Sun Microsystems Laboratories, is a leading expert in object-oriented design and implementation, one of the original architects of the Jini technology, and the lead engineer of Sun's JavaSpaces technology. He has written extensively on C and C++ topics for UNIX Review, and is a leading expert in object-oriented design, C, and C++.

James Gosling is a Fellow and Vice President at Sun Microsystems, the creator of the Java programming language, and one of the computer industry's most noted programmers. He is the 1996 recipient of Software Development's "Programming Excellence Award." He previously developed NeWS, Sun's network-extensible window system, and was a principal in the Andrew project at Carnegie-Mellon University, from which he holds a PhD in Computer Science.

David Holmes is a Senior Research Scientist at the Cooperative Research Centre for Enterprise Distributed Systems Technology (DSTC Pty Ltd), located in Brisbane, Australia. His work with Java technology has focused on concurrency and synchronization support in the language and virtual machine. He has presented tutorials on concurrency and design at numerous international object-oriented programming conferences. He completed his PhD at Macquarie University, Sydney, in 1999.

Customer Reviews

  • Reader Rating:
  • Ratings: 1Reviews: 1

Java Programming Languageby Anonymous

Reader Rating:
See Detailed Ratings

July 04, 2000: Arnold and Gosling are the creators of Java. No doubt they have great insight on Java. But they seem to be have difficulty to convey their knowledge, especially to strictly follow their own logic in their book. So many times it made me confused. An easily explained such example is on page 57. They said: 'Each constructor has three phases: 1. Invoke a superclass's constructor 2. Initialize the fields using their initialization statements 3. Execute the body of the constructor' Then they went on the following page (page 58) saying (I interpret here): 1. Invoke the constructor proper and set all fields to default value 2. Invoke the superclass and set all fields to default value 3. Initialize the supclass's fields with given value 4. Execute the superclass 5. Initialize the constructor proper with given value 6. Execute the constructor proper This obviously shows six steps. How many phases? Which steps are combined to form a phase? In my opinion, they could simply said 'Each constructor has six phases.' That's it. No contradictions. No confusions. Alternatively they could have said: Each construtor has three phases: 1. Invoke the constructor 2. Initialize the constructor with thrie initialization statements 3. Execute the body of the constructor However, if the constructor calls for a superclass, the superclass is invoked, initialized and executed before the initialization of the constructor proper. This is actually a better abstraction. That passage paused me to poundering on what do they meaning and how that can be possible. I could not go on until I plowed ahead to the following page and found what a confusion that was. Unfortunately that wasn't the only confusion I found in the book.