Java, A Beginner's Guide, 5th Edition, 5th Edition

Book description

Essential Java programming skills made easy

From Herb Schildt, the number-one programming author worldwide, comes this fully revised and updated introductory Java guide. You will get all the information you need to get up and running with the latest version of the most popular Web programming language.

Java 7: A Beginner's Guide, Fifth Edition will have you programming in Java right away. The book has been updated to cover the new features of Java 7 including closures, the enhanced switch statement, the enhanced catch statement, and extension methods, and more.

Designed for Easy Learning:

  • Key Skills & Concepts--Chapter-opening lists of specific skills covered in the chapter
  • Ask the Expert--Q & A sections filled with bonus information and helpful tips
  • Try This--Hands-on exercises that show you how to apply your skills
  • Notes--Extra information related to the topic being covered
  • Tips--Helpful reminders or alternate ways of doing things
  • Self Tests--End-of-chapter reviews to test your knowledge
  • Annotated syntax--Example code with commentary that describes the programming techniques being illustrated

Full coverage of Java 7 essentials:
Java Fundamentals; Introducing Data Types and Operators; Program Control Statements; Introducing Classes, Objects, and Methods; More Data Types and Operators; A Closer Look at Methods and Classes; Inheritance; Packages and Interfaces; Exception Handling; Using I/O; Multithreaded Programming; Enumerations, Autoboxing, and Static Import; Generics; Applets, Events, and Miscellaneous Topics; Introducing Swing

Table of contents

  1. Cover Page
  2. Java: A Beginner’s Guide
  3. Copyright Page
  4. Contents
  5. INTRODUCTION
  6. 1 Java Fundamentals
    1. The Origins of Java
      1. How Java Relates to C and C++
      2. How Java Relates to C#
    2. Java’s Contribution to the Internet
      1. Java Applets
      2. Security
      3. Portability
    3. Java’s Magic: The Bytecode
    4. The Java Buzzwords
    5. Object-Oriented Programming
      1. Encapsulation
      2. Polymorphism
      3. Inheritance
    6. Obtaining the Java Development Kit
    7. A First Simple Program
      1. Entering the Program
      2. Compiling the Program
      3. The First Sample Program Line by Line
    8. Handling Syntax Errors
    9. A Second Simple Program
    10. Another Data Type
    11. Try This 1-1: Converting Gallons to Liters
    12. Two Control Statements
      1. The if Statement
      2. The for Loop
    13. Create Blocks of Code
    14. Semicolons and Positioning
    15. Indentation Practices
    16. Try This 1-2: Improving the Gallons-to-Liters Converter
    17. The Java Keywords
    18. Identifiers in Java
    19. The Java Class Libraries
    20. Chapter 1 Self Test
  7. 2 Introducing Data Types and Operators
    1. Why Data Types Are Important
    2. Java’s Primitive Types
      1. Integers
      2. Floating-Point Types
      3. Characters
    3. The Boolean Type
    4. Try This 2-1: How Far Away Is the Lightning?
    5. Literals
      1. Hexadecimal, Octal, and Binary Literals
      2. Character Escape Sequences
      3. String Literals
    6. A Closer Look at Variables
      1. Initializing a Variable
      2. Dynamic Initialization
    7. The Scope and Lifetime of Variables
    8. Operators
    9. Arithmetic Operators
      1. Increment and Decrement
    10. Relational and Logical Operators
    11. Short-Circuit Logical Operators
    12. The Assignment Operator
    13. Shorthand Assignments
    14. Type Conversion in Assignments
    15. Casting Incompatible Types
    16. Operator Precedence
    17. Try This 2-2: Display a Truth Table for the Logical Operators
    18. Expressions
      1. Type Conversion in Expressions
      2. Spacing and Parentheses
    19. Chapter 2 Self Test
  8. 3 Program Control Statements
    1. Input Characters from the Keyboard
    2. The if Statement
    3. Nested ifs
    4. The if-else-if Ladder
    5. The switch Statement
    6. Nested switch Statements
    7. Try This 3-1: Start Building a Java Help System
    8. The for Loop
    9. Some Variations on the for Loop
    10. Missing Pieces
      1. The Infinite Loop
    11. Loops with No Body
    12. Declaring Loop Control Variables Inside the for Loop
    13. The Enhanced for Loop
    14. The while Loop
    15. The do-while Loop
    16. Try This 3-2: Improve the Java Help System
    17. Use break to Exit a Loop
    18. Use break as a Form of goto
    19. Use continue
    20. Try This 3-3: Finish the Java Help System
    21. Nested Loops
    22. Chapter 3 Self Test
  9. 4 Introducing Classes, Objects, and Methods
    1. Class Fundamentals
      1. The General Form of a Class
      2. Defining a Class
    2. How Objects Are Created
    3. Reference Variables and Assignment
    4. Methods
      1. Adding a Method to the Vehicle Class
    5. Returning from a Method
    6. Returning a Value
    7. Using Parameters
      1. Adding a Parameterized Method to Vehicle
    8. Try This 4-1: Creating a Help Class
    9. Constructors
    10. Parameterized Constructors
    11. Adding a Constructor to the Vehicle Class
    12. The new Operator Revisited
    13. Garbage Collection and Finalizers
    14. The finalize( ) Method
    15. Try This 4-2: Demonstrate Garbage Collection and Finalization
    16. The this Keyword
    17. Chapter 4 Self Test
  10. 5 More Data Types and Operators
    1. Arrays
      1. One-Dimensional Arrays
    2. Try This 5-1: Sorting an Array
    3. Multidimensional Arrays
      1. Two-Dimensional Arrays
    4. Irregular Arrays
      1. Arrays of Three or More Dimensions
      2. Initializing Multidimensional Arrays
    5. Alternative Array Declaration Syntax
    6. Assigning Array References
    7. Using the length Member
    8. Try This 5-2: A Queue Class
    9. The For-Each Style for Loop
      1. Iterating Over Multidimensional Arrays
      2. Applying the Enhanced for
    10. Strings
      1. Constructing Strings
      2. Operating on Strings
      3. Arrays of Strings
      4. Strings Are Immutable
      5. Using a String to Control a switch Statement
    11. Using Command-Line Arguments
    12. The Bitwise Operators
      1. The Bitwise AND, OR, XOR, and NOT Operators
      2. The Shift Operators
      3. Bitwise Shorthand Assignments
    13. Try This 5-3: A ShowBits Class
    14. The ? Operator
    15. Chapter 5 Self Test
  11. 6 A Closer Look at Methods and Classes
    1. Controlling Access to Class Members
      1. Java’s Access Modifiers
    2. Try This 6-1: Improving the Queue Class
    3. Pass Objects to Methods
      1. How Arguments Are Passed
    4. Returning Objects
    5. Method Overloading
    6. Overloading Constructors
    7. Try This 6-2: Overloading the Queue Constructor
    8. Recursion
    9. Understanding static
      1. Static Blocks
    10. Try This 6-3: The Quicksort
    11. Introducing Nested and Inner Classes
    12. Varargs: Variable-Length Arguments
      1. Varargs Basics
      2. Overloading Varargs Methods
      3. Varargs and Ambiguity
    13. Chapter 6 Self Test
  12. 7 Inheritance
    1. Inheritance Basics
    2. Member Access and Inheritance
    3. Constructors and Inheritance
    4. Using super to Call Superclass Constructors
    5. Using super to Access Superclass Members
    6. Try This 7-1: Extending the Vehicle Class
    7. Creating a Multilevel Hierarchy
    8. When Are Constructors Called?
    9. Superclass References and Subclass Objects
    10. Method Overriding
    11. Overridden Methods Support Polymorphism
    12. Why Overridden Methods?
      1. Applying Method Overriding to TwoDShape
    13. Using Abstract Classes
    14. Using final
      1. final Prevents Overriding
      2. final Prevents Inheritance
      3. Using final with Data Members
    15. The Object Class
    16. Chapter 7 Self Test
  13. 8 Packages and Interfaces
    1. Packages
      1. Defining a Package
      2. Finding Packages and CLASSPATH
      3. A Short Package Example
    2. Packages and Member Access
      1. A Package Access Example
    3. Understanding Protected Members
    4. Importing Packages
    5. Java’s Class Library Is Contained in Packages
    6. Interfaces
    7. Implementing Interfaces
    8. Using Interface References
    9. Try This 8-1: Creating a Queue Interface
    10. Variables in Interfaces
    11. Interfaces Can Be Extended
    12. Chapter 8 Self Test
  14. 9 Exception Handling
    1. The Exception Hierarchy
    2. Exception Handling Fundamentals
      1. Using try and catch
      2. A Simple Exception Example
    3. The Consequences of an Uncaught Exception
      1. Exceptions Enable You to Handle Errors Gracefully
    4. Using Multiple catch Statements
    5. Catching Subclass Exceptions
    6. Try Blocks Can Be Nested
    7. Throwing an Exception
      1. Rethrowing an Exception
    8. A Closer Look at Throwable
    9. Using finally
    10. Using throws
    11. New Exception Features Added by JDK 7
    12. Java’s Built-in Exceptions
    13. Creating Exception Subclasses
    14. Try This 9-1: Adding Exceptions to the Queue Class
    15. Chapter 9 Self Test
  15. 10 Using I/O
    1. Java’s I/O Is Built upon Streams
    2. Byte Streams and Character Streams
    3. The Byte Stream Classes
    4. The Character Stream Classes
    5. The Predefined Streams
    6. Using the Byte Streams
      1. Reading Console Input
      2. Writing Console Output
    7. Reading and Writing Files Using Byte Streams
      1. Inputting from a File
      2. Writing to a File
    8. Automatically Closing a File
    9. Reading and Writing Binary Data
    10. Try This 10-1: A File Comparison Utility
    11. Random-Access Files
    12. Using Java’s Character-Based Streams
      1. Console Input Using Character Streams
      2. Console Output Using Character Streams
    13. File I/O Using Character Streams
      1. Using a FileWriter
      2. Using a FileReader
    14. Using Java’s Type Wrappers to Convert Numeric Strings
    15. Try This 10-2: Creating a Disk-Based Help System
    16. Chapter 10 Self Test
  16. 11 Multithreaded Programming
    1. Multithreading Fundamentals
    2. The Thread Class and Runnable Interface
    3. Creating a Thread
      1. Some Simple Improvements
    4. Try This 11-1: Extending Thread
    5. Creating Multiple Threads
    6. Determining When a Thread Ends
    7. Thread Priorities
    8. Synchronization
    9. Using Synchronized Methods
    10. The synchronized Statement
    11. Thread Communication Using notify( ), wait( ), and notifyAll( )
      1. An Example That Uses wait( ) and notify( )
    12. Suspending, Resuming, and Stopping Threads
    13. Try This 11-2: Using the Main Thread
    14. Chapter 11 Self Test
  17. 12 Enumerations, Autoboxing, Static Import, and Annotations
    1. Enumerations
      1. Enumeration Fundamentals
    2. Java Enumerations Are Class Types
    3. The values( ) and valueOf( ) Methods
    4. Constructors, Methods, Instance Variables, and Enumerations
      1. Two Important Restrictions
    5. Enumerations Inherit Enum
    6. Try This 12-1: A Computer-Controlled Traffic Light
    7. Autoboxing
    8. Type Wrappers
    9. Autoboxing Fundamentals
    10. Autoboxing and Methods
    11. Autoboxing/Unboxing Occurs in Expressions
      1. A Word of Warning
    12. Static Import
    13. Annotations (Metadata)
    14. Chapter 12 Self Test
  18. 13 Generics
    1. Generics Fundamentals
    2. A Simple Generics Example
      1. Generics Work Only with Objects
      2. Generic Types Differ Based on Their Type Arguments
      3. A Generic Class with Two Type Parameters
      4. The General Form of a Generic Class
    3. Bounded Types
    4. Using Wildcard Arguments
    5. Bounded Wildcards
    6. Generic Methods
    7. Generic Constructors
    8. Generic Interfaces
    9. Try This 13-1: Create a Generic Queue
    10. Raw Types and Legacy Code
    11. Type Inference with the Diamond Operator
    12. Erasure
    13. Ambiguity Errors
    14. Some Generic Restrictions
      1. Type Parameters Can’t Be Instantiated
      2. Restrictions on Static Members
      3. Generic Array Restrictions
      4. Generic Exception Restriction
    15. Continuing Your Study of Generics
    16. Chapter 13 Self Test
  19. 14 Applets, Events, and Miscellaneous Topics
    1. Applet Basics
    2. Applet Organization and Essential Elements
    3. The Applet Architecture
    4. A Complete Applet Skeleton
    5. Applet Initialization and Termination
    6. Requesting Repainting
      1. The update( ) Method
    7. Try This 14-1: A Simple Banner Applet
    8. Using the Status Window
    9. Passing Parameters to Applets
    10. The Applet Class
    11. Event Handling
    12. The Delegation Event Model
    13. Events
      1. Event Sources
      2. Event Listeners
      3. Event Classes
      4. Event Listener Interfaces
    14. Using the Delegation Event Model
      1. Handling Mouse and Mouse Motion Events
      2. A Simple Mouse Event Applet
    15. More Java Keywords
      1. The transient and volatile Modifiers
      2. instanceof
      3. strictfp
      4. assert
      5. Native Methods
    16. Chapter 14 Self Test
  20. 15 Introducing Swing
    1. The Origins and Design Philosophy of Swing
    2. Components and Containers
      1. Components
      2. Containers
      3. The Top-Level Container Panes
    3. Layout Managers
    4. A First Simple Swing Program
      1. The First Swing Example Line by Line
    5. Use JButton
    6. Work with JTextField
    7. Create a JCheckBox
    8. Work with JList
    9. Try This 15-1: A Swing-Based File Comparison Utility
    10. Use Anonymous Inner Classes to Handle Events
    11. Create a Swing Applet
    12. What Next?
    13. Chapter 15 Self Test
  21. A Answers to Self Tests
    1. Chapter 1: Java Fundamentals
    2. Chapter 2: Introducing Data Types and Operators
    3. Chapter 3: Program Control Statements
    4. Chapter 4: Introducing Classes, Objects, and Methods
    5. Chapter 5: More Data Types and Operators
    6. Chapter 6: A Closer Look at Methods and Classes
    7. Chapter 7: Inheritance
    8. Chapter 8: Packages and Interfaces
    9. Chapter 9: Exception Handling
    10. Chapter 10: Using I/O
    11. Chapter 11: Multithreaded Programming
    12. Chapter 12: Enumerations, Autoboxing, Static Import, and Annotations
    13. Chapter 13: Generics
    14. Chapter 14: Applets, Events, and Miscellaneous Topics
    15. Chapter 15: Introducing Swing
  22. B Using Java’s Documentation Comments
    1. The javadoc Tags
      1. @author
      2. {@code}
      3. @deprecated
      4. {@docRoot}
      5. @exception
      6. {@inheritDoc}
      7. {@link}
      8. {@linkplain}
      9. {@literal}
      10. @param
      11. @return
      12. @see
      13. @serial
      14. @serialData
      15. @serialField
      16. @since
      17. @throws
      18. {@value}
      19. @version
    2. The General Form of a Documentation Comment
    3. What javadoc Outputs
    4. An Example That Uses Documentation Comment
  23. Index

Product information

  • Title: Java, A Beginner's Guide, 5th Edition, 5th Edition
  • Author(s): Herbert Schildt
  • Release date: September 2011
  • Publisher(s): Oracle Press
  • ISBN: 9780071606332