Java in a Nutshell

Java in a Nutshell

3.0 4
by David Flanagan
     
 

View All Available Formats & Editions

The second edition of the bestselling Java in a Nutshell has been updated to cover version 1.1 of the Java Development Kit (JDK). This complete quick-reference guide to Java contains descriptions of all of the classes in the Java Core API, with a definitive listing of all methods and variables.

Overview

The second edition of the bestselling Java in a Nutshell has been updated to cover version 1.1 of the Java Development Kit (JDK). This complete quick-reference guide to Java contains descriptions of all of the classes in the Java Core API, with a definitive listing of all methods and variables.

Editorial Reviews

Library Journal
O'Reilly books are rarely for neophytes, but advanced users swear by them, and these will be no exception. Englander covers a hot Java subtopic for students, programmers, and professionals already familar with Java and object-oriented programming. He discusses events, event adapters, properties, persistence, java archive files, the BeanBox tool, property editors, ActiveX, and the java.beans Package. Flanagan's work is the book Java programmers want nearby when they are at the keyboard. A complete ready-reference work, this belongs in all collections supporting programmers. Java is a constantly changing language so Nutshell will be coming out often with new editions; always have the newest one on hand. Reese goes beyond simple applet design to relational databases, SQL, object-oriented database applications, application servers, and remote object manipulation. The examples used throughout the book are based on a banking application designed in Java.
Booknews
The second edition contains an introduction to key Java concepts, descriptions of all classes in the core Java 1.1 API, and a description of the syntax of the Java language. It also includes an advanced introduction to Java for C and C++ programmers; an overview of all the new features in Java 1.1, both on a package-by-package basis and in terms of overall functionality; a tutorial on inner classes, explaining how to use all the new types of inner classes; and a quick reference for all classes, methods, and variables in the core Java 1.1 API.
Annotation c. by Book News, Inc., Portland, Oregon

Product Details

ISBN-13:
9781600330025
Publisher:
O'Reilly Media, Incorporated
Publication date:
03/28/2005
Pages:
1000
Product dimensions:
5.88(w) x 8.98(h) x 2.39(d)

Meet the Author

David Flanagan is a computer programmer who spends most of his time writing about JavaScript and Java. His books with O'Reilly include Java in a Nutshell, Java Examples in a Nutshell, Java Foundation Classes in a Nutshell, JavaScript: The Definitive Guide, and JavaScript Pocket Reference. David has a degree in computer science and engineering from the Massachusetts Institute of Technology. He lives with his wife and children in the U.S. Pacific Northwest bewteen the cities of Seattle, Washington and Vancouver, British Columbia. David has a blog at www.davidflanagan.com.

Customer Reviews

Average Review:

Write a Review

and post it to your social network

     

Most Helpful Customer Reviews

See all customer reviews >

Java in a Nutshell 3 out of 5 based on 0 ratings. 4 reviews.
The_Bayonne_Reader More than 1 year ago
I bought the book; I'll use it when I need to reference specific classes of functionality. It's not like I'm using it everyday.
Anonymous More than 1 year ago
Guest More than 1 year ago
The subject of this book is presented in a direct, technical, no-nonsense manner. The information is very useful to those with a technical background - especially in programming. Those just starting out would probably be better served by approaching this subject at a lower level. For those with experience, everything is there (although, at times it does get a little dry).
Guest More than 1 year ago
Recently, Sun gave us a significant upgrade to Java - the release of Java 5. A slew of the inevitable bug fixes. But also key new features, as explained here by Flanagan in the 5th edition of his long running reference. Some new abilities lead to notational simplification, like autoboxing. So if k is an Integer, you can now say 'k=5' instead of the clumsier 'k=new Integer(5)'. With a similar inverse process if q is an int, of being able to write 'q=k' rather than 'q=k.intValue()'. Though of course the older forms are still valid, for backward compatibility. Hey, varargs are now allowed! Much to the pleasure of some of you who came from C programming and used this nice feature. Ever since Java came out, there has been a continual, albeit quiet, push for varargs. Finally! By now, experienced Java programmers may be familiar with earlier versions of the book. There may be mild astonishment at the sheer heft of this edition. Thanks to its popularity, Java has bulked up in the number and scope of its classes. The book is a reassuring sign of Java's vitality.