August 2005
Intermediate to advanced
928 pages
20h 39m
English
See Europe! Ten Countries in Seventeen Days! | ||
| --Sign in a travel agent's window | ||
This chapter is a whirlwind tour of the Java™ programming language that gets you started writing code quickly. We briefly cover the main points of the language, without slowing you down with full-blown detail. Subsequent chapters contain detailed discussions of specific features.
In the Java programming language, programs are built from classes. From a class definition, you can create any number of objects that are known as instances of that class. Think of a class as a factory with blueprints and instructions to build gadgets—objects are the gadgets the factory makes.
A class contains members, the primary kinds being fields and ...