程序代写代做 concurrency graph go Fortran AI Java game file system chain algorithm assembler ER clock information theory Hive flex interpreter assembly FTP c# compiler gui html Excel jvm c++ android database cache c/c++ data structure C Herbert Schildt | Dale Skrien Java

Herbert Schildt | Dale Skrien Java
Programming
A Comprehensive Introduction
College Programming Series

Java Programming

Java Programming
A Comprehensive Introduction
Herbert Schildt
Dale Skrien
Colby College

JAVA PROGRAMMING: A COMPREHENSIVE INTRODUCTION
Published by McGraw-Hill, a business unit of The McGraw-Hill Companies, Inc., 1221 Avenue of the Americas, New York, NY 10020. Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Printed in the United States of America. No part of this publication may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without the prior written consent of The McGraw-Hill Companies, Inc., including, but not limited to, in any network or other electronic storage or transmission, or broadcast for distance learning.
Oracle and Java are registered trademarks of Oracle Corporation and/or its affiliates. All other trademarks are the property of their respective owners, and McGraw-Hill makes no claim of ownership by the mention of products that contain these marks.
Some ancillaries, including electronic and print components, may not be available to customers outside the United States.
This book is printed on acid-free paper.
1 2 3 4 5 6 7 8 9 0 DOC/DOC 1 0 9 8 7 6 5 4 3 2 ISBN: 978-0-07-802207-4
MHID 0-07-802207-X
Vice President & Editor-in-Chief: Marty Lange
Vice President & Director Specialized Publishing: Janice M. Roerig-Blong Editorial Director: Michael Lange
Global Publisher: Raghothaman Srinivasan
Senior Marketing Manager: Curt Reynolds
Developmental Editor: Robin A. Reed
Senior Project Manager: Lisa A. Bruflodt
Buyer: Sandy Ludovissy
Design Coordinator: Brenda A. Rolwes
Media Project Manager: Prashanthi Nadipalli
Cover Design by Studio Montage, St. Louis, Missouri
Cover Image: © Iconotec/Alamy
Compositor: RPK Editorial Services
Typeface: 10.5/12 Times Roman
Printer: R. R. Donnelley Crawfordsville, IN
Library of Congress Cataloging-in-Publication Data
Schildt, Herbert.
Java programming : a comprehensive introduction / Herbert Schildt, Dale Skrien. — 1st ed.
p. cm.
Includes bibliographical references and index. ISBN 978-0-07-802207-4
1. Java (Computer program language) I. Skrien, Dale John. II. Title. QA76.73.J38S332 2013
005.13’3–dc23 www.mhhe.com
2011047187

BRIEF CONTENTS
PART I
ChAPTER 1 ChAPTER 2 ChAPTER 3 ChAPTER 4 ChAPTER 5 ChAPTER 6 ChAPTER 7 ChAPTER 8 ChAPTER 9
ChAPTER 10 ChAPTER 11 ChAPTER 12 ChPATER 13 ChAPTER 14 ChAPTER 15 ChAPTER 16
PART II
ChAPTER 17 ChAPTER 18 ChAPTER 19 ChAPTER 20 ChAPTER 21
PART III
ChAPTER 22 ChAPTER 23 ChAPTER 24 ChAPTER 25 ChAPTER 26 ChAPTER 27
APPENDIx A APPENDIx B APPENDIx C
ThE JAvA LANguAgE 1
Java Programming Fundamentals 3
Introducing Data Types and Operators 43 Program Control Statements 77
Introducing Classes, Objects, and Methods 119 More Data Types and Operators 155
A Closer Look at Methods and Classes 205 Inheritance 257
Interfaces 303
Packages 327
Exception handling 347
using I/O 383
Multithreaded Programming 435
Enumerations, Autoboxing, and Annotations 475 generics 505
Applets and the Remaining Java Keywords 549 Introduction to Object-Oriented Design 569
INTRODuCINg guI PROgRAMMINg
WITh SWINg 617
Swing Fundamentals 619 Exploring Swing Controls 659 Working with Menus 711 Dialogs 737
Threading, Applets, and Painting 779
ExPLORINg ThE JAvA API LIBRARy 811
String handling 813
Exploring java.lang 843
Exploring java.util 879
using the Data Structures in the Collections Framework 929 Networking with java.net 985
The Concurrency utilities 1009
using Java’s Documentation Comments 1059 An Introduction to Regular Expressions 1067 Answers to Selected Exercises 1075
1129
INDEx

CONTENTS PREFACE xxv
PART I
ChAPTER 1
ThE JAvA LANguAgE 1
Java Programming Fundamentals 3
Computing Basics 4
The Hardware Components of a Computer 4 Bits, Bytes, and Binary 5
The Operating System 6
The Program 7
Programming Languages 8 The Java Language 9
The Origins of Java 9
Java’s Contribution to the Internet 11 Java Applets 11
Security 11
Portability 12
Java’s Solution: The Bytecode 12
The Evolution of Java 13
The Key Attributes of Object-Oriented Programming 14
Encapsulation 15 Polymorphism 16 Inheritance 16
The Java Development Kit A First Simple Program
17 18
Entering the Program 18
Compiling the Program 19
Running the Program 19
The First Sample Program Line by Line 19
Handling Syntax Errors 22 A Second Simple Program 23 Another Data Type 25

viii contents
ChAPTER 2
Introducing Data Types and Operators
Why Data Types are Important 43 Java’s Primitive Types 44
Integers 44 Floating-Point Types 46 Characters 47
The Boolean Type 48
Literals 50
Hexadecimal, Octal, and Binary Literals 51 Character Escape Sequences 52
String Literals 52
A Closer Look at Variables 53
Initializing a Variable 54 Dynamic Initialization 54
The Scope and Lifetime of Variables Operators 58
Arithmetic Operators 58
Increment and Decrement 59
Relational and Logical Operators Short-Circuit Logical Operators The Assignment Operator 64 Shorthand Assignments 64
43
Two Control Statements 28
The if Statement 28 The for Loop 30
Create Blocks of Code 32 Semicolons and Positioning 33
Indentation Practices Indentation Practices The Java Keywords 36 Identifiers in Java 37 The Java Class Libraries Exercises 39
34 34
38
Type Conversion in Assignments 65 Using a Cast 66
Operator Precedence 68 Expressions 70
Type Conversion in Expressions 70 Spacing and Parentheses 72
Exercises 73
60 62
55

ChAPTER 3
Program Control Statements 77
ChAPTER 4
Introducing Classes, Objects, and Methods 119
Class Fundamentals 119
The General Form of a Class 120 Defining a Class 121
How Objects are Created 124
Reference Variables and Assignment 124 Methods 126
Adding a Method to the Vehicle Class 126
Returning from a Method 128 Returning a Value 129
Using Parameters 131
Adding a Parameterized Method to Vehicle 133
Constructors 141
Parameterized Constructors 142
Adding a Constructor to the Vehicle Class 143
The new Operator Revisited 145
Input Characters from the Keyboard 78 The if Statement 79
Nested ifs 81
The if-else-if Ladder
82 The switch Statement 83
Nested switch Statements 86
The for Loop 90
Some Variations on the for Loop 91
Missing Pieces 92
The Infinite Loop 93 Loops with No Body 93
Declaring Loop Control Variables Inside the for Statement 94
The Enhanced for Loop 95
The while Loop 95
The do-while Loop 97
Use break to Exit a Loop
Use break as a Form of goto 104 Use continue 108
Nested Loops Exercises 114
113
102
Contents ix

x contents
ChAPTER 5
Garbage Collection and Finalizers 145
The finalize( ) Method 146 The this Keyword 149
Exercises 151
More Data Types and Operators 155
Arrays 155
One-Dimensional Arrays 156
Multidimensional Arrays 161
Two-Dimensional Arrays 161
Irregular Arrays 163
Arrays of Three or More Dimensions 164 Initializing Multidimensional Arrays 164
Alternative Array Declaration Syntax 166 Assigning Array References 166
Using the length Member 168
The For-Each Style for Loop 176
Iterating Over Multidimensional Arrays 179 Applying the Enhanced for 180
Strings 181
Constructing Strings 182
Operating on Strings
Arrays of Strings 184
Strings are Immutable 185
Using a String to Control a switch Statement 186
ChAPTER 6
The Bitwise AND, OR, XOR, and NOT Operators 189 The Shift Operators 194
Bitwise Shorthand Assignments 196
The ? Operator 200 Exercises 201
A Closer Look at Methods and Classes 205
Controlling Access to Class Members 205
Java’s Access Modifiers 206
Pass Objects to Methods 211 How Arguments are Passed 212 Returning Objects 215
Method Overloading 217
182
Using Command-Line Arguments The Bitwise Operators 189
187

ChAPTER 7
Overloading Constructors 222 Recursion 228
Understanding static 232
Static Variables 233 Static Methods 235 Static Blocks 236
Introducing Nested and Inner Classes 240 Varargs: Variable-Length Arguments 244
Varargs Basics 245
Overloading Varargs Methods 247 Varargs and Ambiguity 249
Exercises 250
Inheritance 257
Inheritance Basics 257
Member Access and Inheritance 260 Constructors and Inheritance 263 Using super to Call Superclass
Constructors 265
Using super to Access Superclass Members 269 Creating a Multilevel Hierarchy 273
When are Constructors Executed? 276 Superclass References
and Subclass Objects 277 Method Overriding 282 Overridden Methods Support
Polymorphism 285
Why Overridden Methods? 287
Applying Method Overriding to TwoDShape 287
ChAPTER 8
Using Abstract Classes Using final 296
final Prevents Overriding 296 final Prevents Inheritance 296 Using final with Data Members
The Object Class 298 Exercises 299
Interfaces 303
Interface Fundamentals Creating an Interface
291
297
303 304
Contents xi

xii contents
ChAPTER 9
Implementing an Interface 305
Using Interface References 309 Implementing Multiple Interfaces 311 Constants in Interfaces 319 Interfaces can be Extended 321 Nested Interfaces 322
Final Thoughts on Interfaces 323 Exercises 323
Packages 327
Package Fundamentals 327
Defining a Package 328
Finding Packages and CLASSPATH 329 A Short Package Example 329
Packages and Member Access 331
ChAPTER 10
A Package Access Example 332 Understanding Protected Members
Importing Packages 336
Importing Java’s Standard Packages
Static Import 341 Exercises 344
Exception handling 347
The Exception Hierarchy
334 337
348
Exception Handling Fundamentals 348
Using try and catch 349
A Simple Exception Example 349
The Consequences of an Uncaught Exception 352
Exceptions Enable You to Handle Errors Gracefully 353
Using Multiple catch Clauses 355 Catching Subclass Exceptions 356 try Blocks can be Nested 357
Throwing an Exception 359
Rethrowing an Exception 360

ChAPTER 11
A Closer Look at throwable 361
Using finally 363
Using throws 365
Java’s Built-in Exceptions 366
New Exception Features Added by JDK 7 369 Creating Exception Subclasses 370 Exercises 377
using I/O 383
Java’s I/O Is Built on Streams 384
Byte Streams and Character Streams 384 The Byte Stream Classes 384
The Character Stream Classes 385
The Predefined Streams 386
Using the Byte Streams 387
Reading Console Input 388 Writing Console Output 389
Reading and Writing Files Using Byte Streams 390
Inputting from a File 391 Writing to a File 394
Automatically Closing a File 396 Reading and Writing Binary Data 399 Random-Access Files 404
Using Java’s Character-Based Streams
Console Input Using Character Streams 407 Console Output Using Character Streams 411
File I/O Using Character Streams 412
Using a FileWriter 412
Using a FileReader 413
File 415
Obtaining a File’s Properties 415 Obtaining a Directory Listing 417 Using FilenameFilter 418
The listFiles( ) Alternative 419 Various File Utility Methods 419
Using Java’s Type Wrappers to Convert Numeric Strings 421
Exercises 430
407
Contents xiii

xiv contents ChAPTER 12
Multithreaded Programming 435
Multithreading Fundamentals 435
The Thread Class and Runnable Interface 436 Creating a Thread 437
Some Simple Improvements 440
Creating Multiple Threads 445 Determining When a Thread Ends 447 Thread Priorities 450 Synchronization 451
Using Synchronized Methods 452 The Synchronized Statement 455 Thread Communication Using notify( ),
wait( ), and notifyAll( ) 458
An Example That Uses wait( ) and notify( ) 458
Suspending, Resuming, and Stopping Threads 464
Exercises 469
Enumerations, Autoboxing, and Annotations 475
Enumerations 475
Enumeration Fundamentals 476
Java Enumerations are Class Types 479
The values( ) and valueOf( ) Methods 479
Constructors, Methods, Instance Variables, and Enumerations 480
Two Important Restrictions 482
Enumerations Inherit Enum 482 Autoboxing 490
Type Wrappers and Boxing 490
Autoboxing Fundamentals 492
Autoboxing and Methods 493 Autoboxing/Unboxing Occurs in Expressions 494 A Word of Warning 496
Annotations (Metadata) 497
Creating and Using an Annotation 497 Built-in Annotations 498
Exercises 500
generics 505
Generics Fundamentals 506
ChAPTER 13
ChAPTER 14
A Simple Generics Example 506

ChAPTER 15
ChAPTER 16
Generics Work Only with Objects 510
Generic Types Differ Based on Their Type Arguments 510 A Generic Class with Two Type Parameters 510
The General Form of a Generic Class 512
Bounded Types 513
Using Wildcard Arguments
Bounded Wildcards 519
Generic Methods 522
Generic Constructors 524
Generic Class Hierarchies 525
Generic Interfaces 528
Raw Types and Legacy Code 535
Type Inference with the Diamond Operator 538 Erasure 540
Ambiguity Errors 540
Some Generic Restrictions 541
Type Parameters Can’t be Instantiated 541 Restrictions on Static Members 542 Generic Array Restrictions 542
Generic Exception Restriction 543
Exercises 543
Applets and the Remaining Java Keywords 549
Applet Basics 549
A Complete Applet Skeleton 553
Applet Initialization and Termination 554
A Key Aspect of an Applet’s Architecture 554 Requesting Repainting 555
Using the Status Window 560
Passing Parameters to Applets 561
The Remaining Java Keywords 563
The volatile Modifier 564 The transient Modifier 564 instanceof 564
strictfp 564
assert 565
Native Methods 565
Exercises 567
Introduction to Object-Oriented Design 569
Elegant Software and Why It Matters 570
Properties of Elegant Software 571
516
Contents xv

xvi contents
PART II
ChAPTER 17
INTRODuCINg guI PROgRAMMINg WITh SWINg 617
Swing Fundamentals 619
The Origins and Design Philosophy of Swing 620
Components and Containers 622
Elegant Methods 573
Naming Conventions 573 Method Cohesion 574 Well-formed Objects 576 Internal Documentation 577 External Documentation 578
Elegant Classes 581
Class Cohesion and the Expert Pattern 581 Avoiding Duplication 583
Complete Interface 585
Design with Change in Mind 586 Demeter’s Law 589
Inheritance versus Delegation 591 UML Class Diagrams 591
Code Reuse Perspective 594 The Is-a Relationship 594 Similar Behavior 597 Polymorphism 600
Costs of Inheritance 600
Design Patterns
Adapter Pattern 604 Observer Pattern 607
Exercises 612
603
Components 622
Containers 623
The Top-Level Container Panes 623
Layout Managers 624
A First Simple Swing Program
The First Swing Example Line by Line 626
Event Handling 631
Events 631
Event Sources 631
Event Listeners 632
Event Classes and Listener Interfaces 632 Adapter Classes 632
625

ChAPTER 18
Using a Push Button 635 Introducing JTextField 643 Use Anonymous Inner Classes
to Handle Events 655 Exercises 656
Exploring Swing Controls 659
ChAPTER 19
ChAPTER 20
JLabel and ImageIcon
The Swing Buttons
660
663
Handling Action Events Handling Item Events 664 JButton 665 JToggleButton 668
Check Boxes 670 Radio Buttons 672
JTextField 675 JScrollPane 685 JList 692 JComboBox 696 Trees 699 JTable 703
A Brief Word about Models 706 Exercises 707
Working with Menus 711
Menu Basics 711
An Overview of JMenuBar, JMenu,
and JMenuItem 713 JMenuBar 713
JMenu 714
JMenuItem 715
Create a Main Menu 715
Add Mnemonics and Accelerators
to Menu Items 720
Add Images and Tooltips to Menu Items 723 Use JRadioButtonMenuItem
and JCheckBoxMenuItem 730 Exercises 733
Dialogs 737
JOptionPane 738 showMessageDialog( ) 740
664
Contents xvii

xviii
contents
ChAPTER 21
showConfirmDialog( ) 744 showInputDialog( ) 748 showOptionDialog( ) 753 JDialog 758
Create a Modeless Dialog 762 Select Files with JFileChooser 763 Exercises 774
Threading, Applets, and Painting 779
Multithreading in Swing 779 Use Timer 786
Create Swing Applets 792
A Simple Swing Applet 793
Painting 800
Painting Fundamentals 800 The Graphics Context 801 Compute the Paintable Area 802 Request Painting 802
A Paint Example 802
Exercises 808
ExPLORINg ThE JAvA API LIBRARy 811
String handling 813
String Fundamentals 813
The String Constructors 814
Three String-Related Language Features 816
String Literals 817
String Concatenation 817
String Concatenation with Other Data Types 817 Overriding toString( ) 818
The length() Method 823
Obtaining the Characters within a String 824
charAt( ) 824 getChars( ) 824 toCharArray( ) 825
String Comparison 826
equals( ) and equalsIgnoreCase( ) 826
equals( ) Versus == 827
regionMatches( ) 828
startsWith( ) and endsWith( ) 828
compareTo( ) and compareToIgnoreCase( ) 829
PART III
ChAPTER 22

ChAPTER 23
Using indexOf( ) and lastIndexOf( ) 831
Obtaining a Modified String 833
substring( ) 833
replace( ) trim( ) 835
Changing the Case of Characters Within a String 836
StringBuffer and StringBuilder 839 Exercises 839
Exploring java.lang 843
Primitive Type Wrappers 844
Number 844
Double and Float 845
Byte, Short, Integer, and Long 846 Character 849
Boolean 852
Autoboxing and the Type Wrappers 852
The Math Class 853
The Process Class 857
The ProcessBuilder Class 857 The Runtime Class 859
The System Class 861
Using currentTimeMillis( ) to Time Program Execution 862 Using arraycopy( ) 863
Obtaining Property Values 864
Redirecting Standard I/O Streams 864
The Object Class 866
The Class Class 866
The Enum Class 868 Thread-Related Classes and
The Runnable Interface 868 Other Classes 869
The java.lang Interfaces 869
The Comparable Interface 870 The Appendable Interface 872 The Iterable Interface 873
The Readable Interface 873
The CharSequence Interface 873 The AutoCloseable Interface 874
Exercises 875
834
Contents xix

xx contents ChAPTER 24
Exploring java.util 879
The Locale Class 881
Working with Date and Time 884
Date 884
Calendar and GregorianCalendar 885
Formatting Output with Formatter 890 The Formatter Constructors 890
Formatting Basics 891
Formatting Strings and Characters 894
ChAPTER 25
Formatting Numbers 894
Formatting Date and Time 895
The %n and %% Specifiers 897 Specifying a Minimum Field Width Specifying Precision 898
Using the Format Flags 899
The Uppercase Option 902
Using an Argument Index 902 Formatting for a Different Locale 903 Closing a Formatter 904
Formatting and the printf( ) Method The Scanner Class 909
The Scanner Constructors 909 Scanning Basics 909
Some Scanner Examples 911 Some Other Scanner Features 916
The Random Class 917
Use Observable and Observer 918
The Timer and TimerTask Classes 922 Miscellaneous Utility Classes
and Interfaces 924 Exercises 925
using the Data Structures in the Collections Framework 929
An Overview of Data Structures 930
Stacks and Queues 930
Linked Lists 931
Trees 932
Hash Tables 933
Choosing a Data Structure 933
897
907

ChAPTER 26
Collections Overview 934
The Collection Interfaces 935
The Collection Interface 936 The List Interface 938
The Set Interface 938
The SortedSet Interface 938 The NavigableSet Interface 940 The Queue Interface 940
The Deque Interface 942
The Collection Classes 944
The ArrayList Class 945 The LinkedList Class 948
The HashSet Class
The TreeSet Class 954
The LinkedHashSet Class 956 The ArrayDeque Class 957 The PriorityQueue Class 959
Accessing a Collection via an Iterator 960
Using an Iterator 960
The For-Each Alternative to Iterators 964
Working with Maps 964
The Map Interfaces 964 The Map Classes 969
Comparators 974
The Collection Algorithms 976
The Arrays Class 980
The Legacy Classes and Interfaces 981
The Enumeration Interface 981 Vector 981
Stack 981
Dictionary 981
Hashtable 981 Properties 982
Exercises 982
Networking with java.net 985
Networking Fundamentals 985
The Networking Classes and Interfaces 986 The InetAddress Class 987
The Socket Class 989
The URL Class 993
The URLConnection Class 995
952
Contents xxi

xxii contents
ChAPTER 27
The httpuRLConnection Class 1000 Datagrams 1002
DatagramSocket 1003 DatagramPacket 1003
A Datagram Example 1004
Exercises 1007
The Concurrency utilities 1009
The Concurrent API Packages 1010
java.util.concurrent 1010 java.util.concurrent.atomic 1011 java.util.concurrent.locks 1011
Using Synchronization Objects 1012
Semaphore 1012 CountDownLatch 1015 CyclicBarrier 1018 Exchanger 1020
Phaser 1023
Using an Executor 1030
A Simple Executor Example 1031 Using Callable and Future 1033
The TimeUnit Enumeration
The Concurrent Collections 1038 Locks 1038
Atomic Operations 1041
Parallel Programming via the Fork/
Join Framework 1042
The Main Fork/Join Classes 1043
ForkJoinTask 1043 RecursiveAction 1044 RecursiveTask 1044 ForkJoinPool 1045
The Divide-and-Conquer Strategy 1046
A Simple First Fork/Join Example 1047
Understanding the Impact of the Level of Parallelism 1049 An Example That Uses RecursiveTask 1052 Executing a Task Asynchronously 1054
1036

APPENDIx A
The Concurrency Utilities versus Java’s Traditional Approach 1055
Exercises 1056
using Java’s Documentation Comments 1059
The javadoc Tags 1059
The General Form of a Documentation Comment 1063
What javadoc Outputs 1064
An Example That Uses Documentation
Comments 1064
APPENDIx B
An Introduction to Regular Expressions 1067 The Pattern Class 1067
The Matcher Class 1068
Regular Expression Syntax Basics Demonstrating Pattern Matching Using the Wildcard Character
and Quantifiers 1071
Working with Classes of Characters 1073 Using replaceAll( ) 1073
The String Class Connection 1074
Things to Explore 1074
Answers to Selected Exercises 1075
APPENDIx C INDEx 1129
1068 1069
Contents
xxiii

PREFACE
This book teaches the fundamentals of programming by way of the Java language. It assumes no prior programming experience and begins with the basics, such as how to compile and run a Java program. Next, it discusses the keywords, opera- tors, and constructs that form the Java language. The book also covers several parts of the Java Application Programming Interface (API) library, including Swing, which is the framework used to create programs that have a graphical user interface (GUI), and the Collections Framework, which is used to store collections of objects. In short, this book is intended as a comprehensive introduction to Java. Like most computer languages, Java has evolved over time. At the time of this writing, the latest version is Java 7 (JDK 7), and this is the version of Java covered by this book. However, most of the material is also applicable to other recent versions of Java, such as version 6.
A STRAIghT AhEAD APPROACh
This book uses what we characterize as a “straight ahead” approach. By this, we mean that topics are introduced in a cohesive sequence that is intended to keep the focus of each discussion on the topic at hand. This approach simplifies and streamlines the presentation. On occasions when a departure from the main presentation flow is nec- essary, we attempt to do so in a way that minimizes the disruption. The goal of our approach is to present the Java language in a way that clearly shows the interrelation- ship of its parts, rather than as a jumble of disconnected features.
To help manage the material, this book is organized into three parts. Part One describes the elements that define the Java language and the core elements of pro- gramming. It begins with an overview of Java followed by the basic concepts of data types, operators, and control statements. It then progressively introduces the more sophisticated features of the language, such as classes, methods, inheritance, inter- faces, packages, exceptions, multithreading, and generics. Part One also describes I/O, because it is integral to many Java programs, and applet fundamentals, because the applet is a quintessential Java application. Part One ends with a chapter on object- oriented design.
As it relates directly to Part One, our “straight ahead” approach keeps the focus on the elements of the Java language and the fundamentals of programming, with each new section building on the foundation of what comes before. Where possible, we avoid digressions that distract from the main topic. For example, discussions of GUI programming via Swing are handled in Part Two, rather than being intermixed with discussions of basic concepts. This way, the presentation in Part One remains firmly rooted in the core issues of Java and of programming.

xxvi preface
Part Two introduces Swing. It begins with an overview of GUI programming with Swing, including the basic concepts of components, events, and layout manag- ers. Subsequent chapters advance in an orderly fashion, presenting an overview of several Swing components, followed by menus, dialogs, painting, and so on. This “straight ahead” approach is intended to help students more easily integrate each new feature into the overall picture they are forming of the Swing framework.
Part Three explores portions of the Java API library. Because the API library is very large, it is not possible to discuss it in its entirety in this book. Instead, we focus on what we consider to be those parts of the library with which every Java pro- grammer should be familiar. In addition to covering large portions of java.lang and java.util (with special emphasis on the Collections Framework), we also present an overview of networking, and introduce the concurrency API, including the Fork/Join Framework. The material is presented in a straightforward manner that is designed to give the student a solid overview of several core library elements.
OBJECTS SOON…BuT NOT TOO SOON
One of the first commonly-asked questions about a programming book is whether it uses an “objects early” or an “objects late” approach to teaching the key tenets of object-oriented programming. Of course, what constitutes “early” or “late” can be somewhat subjective, and neither term precisely describes the organization of this book. The phrase we use to characterize our approach is “objects soon, but not too soon.” Our goal is to introduce objects at the appropriate time for the student. We believe that this is not until key features of the language have been learned.
Towards this end, the focus of the first three chapters is on the fundamentals of the Java language, such as its syntax, data types, operators, and control statements. We believe that mastery of these elements is a necessary first step because they form the foundation of the language, and the foundation of programming in general. (In other words, it is difficult to write meaningful programs without understanding these ele- ments.) In our view, only after the basic elements of a program have been learned, is the student ready to move forward to objects.
After the book has covered the fundamentals, objects are introduced in Chapter 4, and from that point on, object-oriented features, techniques, and concepts are inte- grated into the remaining chapters. Additionally, objects are introduced in a carefully paced, step-by-step fashion. This is intended to help the student grasp each new fea- ture in context, and without being overwhelmed.
PEDAgOgICAL FEATuRES
This book includes several pedagogical elements to facilitate and reinforce learning. Each feature helps ensure that students are fully aware of key skills, can gauge their advancement, and can verify that all concepts are learned.
j Key Skills & Concepts: Each chapter begins with a list that identifies the key skills and concepts presented in the chapter.
j Ask the Expert: At various points throughout the book are Ask the Expert boxes. These contain additional information or interesting commentary about

a topic, and use a Question/Answer format. They provide supplemental infor- mation without disrupting the main presentation flow.
j Try This Elements: Each chapter contains one or more Try This elements. These are step-by-step examples that walk through the development of a program that demonstrates an aspect of Java related to the chapter’s topic. Typically, these are longer examples that show a feature in a more practical setting.
j Progress Checks: Throughout each chapter, Progress Checks are presented to test the student’s understanding of the preceding section. The answers to these questions are at the bottom of the same page.
j Exercises: Each chapter concludes with exercises that include short answer, fill-in-the-blank, and true/false questions, and coding exercises. The answers to selected exercises are in Appendix C.
ACM RECOMMENDATIONS
The 2008 update to the ACM Curricula Recommendations (http://www.acm.org/ education/curricula/ComputerScience2008.pdf) recommends that all computer science students be fluent in at least one programming language and have some understanding of object-oriented and event-driven programming. We believe that students who learn the material covered by this book will have the desired knowledge and skills. We have included in the book not just an introduction to programming using the Java language, but broader coverage that includes advanced Java features, the Swing framework, and large parts of several important API packages.
The first part of the book covers a significant portion of the topics in the Programming Fundamentals (PF) knowledge area of the ACM Recommendations (the main exceptions being the knowledge units FoundationsInformationSecurity and SecureProgramming). The first part also includes a chapter on object-oriented design, which covers a number of the topics in the PL/ObjectOrientedProgramming and SE/ SoftwareDesign knowledge units. The second part of the book, which introduces GUI programming with Swing, addresses some of the topics in the knowledge unit HC/GUIProgramming. The third part includes, among others, topics that relate to concurrency. In fact, we devote Chapters 12 and 27 to multithreading and concurrency because we feel, as the ACM Curricular Recommendations discuss, that concurrency is becoming increasingly relevant to the discipline of computer science.
ONLINE RESOuRCES
Students can access all of the source code for the programs in the text at the website that accompanies Java Programming: A Comprehensive Approach: www.mhhe.com/ schildt1e. This site also offers a number of useful resources for the Java instructor.
j A Solutions manual for end-of-chapter exercises.
Preface
xxvii

xxviii preface
j Instructor Notes, including suggested curricula and suggestions for teaching
particular topics.
j Supplemental Exercises that can be used to create quizzes and tests.
j PowerPoint Slides that serve as an outline for in-class instruction. Please contact your McGraw-Hill representative for access information.
Additional instructor resources include:
This text is available as an eBook at www.CourseSmart.com. At CourseSmart your students can take advantage of significant savings off the cost of a print textbook, reduce their impact on the environment, and gain access to powerful web tools for learning. CourseSmart eBooks can be viewed online or downloaded to a computer. The eBooks allow students to do full text searches, add highlighting and notes, and share notes with classmates. CourseSmart has the largest selection of eBooks available anywhere. Visit www.CourseSmart.com to learn more and to try a sample chapter.
Craft your teaching resources to match the way you teach! With McGraw-Hill CreateTM, www.mcgrawhillcreate.com, you can easily rearrange chapters, combine material from other content sources, and quickly upload content you have written, such as your course syllabus or teaching notes. Find the content you need in Create by searching through thousands of leading McGraw-Hill textbooks. Arrange your book to fit your teaching style. Create even allows you to personalize your book’s appearance by selecting the cover and adding your name, school, and course infor- mation. Order a Create book and you’ll receive a complimentary print review copy in 3–5 business days or a complimentary electronic review copy (eComp) via email in minutes. Go to www.mcgrawhillcreate.com today and register to experience how McGraw-Hill CreateTM empowers you to teach your students your way.
ACKNOWLEDgMENTS
We wish to acknowledge the many contributions made by the following people at McGraw-Hill, without whom this book would not exist. They have made working on the book a delight.
Editorial Director, Michael Lange
Global Publisher, Raghu Srinivasan Senior Marketing Manager, Curt Reynolds Developmental Editor, Robin Reed Developmental Editor, Kathryn Neubauer

Senior Project Manager, Lisa Bruflodt Design Coordinator, Brenda Rolwes Production Editor, Rose Kernan
We would also like to thank the following reviewers for their many helpful comments, which were much appreciated.
Bill Barge, Trine University
Chris Bennett, University of Maine–Farmington Augusto Casas, St Thomas Aquinas College
I-ping Chu, DePaul University
Vasil Hnatyshin, Rowan University
Rodney Hoffman, Occidental College
David Kamper Sr., Northeastern Illinois University BJ Tjaden, Anne Arundel Community College Richard Weiss, Evergreen State College
James Braman, Towson University
Steve Cooper, Stanford University
Michael Main, University of Colorado—Boulder Jay McCarthy, Brigham Young University
Robert Moll, University of Massachusetts—Amherst Jagadeesh Nandigam, Grand Valley State University Gurpur Prabhu, Iowa State University
Daisy Sang, California State Polytechnic University Mark Sherriff, University of Virginia
Joslyn Smith, Florida International University James Young, University of Manitoba
Finally, and most importantly, we would like to thank our families for their support during the preparation of this book.
Preface xxix

About the Authors
Herbert Schildt has been writing about programming since 1984 and is the author of several books on Java, C++, C, and C#. His programming books have sold millions of copies worldwide and have been widely translated. Although he is interested in all facets of computing, his primary focus is computer languages, including the standardization of languages. Schildt holds BA and MCS degrees from the University of Illinois, Urbana/Champaign. He provided the initial drafts for most of the chapters in this book.
Dale Skrien has been teaching mathematics and computer science at Colby College since 1980 and has been teaching Java since 1996. His interest in teaching stu- dents not just how to program, but how to program well, led to the publication of his textbook Object-Oriented Design using Java by McGraw-Hill. He holds a BA degree from St. Olaf College, MS degrees from the University of Illinois and the University of Washington, and a PhD degree from the University of Washington. In addition to contributions throughout the book, he provided Chapter 16, which introduces object-oriented design. He also provided the online supplements for this book.

Chapte
A TOTAL SOLuTION
Introducing Classes, Obje
and meth
key skills & concepts
j Know the fundamentals of the class j Understand how objects are created
Java Programming 35
j Understand how reference variables are assigned
j Create a method lons-
er j Use the return keyword
j Return a value from a method
j Add parameters to a method s to create an improved
j Utilize constructors d in Try This 1-1. This
ith 1 gallon and ending
j Create parameterized constructors
output. This is accom-
j Understand new nts the number of lines
j Understand garbage collection and finalizers j Use the this keyword
Try This 1-2 Improving the Gal Key Skills & Concepts
Outlines the main topics
to-Liters Convert
and techniques presented
You can use the for loop, the if statement, and code block
GalToLitTable.java
in the chapter.
version of the gallons-to-liters converter that you develope
new version will print a table of conversions, beginning w at 100 gallons. After every 10 gallons, a blank line will be plished through the use of a variable called counter that cou that have been output. Pay special attention to its use.
Step-By-Step
1. Create a new file called GaltoLittable.java.
Before you can go much further in your study of Java, you need to learn a class. The class is the essence of Java. It is the foundation on which the Java l
e class defines the nature of an object. As such, the class fo riented programming in Java. Within a class are defined d on that data. The code is contained in methods. Because
ods are fundamental to Java, they are introduced in this
derstanding of these features will allow you to write more and better understand certain key Java features described in
damentals
2.
Enter the following program into the file:
/*
Try This 1-2
This program displays a conversion table of gallons to liters.
is built because th basis for object-o code that acts up objects, and meth Having a basic un ticated programs
Call this program “GalToLitTable.java”.
*/ lowing chapter. class GalToLitTable {
public static void main(String[] args) {
double gallons, liters; int counter;
Class Fun
counter = 0;
for(gallons = 1; gallons <= 100; gallons++) { Line counter is initially set to zero. Since all Java pro the start of this b liters = gallons * 3.7854; // convert to liters System.out.println(gallons + " gallons is " + liters + " liters."); counter++; Increment the line counter // every 10th line, print a blank line with each loop iteration. if(counter == 10) { Schildt_CH04.indd 119 System.out.println(); counter = 0; // reset the line counter } If counter is 10, output a blank line. } } } gramCacotidveityLocicsutrisnwgitshin a class, we have been using class ook. Of course, only extremely simple classes have been us Examples that show program elements and techniques in action. Call-outs point to key features, where appropriate. Schildt_CH01.indd 35 02/12/11 2:47 PM 3. Compile the program using the following command line: javac GalToLitTable.java r c o b a c e c contains 1 c is non-negative Notice one other thing in this program. The line int a, b, c; A Total Solution xxxiii declares three variables, a, b, and c, by use of a comma-separated list. As mentioned earlier, when you need two or more variables of the same type, they can be declared in one statement. Just separate the variable names by commas. Ask the Expert Q In the discussion of the if statement, you mentioned that a true/false expres- sion is referred to as Boolean expression. Why is that term used? AThe term Boolean is named after George Boole (1815–1864). He developed and formalized the laws that govern true/false expressions. This became Java Programming 87 known as Boolean algebra. His work eventually came to form the basis of computer logic. Ask the Expert Additional information or commentary from an “expert” perspective related to the topic at hand. break; case 'B': // ... } // end of inner switch break; case 'B': // ... Progress Check The for Loop Many times a program will need to perform a task more than once. For example, you might want to display the time of day, with the time updated once every second. Obviously, it would not be practical to write such a program using hundreds of separate println( ) statements, one for each possible time, in one-second intervals. Instead, such a repetitive operation would be accomplished by a loop. A loop is a control statement that repeatedly executes a sequence of code. Loops are used extensively by nearly all 1. The expression controlling the switpcrhogcranmbs.eLoikfewtheatiftystpaete?ment, loops are a fundamental part of programming. 2. When the switch expression matches aJacvaasesucpopnlisetsanatp, owheartfuhlaapspseonrtsm?ent of loop constructs. The one we will introduce 3. If a case sequence does not end in bherreaiks,twhehfaotrhlaopope.nTsh?e simplest form of the for loop is shown next: for(initialization; condition; iteration) statement; Try This 3-1 Start Buvairilabdleitno gan ianitiJalavvalaue. The condition is a Help System Help.java This project builds a simple help system that displays the syntax for the Java StEp-by-StEp 1. Create a file called Help.java. 2. The program begins by displaying the following menu: Help on: 1. if 2. switch Choose one: To accomplish this, you will use the statement sequence shown here: System.out.println("Help on:"); System.out.println(" 1. if"); Schildt_CH01.indd 30 control statements. In the process, it shows the switch statement in action. The program displays a menu containing the control statements and then waits for you to choose one. After one is chosen, the syntax of the statement is displayed. In this first version of the program, help is available for only the if and switch statements. The other control statements are added in subsequent examples. or B In its most common form, the initialization p tion of the loop sets a loop control oolean expression that tests the loop Try This Step-by-step examples that demonstrate a key feature or technique. 02/12/11 2:49 PM sch2207X_ch03_p077-118.indd 87 22/12/11 5:03 PM Answers: 1. The switch expression can be of type char, short, int, byte, or an enumera- tion. Beginning with JDK 7, a String can also be used. 2. When a matching case constant is found, the statement sequence associated with that case is executed. 3. If a case sequence does not end with break, execution continues into the next case sequence, if one exists. 50 chapter 6 First line Second line ABC A Closer Look at Methods aDnd ClasseEs F a total solution xxxiv Notice how the \n escape sequence is used to generate a new line. You don’t need In this program, the overloading of vaTest( ) is perfectly correct. However, this pro- to use multiple println( ) statements to get multiline output. Just embed \n within a gram will not compile because of the following call: PvraoTegstr(e);ss//CEhrreorc:kAmbiguous! Becausethevarargparametercanbep longer string at the points where you want the new lines to occur. em an .. ty, this call could be translated into a call progress Check .). Both are equally valid. Thus, the call is 1. What is the type of the literal 10? What is the type of the literal 10.0? biguity. The following overloaded versions of 2. How do you specify a long literal? ven though one takes a normal parameter: 3. Is "x" a string or a character literal? These short self-tests to vaTest(int ...) or to vaTest(boole let students test their inherently ambiguous. undHeersretainsdainogtheorfetxhaemple of am vaTest( ) are inherently ambiguous e material as the chapter progresses. static void vaTest(int ... v) { // ... ask the expert static void vaTest(int n, int ... v) { // ... Although the parameter lists of vaTest(Q) differ, there is no way for the compiler to resolve the following call: vaTest(1) A Is a string consisting of a single character the same as a character literal? For example, is "k" the same as 'k'? Does this translate into a call to vaTest(int ...N),ow.iYthouonmeuvsatrnaorgtscoanrgfusmeesnttr,inogrsinwtoithacharacters. A character literal repre- Because of ambiguity errors like those just shown, sometimes you will need to forego overloading and simply use two different method names. Also, in some cases, ambiguity errors expose a conceptual flaw in your code, which you can remedy by more carefully crafting a solution. call to vaTest(int, int ...) with no varargs to answer this question. Thus, the situatiostnrinisga.mAlbtihgouoguhs.strings consist of characters, they are not the same type. argumseenttss?aTsihnegrleilsetntoerwoafytyfpoertchheacro.mApsitlreirngcontainingonlyoneletterisstilla a CLoser Look at varIaBLes Variables were introduced in Chapter 1. Here, we will take a closer look at them. As sing this form of statement, you learned earlier, variables are declared u type var-name; Answers: 1. The literal 10 is an int, and 10.0 is a do 2. A long literal is specified by adding the is the following fragment corre3c.t? The literal "x" is a string. class Y { public static void main(String[] args) { X ob = new X(); ob.count = 10; sch2207X_ch02_p043-076.indd 53 2. An access modifier must __________ a member’s declaration. 3. Given this class, class Test { int a; Test(int i) { a = i; } } ExErCisEs 1. Given this fragment, class X { private int count; uble. L or l suffix. For example, 100L. End-of-Chapter Exercises Questions and coding exercises that test the student’s grasp of the material discussed in the chapter. 22/12/11 indd 250 02/12/11 2:52 PM 2 4 Java Programming Part One the Java Language Part One of this book describes the elements that comprise the Java programming language and the techniques required to use them. Chapter 1 begins by presenting several fundamental programming concepts, the history and design philosophy of Java, and an overview of some key Java features. The remaining chapters in Part One focus on spe- cific aspects of Java, on a chapter-by-chapter basis. Part One concludes with an introduction to an important aspect of successful Java programming: object-oriented design. ChaPter Java Programming Fundamentals key skills & concepts j Know the major components of the computer j Understand bits, bytes, and the binary number system j Know the two forms of a program j Know the history and philosophy of Java j Understand the foundational principles of object-oriented programming j Create, compile, and run a simple Java program j Use variables j Use the if and for control statements j Create blocks of code j Understand how statements are positioned, indented, and terminated j Know the Java keywords j Understand the rules for Java identifiers In the span of just a few decades, programming has gone from being an obscure disci- pline, practiced by a few, to becoming an integral part of the modern world, practiced by many. The reason for this development is easy to understand. If the modern world could be characterized by a single word, it might be technology. Supporting much of that technology is the computer. What makes a computer useful are the programs that it runs. Thus, in many ways it is programming that makes our technological world possible. Programming has become that important. The purpose of this book is to teach the fundamentals of programming, using the Java programming language. As a discipline, programming is quite large. Not only does it involve many skills, concepts, and techniques, but there are also a number of specializations, such as those involving numeric analysis, information theory, net- working, and device control. There are also many different computing environments in which programs are run. However, in all cases, mastery of the fundamentals of programming is required. What you will learn in this course forms the basis on which you will build your studies. 3 1 4 chapter 1 Java Programming Fundamentals This chapter begins by defining several key terms, reviewing the concepts of bits, bytes, the binary number system, and the basic components of the computer. Although this will be familiar territory for many readers, it ensures that everyone begins with the necessary knowledge. Next, we introduce the Java language by presenting its history, design philosophy, and several of its most important attributes. The chapter then discusses several core features of Java. One of the hardest things about learning to program is the fact that no element of a computer language exists in isolation. Instead, the components of the language are interrelated, working in conjunction with each other. In this regard, Java is no exception. It is difficult to discuss one aspect of Java without implicitly involving others. To help overcome this problem, this chapter provides a brief overview of several Java features, including the general form of a Java program, some basic control statements, a sampling of data types, and operators. It does not go into too many details but, rather, concentrates on the general concepts common to any Java program. Although many of these features will be examined in greater detail later in this book, this introduction helps you see how key parts of Java “fit together.” It also enables you to begin creating and running Java programs. COmPuting BasiCs Since you are taking a programming course, it is very likely that you already have at least some general knowledge about the subject of computing. However, not every- one will necessarily have the same knowledge, or that knowledge may be imprecise. Therefore, before introducing the Java language, an overview of several core comput- ing concepts is presented. In the process, a number of key terms are defined. the hardware Components of a Computer Since it is the computer that ultimately runs a program that you write, it is helpful to understand in a general way what the pieces of a computer do. All computers consist of a set of components that work together to form the computer as a whole. Although it is true that the precise form of the computer has evolved over time, all computers still share certain key features. For example, the same basic elements contained in a desktop computer are also found in a smartphone. To perform useful work, a computer must, at minimum, contain the following: j A Central Processing Unit (CPU) j Memory j Input/output devices Let’s look at each of these, in turn. The CPU provides the primary computational capabilities of the computer. It does so by executing the instructions that comprise a program. All CPUs are designed to understand a specific instruction set. The instruction set defines the various types of operations that the CPU can perform. For example, most CPUs support instructions that perform basic arithmetic operations, load data from and store data to memory, make logical comparisons, and alter program flow, to name a few. In addition to being Java Programming 5 able to access memory, most CPUs contain a limited number of registers that provide fast, short-term storage for data. The instructions that a CPU executes, which are often called machine instruc- tions, or machine code, perform very small operations. For example, an instruction might move a value from one register to another, move a value from a register to memory, or compare the contents of two registers. In general, the instruction set for one type of CPU differs from that of another. Thus, a set of instructions designed for one type of CPU can’t normally be used with another type. Sometimes there are families of CPUs, which maintain backward compatibility, but unrelated CPUs nor- mally differ in their instruction sets. Machine instructions are not in a form that can be easily read by a person. Instead, they are encoded for use by the computer. It is possible, however, to represent machine code in a human-readable form by using mnemonic representations of the instructions. This is called assembly language. For example, the mnemonic representation of an instruction that moves data from one location to another might be called MOV. The instruction for comparing two values might be called CMP. Assembly language is converted into a form the computer can execute by a program called an assembler. However, very few people write assembly language today because languages such as Java usually provide a much better alternative. The memory of the computer is used to store both instructions (in the form of machine code) and data. Memory is primarily intended to hold information only during the execu- tion of a program. It is not for long-term storage. Memory in a computer is addressable. This means that the CPU can access a specific location in memory given its address. Memory is often referred to as RAM, which stands for Random Access Memory. When the CPU executes a program, it does so by obtaining an instruction from memory and then performing the operation specified by that instruction. It then obtains the next instruction, executes it, and so on. By default, instructions are obtained from sequential locations in memory. However, some instructions can alter that flow by causing execution to “jump” to a different memory location. Today, there are a wide variety of input/output (I/O) devices in use. These include such things as keyboards, monitors, the mouse, touch screens, voice input, and sound output. They all, however, perform the same function: they give the computer some way to receive or transmit information. Often, I/O devices enable humans to interact with the computer. However, in some cases, the computer uses I/O to communicate with another device, such as a storage device, a network adapter, or even a robotic control interface. In addition to the three key components of a computer just described, many com- puters also include storage devices, such as disk drives, DVDs, and flash drives. Many computers are networked, either via the Internet or to a local area network. To support networking, a computer requires a network adapter. Bits, Bytes, and Binary Today, it is rare to find someone who has not heard the terms bits, bytes, and binary. They have entered the lexicon of common speech. However, because they describe some of the most fundamental aspects of computing, it is important that they be for- mally defined. 6 chapter 1 Java Programming Fundamentals The Binary Number System At the lowest level, computers work on 1’s and 0’s. As a result, a number system based on 1’s and 0’s is needed. This number system is called binary. Binary works just like our normal decimal number system, except that the meaning of each digit position is different. As you know, in decimal, when moving from right to left, each digit posi- tion represents values that are 10 times larger than the previous digit. Thus, decimal is based on powers of 10, with the rightmost digit being the 1’s position, to its left is the 10’s position, then the 100’s position, and so on. For example, the number 423 means four hundred twenty three, because there are 4 hundreds, 2 tens, and 3 ones. In binary, the process works the same way except that when moving left, each digit position increases by a factor of 2. Therefore, the first (rightmost) binary digit position represents 1’s. To its left is the 2’s position, then the 4’s position, followed by the 8’s position, and so on. This means that the first 8 binary digit positions represent the following values: 128 64 32 16 8 4 2 1 For example, the binary value 1010 is the decimal value 10. Why? Because it has no 1’s, one 2, no 4’s, and one 8. Thus, 0 + 2 + 0 + 8 equals 10. Here is another example. The binary value 1101 is 13 in decimal because it has one 1’s, no 2’s, one 4, and one 8. Thus, 1 + 0 + 4 + 8 equals 13. As you can see, to convert from binary to decimal, simply sum the values represented by the 1 digits. Bits and Bytes In the computer, a single binary digit is represented by a bit. A bit can be either set or cleared. A set bit is 1 and a cleared bit is 0. Bits are organized into groups. The most common is the byte. Typically a byte consists of 8 bits. This means that it can represent the values 0 through 255. Another organizational unit is the word. Typically, a word is sized to be compat- ible with a specific CPU architecture. For example, a 32-bit computer will typically use a 32-bit (4-byte) long word size. For reasons of convenience, binary numbers are often shown grouped into units of 4 (or sometimes 8) digits—for example, 1011 1001. This makes it easier to keep track of the digits. Understand, however, that such visual groupings have no effect on the value being depicted. the Operating system The hardware components of the computer are managed and made accessible by the operating system. An operating system is a master program that controls the computer. Operating systems are one of the core subjects in computer science, and it isn’t possible to describe them in detail here. Fortunately, a brief overview is sufficient for our purposes. An operating system serves two primary functions. First, it provides a base level of functionality that other programs will use to access the computer’s resources. For example, to save information to a disk drive, you will use a service provided by the oper- ating system. Second, the operating system controls the execution of other programs. Java Programming 7 For example, it provides memory space to hold the program while it is executing, sched- ules CPU time for its execution, and oversees its resource utilization. A number of different operating systems are in common use. Here are some examples: Windows, Unix, Linux, Mac OS, iOS, and Android. As a general rule, a program must be designed to run under (targeted for) a specific operating system. For example, a program targeted for Windows can’t be run under Unix unless it is specifi- cally adapted. 1. The CPU executes ____________ instructions. 2. What is 27 in binary? 3. What program oversees the operation of the computer? the PrOgram At the foundation of programming is the program. Since this book is about program- ming, it makes sense to formally define this term. Here is a very general definition: a program consists of a sequence of instructions that can be executed by a computer. However, the term program can mean different things, based on its context, because a program can have two basic forms. One is human readable, and the other is machine readable. When you write a program, you will be creating a text file that holds the source code of your program. This is the human-readable form of the program. It is the form that programmers typically think of as “the program.” However, it is not the form that is actually executed by the computer. Instead, the source code for a program must be converted into instructions that the computer can execute. This is called object code. An object code file is difficult (nearly impossible) for humans to read. This is why programmers work with the source code to their programs, converting it into object code only when it comes time to run it. A program is converted from source code into object code by a compiler. In some cases, the compiler generates actual machine instructions that are directly executed by the CPU of the computer. (This is typically the way a compiler for programming languages like C++ works, for example.) A key point to understand about object code is that it is designed for a specific type of CPU. As explained earlier, the machine instructions for one type of CPU will not usually work with another type of CPU. You may find it somewhat surprising that, in some cases, the instructions in the object code produced by a compiler are not designed for any actual CPU! Instead, they are designed to be executed by a virtual machine. A virtual machine is a program that emu- lates a CPU in software. Thus, it creates what is, essentially, a CPU in logic rather than in hardware. As such, it defines its own instruction set, which it is capable of executing. Answers: 1. machine 2. 11011 3. The operating system. Progress Check 8 chapter 1 Java Programming Fundamentals The process of executing these instructions is commonly referred to as interpreting, and a virtual machine is sometimes referred to as an interpreter. As you will soon see, Java uses a virtual machine and there are significant advantages to this approach. Whether your source code is compiled into directly executable machine code or into code to be run by a virtual machine, the process of converting source code into object code via a compiler is the same. PrOgramming Languages Precisely what constitutes the specific elements of a program’s source code is defined by the programming language being used. There are two basic categories of languages: low-level and high-level. A low-level language is tied closely to the instruction set of the CPU. Assembly language is an example of a low-level lan- guage. As explained earlier, there is a one-to-one correspondence between each assembly code statement and a machine instruction. This makes writing assembly code a tedious job. Most programming today is done using a high-level language. (For example, Java is a high-level language.) High-level languages enable you to write programs faster, easier, and more reliably. A high-level language defines constructs that help you orga- nize, structure, and control the logic of your program. Each construct in a high-level language is translated into many machine instructions. There are many different high-level programming languages, but nearly all define these three core elements: j keywords j operators j punctuation These elements must be combined according to the syntax rules defined by the lan- guage. The syntax rules specify quite precisely what constitutes a valid use of a pro- gram element. To be compiled, the source code must adhere to these rules. As a general definition, keywords define the building blocks of the language. They are used to specify the high-level constructs supported by the language. For example, keywords are used to control the flow of execution, define various types of data, and provide options and mechanisms that let you manage the execution of a program. Operators are used by expressions, with one of the most common being the arithmetic expression. For example, nearly all languages use + to specify addition. Punctuation comprises those elements of the language that are used to separate one element from another, group statements, prevent ambiguity, or otherwise clarify the syntax of the language. Although many programming languages have been invented, only a few have become widely used. Among these are FORTRAN, COBOL, Pascal, various dialects of BASIC, C, C++, and, of course, Java. Fortunately, after you learn one programming language, it becomes much easier to learn another. So, the time you invest in learning Java will benefit you both now and in the future. Java Programming 9 Progess Check 1. The human-readable form of a program is called ___________. 2. The executable form of a program is called ____________. 3. What are syntax rules? ask the expert Q I have heard programmers use the phrase “writing code.” What does this mean? AProfessional programmers often refer to the act of programming (i.e., creating source code) as “writing code.” Another phrase you will commonly hear is “coding a program.” It too refers to creating source code. In fact, it’s not uncommon to hear an excellent programmer referred to as a “great coder.” the Java Language This book uses the Java language to teach the fundamentals of programming. Although other programming languages would also be suitable for this purpose, Java was chosen for two primary reasons. First, it is one of the world’s most widely used computer languages. Thus, from a practical point of view, it is an excellent language to learn. Second, its features are designed and implemented in such a way that makes it easy to demonstrate the foundations of programming. But there is also a third reason. Java represents much of what characterizes modern pro- gramming. An understanding of Java gives you insight into the way professional program- mers think about the job of programming. It is one of the defining languages of our time. Java is part of the ongoing, historical process of computer language evolution. As such, it is a blend of the best elements of its rich heritage combined with the innovative concepts inspired by its unique place in programming history. While the remainder of this book describes the practical aspects of Java, here we will exam- ine the reasons behind its creation, the forces that shaped it, and the legacy that it inherits. the Origins of Java Java was conceived by James Gosling and others at Sun Microsystems in 1991. This language was initially called “Oak” but was renamed “Java” in 1995. Even though Java has become inexorably linked with the online environment, the original impe- tus for Java was not the Internet! Instead, the original motivation was the need for a Answers: 1. source code 2. object code 3. The syntax rules determine how the elements of a language are used. 10 chapter 1 Java Programming Fundamentals platform-independent language that could be used to create software to be embedded in various consumer electronic devices, such as microwave ovens and remote controls. As you can probably guess, many different types of CPUs are used as controllers. The trouble was, at that time most computer languages were designed to be compiled into machine code for a specific type of CPU. For example, consider C++, another language that was also very popular at the time (and still is). Although it was possible to compile a C++ program for just about any type of CPU, to do so required a full C++ compiler targeted for that CPU. This is because C++ is normally compiled into machine instructions that are directly executed by the CPU, and each different CPU required a different set of machine instructions. The problem, however, is that compilers are expensive and time consuming to create. In an attempt to find a better solution, Gosling and others began work on a portable, cross-platform language that could produce code that would run on a variety of CPUs under differing environments. This effort ultimately led to the creation of Java. About the time that the details of Java were being worked out, a second, and ultimately more important, factor emerged that would play a crucial role in the future of Java. This second force was, of course, the World Wide Web. Had the Web not taken shape at about the same time that Java was being implemented, Java might have remained a useful but obscure language for programming consumer electron- ics. However, with the emergence of the Web, Java was propelled to the forefront of computer language design because the Web, too, demanded portable programs. Why? Because the Internet is populated by various types of computers, using different types of CPUs and operating systems. Some means of letting this diverse group of computers run the same program was highly desired. By 1993 it became obvious to members of the Java design team that the problems of portability frequently encountered when creating code for embedded controllers are also found when attempting to create code for the Internet. This realization caused the focus of Java to switch from consumer electronics to Internet programming. So, while it was the desire for an architecture-neutral programming language that provided the initial spark, it was the Internet that ultimately led to Java’s large-scale success. It is useful to note that Java is directly related to two older languages: C and C++. Java inherits its syntax from C. Its object model is adapted from C++. Java’s relation- ship with C and C++ is important. At the time of Java’s creation, many programmers were familiar with the C/C++ syntax. This made it easy for a C/C++ programmer to learn Java and, conversely, for a Java programmer to learn C/C++. Furthermore, Java’s designers did not need to “reinvent the wheel.” Instead, they were able to adapt, refine, and enrich an already highly successful programming paradigm. Because of the similarities between Java and C++, especially their support for object-oriented programming, it is tempting to think of Java as simply the “Internet version of C++.” To do so would be a mistake, however. Java has some significant differences. Although Java was influenced by C++, it is not an enhanced version of C++. For example, it is neither upwardly nor downwardly compatible with C++. Furthermore, Java was not designed to replace C++. Java was designed to solve a certain set of problems, and C++ was designed to solve a different set of problems. Both will coexist for many years to come. Java Programming 11 Progress Check 1. Java is useful for the Internet because it can produce _____________ programs. 2. Java is the direct descendant of what languages? Java’s Contribution to the internet The Internet helped catapult Java to the forefront of programming, and Java, in turn, had a profound effect on the Internet. In addition to simplifying Web programming in general, Java innovated a new type of networked program called the applet that, at the time, changed the way the online world thought about content. Java also addressed some of the thorniest issues associated with the Internet: portability and security. Let’s look more closely at each of these. Java applets An applet is a special kind of Java program that is designed to be transmitted over the Internet and automatically executed by a Java-compatible web browser. Furthermore, an applet is downloaded on demand. If the user clicks a link that contains an applet, the applet will be automatically downloaded and run in the browser. Applets are intended to be small programs. They are typically used to display data provided by the server, handle user input, or provide simple functions, such as a loan calculator, that execute locally rather than on the server. In essence, the applet allows some functionality to be moved from the server to the client. Thus, the creation of the applet changed Internet programming because it expanded the universe of objects that can move about freely in cyberspace. As desirable as applets were, they also presented serious challenges in the areas of security and portability. Obviously, a program that downloads and executes automati- cally on the client computer must be prevented from doing harm. It must also be able to run in a variety of different environments and under different operating systems. As you will see, Java solved these problems in an effective and elegant way. Let’s look a bit more closely at each. security As you are likely aware, every time that you download a “normal” program, you are tak- ing a risk because the code you are downloading might contain a virus, Trojan horse, or other harmful code. At the core of the problem is the fact that malicious code can cause its damage because it has gained unauthorized access to system resources. For example, a virus might gather private information, such as credit card numbers, bank account bal- ances, and passwords, by searching the contents of your computer’s local file system. In order for Java to enable applets to be safely downloaded and executed on the client computer, it was necessary to prevent an applet from launching such an attack. Answers: 1. portable 2. C and C++. 12 chapter 1 Java Programming Fundamentals Java achieved this protection by confining an applet to the Java execution envi- ronment and not allowing it access to other parts of the computer. (You will see how this is accomplished shortly.) The ability to download applets with confidence that no harm will be done and that no security will be breached is one of Java’s most impor- tant features. Portability Portability is a major aspect of the Internet because many different types of comput- ers and operating systems are connected to it. If a Java program were to be run on virtually any computer connected to the Internet, there needed to be some way to enable that program to execute on different systems. For example, in the case of an applet, the same applet must be able to be downloaded and executed by the wide variety of different CPUs, operating systems, and browsers. It is not practical to have different versions of the applet for different computers. The same code must work in all computers. Therefore, some means of generating portable executable code was needed. Happily, the same mechanism that helps ensure security also helps create portability. Java’s solution: the Bytecode The key that allows Java to solve both the security and the portability problems just described is that the output of a Java compiler is not directly executable machine code. Rather, it is bytecode. Bytecode is a highly optimized set of instructions designed to be executed by the Java Virtual Machine (JVM). In essence, the original JVM was designed as an interpreter for bytecode. The fact that a Java program is executed by the JVM helps solve the major problems of portability and security associated with Web-based programs. Here is why. Compiling a Java program into bytecode makes it much easier to run a program in a wide variety of environments because only the JVM needs to be implemented for each platform. Once the JVM exists for a given system, any Java program can run on it. Although the details of the JVM will differ from platform to platform, all inter- pret the same Java bytecode. If a Java program were compiled to native code, then different versions of the same program would have to exist for each type of CPU con- nected to the Internet. This is, of course, not a feasible solution. Thus, the execution of bytecode by the JVM is the easiest way to create truly portable programs. The fact that a Java program is executed by the JVM also helps to make it secure. Because the JVM is in control, it can contain the program and prevent it from generat- ing side effects outside of the system. Safety is also enhanced by certain restrictions that exist in the Java language. When a program is executed by a virtual machine, it generally runs slower than the same program would run if compiled to executable machine code. However, with Java, the differential between the two is not so great. Because bytecode has been highly optimized, the use of bytecode enables the JVM to execute programs much faster than you might expect. Furthermore, it is possible to use on-the-fly compilation Java Programming 13 of bytecode into machine code in order to boost performance. This is done through the use of a just-in-time (JIT) compiler for bytecode. When a JIT compiler is part of the JVM, selected portions of bytecode are com- piled into executable code in real time on a piece-by-piece, demand basis. It is impor- tant to emphasize that a JIT compiler does not compile an entire Java program into executable code all at once. Instead, a JIT compiler compiles code as it is needed, during execution. Furthermore, not all sequences of bytecode are compiled—only those that will benefit from compilation. Even when dynamic compilation is applied to bytecode, the portability and safety features still apply because the JVM is still in charge of the execution environment. One last point: The JVM is part of the Java run-time system, which is also called the Java Runtime Environment, or JRE for short. the evolution of Java Only a few languages have fundamentally reshaped the very essence of programming. In this elite group, Java stands out because its impact was both rapid and widespread. It is not an overstatement to say that the original release of Java 1.0 by Sun Microsystems, Inc. caused a revolution in programming. Not only did Java help transform the Web into a highly interactive environment, but it also set a new standard in computer language design. Over the years, Java continued to grow, evolve, and otherwise redefine itself. Unlike some other languages, which are slow to incorporate new features, Java has often been at the forefront of computer language development. One reason for this is the culture of innovation and change that came to surround Java. As a result, Java has gone through several upgrades—some relatively small, others more significant. At the time of this writing, the current release of Java is called Java SE 7, with the Java Development Kit being called JDK 7. The SE in Java SE 7 stands for Standard Edition. Java SE 7 is the first major release of Java since Sun Microsystems was acquired by Oracle. Java SE 7 contains many new features. Several of these new fea- tures are pointed out throughout this book. ask the expert Q You explained that applets run on the client (browser) side of the Internet. Is there a parallel type of Java program that runs on the server side? AYes. Not long after the initial release of Java it became obvious that Java would also be useful on the server side. The result was the servlet. A servlet is a small program that executes on the server. Just as applets dynamically extend the functionality of a web browser, servlets dynamically extend the functionality of a web server. Thus, with the advent of the servlet, Java spanned both sides of the client/server connection. 14 chapter 1 Java Programming Fundamentals Progress Check 1. What is an applet? 2. What is Java bytecode? 3. The use of bytecode helps solve what two Internet programming problems? the Key attriButes OF OBJeCt-Oriented PrOgramming At the center of Java is object-oriented programming (OOP). The object-oriented methodology is inseparable from Java, and all Java programs are, to at least some extent, object-oriented. Because of OOP’s importance to Java, it is useful to understand OOP’s basic principles before you write even a simple Java program. OOP is a powerful way to approach the job of programming. Programming meth- odologies have changed dramatically since the invention of the computer, primarily to accommodate the increasing complexity of programs. For example, when computers were first invented, programming was done by toggling in the binary machine instruc- tions using the computer’s front panel. As long as programs were just a few hundred instructions long, this approach worked. As programs grew, assembly language was invented so that a programmer could deal with larger, increasingly complex programs, using symbolic representations of the machine instructions. As programs continued to grow, high-level languages were introduced that gave the programmer more tools with which to handle complexity. The first widespread language was FORTRAN. Although it was a very impressive first step, large FORTRAN programs could still be quite difficult to understand. The 1960s gave birth to structured programming. This is the method encouraged by languages such as C and Pascal. The use of structured languages made it possible to write moderately complex programs fairly easily. Structured languages are char- acterized by their support for stand-alone subroutines, local variables, rich control constructs, and their lack of reliance on the GOTO. Although structured languages are a powerful tool, they too can reach a limit. Consider this: At each milestone in the development of programming, techniques and tools were created to allow the programmer to deal with increasingly greater complexity. Each step of the way, the new approach took the best elements of the previous methods Answers: 1. An applet is a small program that is dynamically downloaded over the Web. 2. A highly optimized set of instructions that can be executed by the Java Virtual Machine. 3. Portability and security. Java Programming 15 and moved forward. Prior to the invention of OOP, many projects were nearing (or exceeding) the breaking point. Object-oriented methods were created to help programmers overcome these barriers. Object-oriented programming took the best ideas of structured programming and combined them with several new concepts. The result was a different way of organizing a program. In the most general sense, a program can be organized in one of two ways: around its code (what is happening) or around its data (what is being affected). Using only structured programming techniques, programs are typically organized around code. This approach can be thought of as “code acting on data.” Object-oriented programs work the other way around. They are organized around data, with the key principle being “data controlling access to code.” In an object- oriented language, you define the data and the routines that are permitted to act on that data. Thus, a data type defines precisely what sort of operations can be applied to that data. To support the principles of object-oriented programming, all OOP languages, including Java, have three traits in common: encapsulation, polymorphism, and inheritance. Let’s examine each. encapsulation Encapsulation is a programming mechanism that binds together code and the data it manipulates, and that keeps both safe from outside interference and misuse. In an object-oriented language, code and data can be bound together in such a way that a self-contained black box is created. Within the box are all necessary data and code. When code and data are linked together in this fashion, an object is created. In other words, an object is the device that supports encapsulation. Within an object, code, data, or both may be private to that object or public. Private code or data is known to and accessible by only another part of the object. That is, private code or data cannot be accessed by a piece of the program that exists outside the object. When code or data is public, other parts of your program can access it even though it is defined within an object. Typically, the public parts of an object are used to provide a controlled interface to the private elements of the object. Java’s basic unit of encapsulation is the class. Although the class will be examined in great detail later in this book, the following brief discussion will be helpful now. A class defines the form of an object. It specifies both the data and the code that will operate on that data. Java uses a class specification to construct objects. Objects are instances of a class. Thus, a class is essentially a set of plans that specify how to build an object. The code and data that constitute a class are called members of the class. Specifically, the data defined by the class are referred to as member variables or instance variables. The code that operates on that data is referred to as member meth- ods or just methods. 16 chapter 1 Java Programming Fundamentals Polymorphism Polymorphism (from Greek, meaning “many forms”) is the quality that allows one interface to access a general class of actions. The specific action is determined by the exact nature of the situation. A simple example of polymorphism is found in the steering wheel of an automobile. The steering wheel (i.e., the interface) is the same no matter what type of actual steering mechanism is used. That is, the steering wheel works the same whether your car has manual steering or power steering. Therefore, once you know how to operate the steering wheel, you can drive any type of car, regardless of how the steering is implemented. The same principle can also apply to programming. Here is a simple example. You can create an interface that defines an operation called get, which obtains the next item of data from some form of list. This action, obtaining the next item, can be implemented in any number of ways, based on how the items are stored. For example, the items might be stored in first-in, first-out order; in first-in, last-out order; based on some priority; or in any of a number of different ways. However, as long as each storage mechanism implements your interface, then you can use get to retrieve the next item. More generally, the concept of polymorphism is often expressed by the phrase “one interface, multiple methods.” This means that it is possible to design a generic interface to a group of related activities. Polymorphism helps reduce complexity by allowing the same interface to be used to specify a general class of action. It is the compiler’s job to select the specific action (i.e., method) as it applies to each situation. You, the programmer, don’t need to do this selection manually. You need only utilize the general interface. inheritance Inheritance is the process by which one object can acquire the properties of another object. This is important because it supports the concept of hierarchical classifica- tion. If you think about it, most knowledge is made manageable by hierarchical (i.e., top-down) classifications. For example, a Red Delicious apple is part of the classification apple, which in turn is part of the fruit class, which is under the larger class food. That is, the food class possesses certain qualities (edible, nutritious, etc.) which also, logically, apply to its subclass, fruit. In addition to these qualities, the fruit class has specific characteristics (juicy, sweet, etc.) that distinguish it from other food. The apple class defines those qualities specific to an apple (grows on trees, not tropical, etc.). A Red Delicious apple would, in turn, inherit all the quali- ties of all preceding classes and define only those qualities that make it unique. Without the use of hierarchies, each object would have to explicitly define all of its characteristics. Using inheritance, an object need only define those qualities that make it unique within its class. It can inherit its general attributes from its parent. Thus, it is the inheritance mechanism that makes it possible for one object to be a specific instance of a more general case. Java Programming 17 Progress Check 1. Name the principles of OOP. 2. What is the basic unit of encapsulation in Java? the Java deveLOPment Kit Now that the history and theoretical underpinning of Java have been discussed, it is time to start writing Java programs. Before you can compile and run those programs, however, the Java Development Kit (JDK) must be installed on the computer. Your instructor will explain how to access the JDK on the computers used by the course. Note: If you want to install the JDK on your own computer, the JDK can be downloaded from (at the time of this writing) www.oracle.com/technetwork/java/ javase/downloads/index.html. Follow the instructions for the type of computer that you have. After you have installed the JDK, you will be able to compile and run programs. The JDK supplies two primary programs. The first is javac, which is the Java compiler. It converts your source code into bytecode. The second is java. Sometimes referred to as the application launcher, this is the program you will use to run a Java program. It operates on the bytecode, using the JVM to execute your program. One other point: the JDK runs in the command prompt environment and uses command-line tools. It is not a windowed application. It is also not an integrated development environment (IDE). Note: In addition to the basic command-line tools supplied with the JDK, there are several high-quality integrated development environments available for Java. An IDE can be very helpful when developing and deploying commercial applications. As a general rule, you can also use an IDE to compile and run the programs in this book if you so choose. However, the instructions presented in this book for compiling and running a Java program describe only the JDK command-line tools. The reasons for this are easy to understand. First, the JDK is readily available. Second, the instruc- tions for using the JDK are the same for all environments. Third, because of differ- ences between IDEs, no general set of instructions can be given that will work for everyone. However, if your course is using an IDE, your instructor will provide the information needed to use it. Answers: 1. Encapsulation, polymorphism, and inheritance. 2. The class. 18 chapter 1 Java Programming Fundamentals ask the expert Q You state that object-oriented programming is an effective way to manage large programs. However, it seems that it might add substantial overhead to relatively small ones. Since you say that all Java programs are, to some extent, object-oriented, does this impose a penalty for smaller programs? ANo. As you will see, for small programs, Java’s object-oriented features are nearly transparent. Although it is true that Java follows a strict object model, you have wide latitude as to the degree to which you employ it. For smaller pro- grams, their “object-orientedness” is barely perceptible. As your programs grow, you will integrate more object-oriented features effortlessly. a First simPLe PrOgram The best way to introduce several of the key elements of Java is to begin by compiling and running a short sample program. We will use the one shown here: /* This is a simple Java program. Call this file Example.java. */ class Example { // A Java program begins with a call to main(). public static void main(String[] args) { System.out.println("Java drives the Web."); } } You will follow these three steps: 1. Enter the program. 2. Compile the program. 3. Run the program. entering the Program The first step in creating a program is to enter its source code into the computer. As explained earlier, a program’s source code is the human-readable form of the program. You must enter the program into your computer using a text editor, not a word processor. Word processors typically store format information along with text. This format information will confuse the Java compiler. The source code must consist solely of text. If your course is using an IDE, it will provide a source code editor for you to use. Otherwise any simple text editor will work. For example, if you are using Windows, you can use Notepad. For many computer languages, the name of the file that holds the source code to a program is arbitrary. However, this is not the case with Java. The first thing that you Java Programming 19 must learn about Java is that the name you give to a source file is very important. For this example, the name of the source file should be Example.java. Let’s see why. In Java, a source file is officially called a compilation unit. It is a text file that con- tains (among other things) one or more class definitions. (For now, we will be using source files that contain only one class.) The Java compiler requires that a source file use the .java filename extension. As you can see by looking at the program, the name of the class defined by the program is also Example. This is not a coincidence. In Java, all code must reside inside a class. By convention, the name of the main class should match the name of the file that holds the program. You should also make sure that the capitalization of the filename matches the class name. The reason for this is that Java is case sensitive. At this point, the convention that filenames correspond to class names may seem arbitrary, but following it makes maintaining and organizing your programs easier. Compiling the Program Before you can run the program, you must compile it using javac. To compile the Example program, execute javac, specifying the name of the source file on the com- mand line, as shown here: javac Example.java The javac compiler creates a file called Example.class that contains the bytecode version of the program. Remember, bytecode is not executable code. Bytecode must be executed by a Java Virtual Machine. It cannot be directly executed by the CPU. running the Program To actually run the program, you must use java. Recall that java operates on the byte- code form of your program. To execute the Example program, pass the class name Example as a command-line argument, as shown here: java Example When the program is run, the following output is displayed: Java drives the Web. When Java source code is compiled, each individual class is put into its own output file named after the class and using the .class extension. This is why it is a good idea to give a Java source file the same name as the class it contains—the name of the source file will match the name of the .class file. When you execute java as just shown, you are actually specifying the name of the class that you want to execute. java will auto- matically search for a file by that name that has the .class extension. If it finds the file, it will execute the code contained in the specified class. the First sample Program Line by Line Although Example.java is quite short, it includes several key features that are com- mon to all Java programs. Let’s closely examine each part of the program. 20 chapter 1 Java Programming Fundamentals The program begins with the following lines: /* This is a simple Java program. Call this file Example.java. */ This is a comment. Like most other programming languages, Java lets you enter a remark into a program’s source file. The compiler ignores the contents of a comment. Instead, a comment describes or explains the operation of the program to anyone who is reading its source code. In this case, the comment describes the program and reminds you that the source file should be called Example.java. Of course, in real applications, comments generally explain how some part of the program works or what a specific feature does. The comment shown at the top of the program is called a multiline comment. This type of comment must begin with /* and end with */. The compiler ignores anything between these two comment symbols. As the name suggests, a multiline comment may be several lines long. The next line of code in the program is shown here: class Example { This line uses the keyword class to declare that a new class is being defined. As mentioned, the class is Java’s basic unit of encapsulation. Example is the name of the class. The class definition begins with the opening brace ({) and ends with the clos- ing brace (}). The elements between the two braces are members of the class. For the moment, don’t worry too much about the details of a class except to note that in Java, all program activity occurs within one. This is one reason all Java programs are (at least a little bit) object-oriented. The next line in the program is the single-line comment, shown here: // A Java program begins with a call to main(). This is the second type of comment supported by Java. A single-line comment begins with a // and ends at the end of the line. As a general rule, programmers use multiline comments for longer remarks and single-line comments for brief, line-by-line descrip- tions. The next line of code is shown here: public static void main (String[] args) { This line begins the main( ) method. As mentioned earlier, in Java, a subroutine is called a method. As the comment preceding it suggests, this is the line at which the program will begin executing. All Java applications begin execution by executing main( ). The exact meaning of each part of this line cannot be given now, since it involves a detailed understanding of several other of Java’s features. However, since many of the examples in this book will use this line of code, a brief overview is war- ranted so that you have a general concept of what it means. The line begins with the public keyword. This is an access modifier. An access modifier determines how other parts of the program can access the members of Java Programming 21 the class. When a class member is preceded by public, then that member can be accessed by code outside the class in which it is declared. (The opposite of public is private, which prevents a member from being used by code defined outside of its class.) The main( ) method must be declared public because it is executed by code outside of the Example class. (In this case, it is the java application launcher that invokes main( ).) The keyword static allows main( ) to be executed independently of any object. This is necessary because main( ) is executed by the JVM before any objects are made. The keyword void simply tells the compiler that main( ) does not return a result. (As you will learn later, methods may also return values.) If all this seems a bit confusing, don’t worry. All of these concepts will be discussed in detail in subsequent chapters. As stated, main( ) is the method called when a Java application begins. Any information that you need to pass to a method is received by variables specified within the set of parentheses that follow the name of the method. These variables are called parameters. (If no parameters are required for a given method, you still need to include the empty parentheses.) The main( ) method requires that there be one parameter. This is specified in the Example program as String[ ] args, which declares a parameter named args. This is an array of objects of type String. Arrays are collec- tions of similar objects. Objects of type String store sequences of characters. (Both arrays and the String type are discussed in detail in subsequent chapters.) In this case, args receives any command-line arguments present when the program is executed. The Example program does not use command-line arguments, but other programs shown later in this book will. The last character on the line is the {. This signals the start of main( )’s body. All of the code included in a method will occur between the method’s opening brace and its closing brace. The next line of code is shown here. Notice that it occurs inside main( ). System.out.println("Java drives the Web."); This line outputs the string "Java drives the Web." followed by a new line on the screen. Output is actually accomplished by the built-in println( ) method. In this case, println( ) displays the string that is passed to it. As you will see, println( ) can be used to display other types of information, too. The line begins with System.out. While too complicated to explain in detail at this time, briefly, System is a predefined class that provides access to the system, and out is the output stream that is connected to the console. Thus, System.out is an object that encapsulates console output. The fact that Java uses an object to define console output is further evidence of its object- oriented nature. As you might have guessed, console output (and input) is not used frequently in real-world Java applications. Since most modern computing environments are win- dowed and graphical in nature, console I/O is used mostly for simple utility programs, for demonstration programs (like those shown in this book), and for server-side code. Later, you will learn how to create graphical user interfaces (GUIs), but for now, we will continue to use the console I/O methods. Notice that the println( ) statement ends with a semicolon. All statements in Java end with a semicolon. The reason that the 22 chapter 1 Java Programming Fundamentals other lines in the program do not end in a semicolon is that they are not, technically, statements. The first } in the program ends main( ), and the last } ends the Example class definition. One last point: Java is case sensitive. Forgetting this can cause you serious prob- lems. For example, if you accidentally type Main instead of main, or PrintLn instead of println, the preceding program will be incorrect. Furthermore, although the Java compiler will compile classes that do not contain a main( ) method, it has no way to execute them. So, if you had mistyped main, the compiler would still compile your program. However, java would report an error because it would be unable to find the main( ) method. 1. Where does a Java program begin execution? 2. What does System.out.println( ) do? 3. What is the name of the Java compiler? What do you use to run a Java program? handLing syntax errOrs If you have not yet done so, enter, compile, and run the preceding program. As you may know, it is quite easy to accidentally type something incorrectly when entering code into your computer. Fortunately, if you enter something incorrectly into your program, the compiler will report a syntax error message when it tries to compile it. The Java com- piler attempts to make sense out of your source code no matter what you have written. For this reason, the error that is reported may not always reflect the actual cause of the problem. In the preceding program, for example, an accidental omission of the opening brace after the main( ) method causes the compiler to report the following two errors. Example.java:8: ';' expected public static void main(String[] args) ^ Example.java:11: class, interface, or enum expected } ^ Clearly, the first error message is completely wrong because what is missing is not a semicolon but a brace. The second error message is not wrong, per se, but is simply the result of the compiler trying to make sense of the remainder of the program after its syntax has been distorted by the missing brace. Answers: 1. main( ) 2. Outputs information to the console. 3. The standard Java compiler is javac. To run a Java program, use java. Progress Check Java Programming 23 The point of this discussion is that when your program contains a syntax error, you shouldn’t necessarily take the compiler’s messages at face value. The messages may be misleading. You may need to “second-guess” an error message in order to find the real problem. Also, look at the last few lines of code in your program that precede the line being flagged. Sometimes an error will not be reported until several lines after the point at which the error actually occurred. a seCOnd simPLe PrOgram Perhaps no other construct is as important to a programming language as the assignment of a value to a variable. A variable is a named memory location that can be assigned a value. This value can then be accessed through the variable’s name. Further, the value of a variable can be changed during the execution of a program. That is, the content of a variable is changeable, not fixed. The following program creates two variables called var1 and var2. Notice how they are used. /* This demonstrates a variable. Call this file Example2.java. */ class Example2 { public static void main(String[] args) { int var1; // this declares a variable int var2; // this declares another variable Declare variables. var1 = 1024; // this assigns 1024 to var1 Assign a variable a value. System.out.println("var1 contains" + var1); var2 = var1 / 2; System.out.print("var2 contains var1 / 2: "); System.out.println(var2); } } When you run this program, you will see the following output: var1 contains 1024 var2 contains var1 / 2: 512 This program introduces several new concepts. First, the statement int var1; // this declares a variable declares a variable called var1 of type integer. In Java, all variables must be declared before they are used. Further, the type of values that the variable can hold must also 24 chapter 1 Java Programming Fundamentals be specified. This is called the type of the variable. In this case, var1 can hold integer values. These are whole-number values. In Java, to declare a variable to be of type integer, precede its name with the keyword int. Thus, the preceding statement declares a variable called var1 of type int. The next line declares a second variable called var2: int var2; // this declares another variable Notice that this line uses the same format as the first line except that the name of the variable is different. In general, to declare a variable you will use a statement like this: type var-name; Here, type specifies the type of variable being declared, and var-name is the name of the variable. In addition to int, Java supports several other data types. The following line of code assigns var1 the value 1024: var1 = 1024; // this assigns 1024 to var1 In Java, the assignment operator is the single equal sign. It copies the value on its right side into the variable on its left. The next line of code outputs the value of var1 preceded by the string "var1 con- tains": System.out.println("var1 contains" + var1); In this statement, the plus sign causes the value of var1 to be displayed after the stringthatprecedesit.Thisapproachcanbegeneralized.Usingthe+ operator,you can chain together as many items as you want within a single println( ) statement. The next line of code assigns var2 the value of var1 divided by 2: var2 = var1 / 2; This line divides the value in var1 by 2 and then stores that result in var2. Thus, after the line executes, var2 will contain the value 512. The value of var1 will be unchanged. Like most other computer languages, Java supports a full range of arith- metic operators, including those shown here: Here are the next two lines in the program: System.out.print("var2 contains var1/2: "); System.out.println(var2); + Addition – Subtraction * Multiplication / Division Java Programming 25 Two new things are occurring here. First, the built-in method print( ) is used to display the string "var2 contains var1 / 2: ". This string is not followed by a new line. This means that when the next output is generated, it will start on the same line. The print( ) method is just like println( ), except that it does not output a new line after each call. Second, in the call to println( ), notice that var2 is used by itself. Both print( ) and println( ) can be used to output values of any of Java’s built-in types. One more point about declaring variables before we move on: It is possible to declare two or more variables using the same declaration statement. Just separate their names by commas. For example, var1 and var2 could have been declared like this: int var1, var2; // both declared using one statement anOther data tyPe In the preceding program, a variable of type int was used. However, a variable of type int can hold only whole numbers. Thus, it cannot be used when a fractional component is required. For example, an int variable can hold the value 18, but not the value 18.3. Fortunately, int is only one of several data types defined by Java. To allow numbers with fractional components, Java defines two floating-point types: float and double, which represent single- and double-precision values, respectively. Of the two, double is the most commonly used. To declare a variable of type double, use a statement similar to that shown here: double x; Here, x is the name of the variable, which is of type double. Because x has a floating- point type, it can hold values such as 122.23, 0.034, or –19.0. To better understand the difference between int and double, try the following program: /* This program illustrates the differences between int and double. Call this file Example3.java. */ class Example3 { public static void main(String[] args) { int w; // this declares an int variable double x; // this declares a floating-point variable w = 10; // assign w the value 10 x = 10.0; // assign x the value 10.0 26 chapter 1 Java Programming Fundamentals System.out.println("Original value of w: " + w); System.out.println("Original value of x: " + x); System.out.println(); // print a blank line // now, divide both by 4 w = w / 4; x = x / 4; System.out.println("w after division: " + w); System.out.println("x after division: " + x); } Output a blank line. } The output from this program is shown here: Original value of w: 10 Original value of x: 10.0 w after division: 2 x after division: 2.5 Fractional component lost Fractional component preserved As you can see, when w (an int variable) is divided by 4, a whole-number division is performed, and the outcome is 2—the fractional component is lost. However, when x (a double variable) is divided by 4, the fractional component is preserved, and the proper answer is displayed. There is one other new thing to notice in the program. To print a blank line, simply call println( ) without any arguments. ask the expert Q Why does Java have different data types for integers and floating-point val- ues? That is, why aren’t all numeric values just the same type? AJava supplies different data types so that you can write efficient programs. For example, integer arithmetic is faster than floating-point calculations. Thus, if you don’t need fractional values, then you don’t need to incur the over- head associated with types float or double. Second, the amount of memory required for one type of data might be less than that required for another. By supplying different types, Java enables you to make best use of system resources. Finally, some algorithms require (or at least benefit from) the use of a specific type of data. In general, Java supplies a number of built-in types to give you the greatest flexibility. Java Programming 27 Try This 1-1 Converting Gallons to Liters GalToLit.java Although the preceding sample programs illustrate several important features of the Java language, they are not very useful. Even though you do not know much about Java at this point, you can still put what you have learned to work to create a practical program. In this project, we will create a program that converts gallons to liters. The program will work by declaring two double variables. One will hold the number of the gallons, and the second will hold the number of liters after the conversion. There are approximately 3.7854 liters in a gallon. Thus, to convert gallons to liters, the gallon value is multiplied by 3.7854. The program displays both the number of gallons and the equivalent number of liters. StEP-By-StEP 1. Create a new file called GaltoLit.java. 2. Enter the following program into the file: /* Try This 1-1 This program converts gallons to liters. Call this program GalToLit.java. */ class GalToLit { public static void main(String[] args) { double gallons; // holds the number of gallons double liters; // holds conversion to liters gallons = 10; // start with 10 gallons liters = gallons * 3.7854; // convert to liters System.out.println(gallons + " gallons is " + liters + " liters."); } } 3. Compile the program using the following command line: javac GalToLit.java 4. Run the program using this command: java GalToLit You will see this output: 10.0 gallons is 37.854 liters. 5. As it stands, this program converts 10 gallons to liters. However, by chang- ing the value assigned to gallons, you can have the program convert a differ- ent number of gallons into its equivalent number of liters. 28 chapter 1 Java Programming Fundamentals Progress Check 1. What is Java’s keyword for the integer data type? 2. What is double? twO COntrOL statements Inside a method, execution proceeds in the sequence in which the statements occur. In other words, execution proceeds from one statement to the next, top to bottom. However, often you will want to alter this flow based on some condition. Such situa- tions are extremely common in programming. Here is one example. A web site might require a password, and your code must not grant access to the site if the password is invalid. Thus, the code that grants access must not be executed if an invalid password is entered. Continuing with this example, if an invalid password is entered, you might want to give the user two (and only two) more tries to enter it correctly. To handle situations in which the flow of program execution is to be altered, Java provides a rich assortment of control statements. Although we will look closely at control state- ments in Chapter 3, two such statements, the if and the for, are briefly introduced here because we will be using them to write sample programs. the if statement You can selectively execute part of a program through the use of the if statement. The if is Java’s basic “decision making” statement. As such, the if is one of the foundational elements of Java and of programming in general. You would use an if statement to determine if one number is less than another, to check if a variable con- tains a target value, or to test for some error condition, to name just three examples among many. The simplest form of the if is shown here: if(condition) statement; Here, condition is an expression that evaluates to either true or false. (Such an expres- sion is called a Boolean expression.) If condition is true, then the statement is execut- ed. If condition is false, then the statement is bypassed. Thus, the condition controls whether or not the following statement is executed. Here is an example: if(10 < 11) System.out.println("10 is less than 11"); In this line, the less-than operator < is used to determine if 10 is less than 11. Since 10 is less than 11, the conditional expression is true, and println( ) will execute. However, consider the following: if(10 < 9) System.out.println("this won't be displayed"); Answers: 1. int 2. The keyword for the double floating-point data type. Java Programming 29 In this case, 10 is not less than 9. Thus, the call to println( ) will not take place. The < is just one of Java’s relational operators. A relational operator determines the relationship between two values. Java defines a full complement of relational operators that may be used in a conditional expression. They are shown here: Operator Meaning < Less than <= Less than or equal to >
Greater than
>=
Greater than or equal to
==
Equal to
!=
Not equal
Notice that the test for equality is the double equal sign. In all cases, the outcome of a relational operator is a true or false value.
Here is a program that illustrates the if statement and several of the relational operators:
/*
Demonstrate the if.
Call this file IfDemo.java. */
class IfDemo {
public static void main(String[] args) {
int a, b, c;
a = 2; b = 3;
if(a < b) System.out.println("a is less than b"); // this won't display anything if(a == b) System.out.println("you won't see this"); System.out.println(); c = a - b; // c contains -1 System.out.println("c contains -1"); if(c >= 0) System.out.println(“c is non-negative”); if(c < 0) System.out.println("c is negative"); System.out.println(); c = b - a; // c now contains 1 30 chapter 1 Java Programming Fundamentals System.out.println("c contains 1"); if(c >= 0) System.out.println(“c is non-negative”);
if(c < 0) System.out.println("c is negative"); } } The output generated by this program is shown here: a is less than b c contains -1 c is negative c contains 1 c is non-negative Notice one other thing in this program. The line int a, b, c; declares three variables, a, b, and c, by use of a comma-separated list. As mentioned earlier, when you need two or more variables of the same type, they can be declared in one statement. Just separate the variable names by commas. ask the expert Q In the discussion of the if statement, you mentioned that a true/false expres- sion is referred to as Boolean expression. Why is that term used? AThe term Boolean is named after George Boole (1815–1864). He developed and formalized the laws that govern true/false expressions. This became known as Boolean algebra. His work eventually came to form the basis of computer logic. the for Loop Many times a program will need to perform a task more than once. For example, you might want to display the time of day, with the time updated once every second. Obviously, it would not be practical to write such a program using hundreds of separate println( ) statements, one for each possible time, in one-second intervals. Instead, such a repetitive operation would be accomplished by a loop. A loop is a control statement that repeatedly executes a sequence of code. Loops are used extensively by nearly all programs. Like the if statement, loops are a fundamental part of programming. Java supplies a powerful assortment of loop constructs. The one we will introduce here is the for loop. The simplest form of the for loop is shown next: for(initialization; condition; iteration) statement; In its most common form, the initialization portion of the loop sets a loop control variable to an initial value. The condition is a Boolean expression that tests the loop Java Programming 31 control variable. If the outcome of that test is true, the for loop continues to iterate. If it is false, the loop terminates. The iteration expression determines how the loop control variable is changed each time the loop iterates. Here is a short program that illustrates the for loop: /* Demonstrate the for loop. Call this file ForDemo.java. */ class ForDemo { public static void main(String[] args) { int count; for(count = 0; count < 5; count = count+1) System.out.println("This is count: " + count); System.out.println("Done!"); } } The output generated by the program is shown here: This is count: 0 This is count: 1 This is count: 2 This is count: 3 This is count: 4 Done! This loop iterates five times. In this example, count is the loop control variable. It is set to zero in the initialization portion of the for. At the start of each iteration (including the first one), the condi- tional test count < 5 is performed. If the outcome of this test is true, the println( ) statement is executed, and then the iteration portion of the loop is executed. This pro- cess continues until the conditional test is false, at which point execution picks up at the bottom of the loop. As a point of interest, in professionally written Java programs, you will almost never see the iteration portion of the loop written as shown in the preceding program. That is, you will seldom see statements like this: count = count + 1; The reason is that Java includes a special increment operator that performs this opera- tion more efficiently. The increment operator is ++ (that is, two plus signs back to back). The increment operator increases its operand by one. By use of the increment operator, the preceding statement can be written like this: count++; Thus, the for in the preceding program will usually be written like this: for(count = 0; count < 5; count++) 32 chapter 1 Java Programming Fundamentals You might want to try this. As you will see, the loop still runs exactly the same as it did before. Java also provides a decrement operator, which is specified as – –. This operator decreases its operand by one. 1. What does the if statement do? 2. What does the for statement do? 3. What are Java’s relational operators? Create BLOCKs OF COde Another key element of Java is the code block. A code block is a grouping of two or more statements. This is done by enclosing the statements between opening and clos- ing braces. Once a block of code has been created, it becomes a logical unit that can be used any place that a single statement can. This is important because it lets you use a set of statements as the target of a control statement, such as the if or for described in the previous section. For example, consider this if statement: if(w < h) { Start of block v = w * h; w = 0; Progress Check } End of block Here, the target of the if statement is a block of code that contains two statements. If w is less than h, both statements inside the block will be executed. If w is not less than h, the block is bypassed and neither statement is executed. Thus, the two statements inside the block form a logical unit, and one statement cannot execute without the other also executing. This concept can be generalized: whenever you need to logically link two or more statements, you do so by creating a block. The following program demonstrates a block of code by using it as the target of an if statement to prevent a division by zero: /* Demonstrate a block of code. Call this file BlockDemo.java. */ class BlockDemo { public static void main(String[] args) { Answers: 1. The if is Java’s conditional statement. 2. The for is one of Java’s loop statements. 3. The relational operators are = =, !=, <, >, <=, and >=.

double i, j, d;
Java Programming 33
i = 5; j = 10;
// the target of this if is a block
if(i != 0) {
System.out.println(“i does not equal zero”);
d = j / i;
System.out.print(“j / i is ” + d);
} }
}
The output generated by this program is shown here:
i does not equal zero j / i is 2.0
Thetargetoftheifisthis entire block.
In this example, the target of the if statement is a block of code that is executed only if i does not equal zero. If the condition controlling the if is true (as it is in this case), the three statements inside the block will be executed. Try setting i to zero and observe the result. You will see that the entire block is skipped.
As you will learn later, blocks of code have additional properties and uses. However, the main reason for their existence is to create logically inseparable units of code.
ask the expert
Q Does the use of a code block introduce any run-time inefficiencies? In other words, does Java actually execute the { and }?
ANo. Code blocks do not add any overhead whatsoever. In fact, because of their ability to simplify the coding of certain algorithms, their use generally increases speed and efficiency. Also, the { and } exist only in your program’s source code. Java does not, per se, execute the { or }.
semiCOLOns and POsitiOning
In Java, the semicolon is a separator that is used to terminate a statement. That is, each individual statement must be ended with a semicolon. It indicates the end of one logical entity.
As you know, a block is a set of logically connected statements that are surrounded by opening and closing braces. A block is not terminated with a semicolon. Since a block is a group of statements, with a semicolon after each statement, it makes sense that a block is not terminated by a semicolon; instead, the end of the block is indicated by the closing brace.

34 chapter 1 Java Programming Fundamentals
Java does not recognize the end of the line as a terminator. For this reason, it does
not matter where on a line you put a statement. For example,
x = y;
y = y + 1;
System.out.println(x + ” ” + y);
is the same as the following, to Java:
x = y; y = y + 1; System.out.println(x + ” ” + y);
Furthermore, the individual elements of a statement can also be put on separate lines. For example, the following is perfectly acceptable:
System.out.println(“This is a long line of output” + x+y+z+
“more output”);
Breaking long lines in this fashion is often used to make programs more readable. It can also help prevent excessively long lines from wrapping.
indentatiOn PraCtiCes
You may have noticed in the previous examples that certain statements were indented. Java is a free-form language, meaning that it does not matter where you place state- ments relative to each other on a line. However, over the years, a common and accepted indentation style has developed that allows for very readable programs. This book follows that style, and it is recommended that you do so as well. Using this style, you indent one level after each opening brace, and move back out one level after each closing brace. Certain statements encourage some additional indenting; these will be covered later.
1. How is a block of code created? What does it do?
2. In Java, statements are terminated by a ____________.
3. All Java statements must start and end on one line. True or False?
Answers:
1. A block is started by a {. It is ended by a }. A block creates a logical unit of code.
2. semicolon 3. False.
Progress Check

Java Programming 35
Try This 1-2 Improving the Gallons- to-Liters Converter
GalToLitTable.java
You can use the for loop, the if statement, and code blocks to create an improved version of the gallons-to-liters converter that you developed in Try This 1-1. This new version will print a table of conversions, beginning with 1 gallon and ending at 100 gallons. After every 10 gallons, a blank line will be output. This is accom- plished through the use of a variable called counter that counts the number of lines that have been output. Pay special attention to its use.
StEP-By-StEP
1. Create a new file called GaltoLittable.java.
2. Enter the following program into the file:
/*
Try This 1-2
This program displays a conversion
table of gallons to liters.
Call this program “GalToLitTable.java”.
*/
class GalToLitTable {
public static void main(String[] args) {
double gallons, liters;
int counter;
Line counter is initially set to zero.
counter = 0;
for(gallons = 1; gallons <= 100; gallons++) { liters = gallons * 3.7854; // convert to liters System.out.println(gallons + " gallons is " + liters + " liters."); counter++; Increment the line counter // every 10th line, print a blank line with each loop iteration. if(counter == 10) { System.out.println(); counter = 0; // reset the line counter } } } } 3. Compile the program using the following command line: javac GalToLitTable.java If counter is 10, output a blank line. 36 chapter 1 Java Programming Fundamentals 4. Run the program using this command: java GalToLitTable Here is a portion of the output that you will see: 1.0 gallons is 3.7854 liters. 2.0 gallons is 7.5708 liters. 3.0 gallons is 11.356200000000001 liters. 4.0 gallons is 15.1416 liters. 5.0 gallons is 18.927 liters. 6.0 gallons is 22.712400000000002 liters. 7.0 gallons is 26.4978 liters. 8.0 gallons is 30.2832 liters. 9.0 gallons is 34.0686 liters. 10.0 gallons is 37.854 liters. 11.0 gallons is 41.6394 liters. 12.0 gallons is 45.424800000000005 liters. 13.0 gallons is 49.2102 liters. 14.0 gallons is 52.9956 liters. 15.0 gallons is 56.781 liters. 16.0 gallons is 60.5664 liters. 17.0 gallons is 64.3518 liters. 18.0 gallons is 68.1372 liters. 19.0 gallons is 71.9226 liters. 20.0 gallons is 75.708 liters. 21.0 gallons is 79.49340000000001 liters. 22.0 gallons is 83.2788 liters. 23.0 gallons is 87.0642 liters. 24.0 gallons is 90.84960000000001 liters. 25.0 gallons is 94.635 liters. 26.0 gallons is 98.4204 liters. 27.0 gallons is 102.2058 liters. 28.0 gallons is 105.9912 liters. 29.0 gallons is 109.7766 liters. 30.0 gallons is 113.562 liters. the Java KeywOrds Fifty keywords are currently defined in the Java language (see Table 1-1). These key- words, combined with the syntax of the operators and separators, form the foundation of the Java language. These keywords cannot be used as names for things such as variables, classes, or methods. Java Programming 37 Table 1-1: The Java Keywords abstract catch do finally import new short this volatile assert char double float instanceof package static throw while boolean class else for int private strictfp throws break const enum goto interface protected super transient byte continue extends if long public switch try case default final implements native return synchronized void The keywords const and goto are reserved but not used. In the early days of Java, several other keywords were reserved for possible future use. However, the current specification for Java defines only the keywords shown in Table 1-1. In addition to the keywords, Java reserves the following: true, false, and null. These are values defined by Java. You may not use these words for the names of a variable, class, and so on. identiFiers in Java In Java an identifier is a name given to a method, a variable, or any other user-defined item. Identifiers can be from one to several characters long. Variable names may start with any letter of the alphabet, an underscore, or a dollar sign. Next may be either a letter, a digit, a dollar sign, or an underscore. The underscore can be used to enhance the readability of a variable name, as in line_count. Uppercase and lowercase are different; that is, to Java, myvar and MyVar are separate names. Here are some examples of legal identifiers: Remember, you can’t start an identifier with a digit. Thus, 12x is invalid, for example. As explained in the previous section, you cannot use any of the Java keywords or reserved words as identifier names. Also, you should not assign the name of any standard method, such as println, to an identifier. Beyond these two restrictions, good programming practice dictates that you use identifier names that reflect the meaning or usage of the items being named. Test x y2 maxLoad $up _top my_var sample23 38 chapter 1 Java Programming Fundamentals ask the expert Q Can you give any guidelines to follow in choosing good variable names? AYes. In general, variables should be given names that describe their meaning as they are used in the program. For example, if you are creating variables that will hold the width and height of a rectangle, the names width and height are appropriate. Of course, sometimes a single word will not be adequate and a phrase is needed. For example, a variable that will hold the concentration of some mate- rial in parts per million might be called partsPerMillion, or perhaps shortened to partsPerMil. In these examples, notice the capitalization. After the first word, subsequent words are capitalized. This is referred to as camel case by programmers, and it is common style among Java programmers. Although descriptive names are very important, sometimes the name of a variable is arbitrary and no descriptive name applies. This is commonly the case with loop control variables, variables that hold an interim result, and variables used in short example programs, such as those shown in this book, that simply demonstrate a feature of the language. In these cases, individual letters, such as x, i, or v, are frequently employed. Progress Check 1. Which is the keyword: for, For, or FOR? 2. A Java identifier can contain what type of characters? 3. Are index21 and Index21 the same identifier? the Java CLass LiBraries The sample programs shown in this chapter make use of two of Java’s built-in meth- ods: println( ) and print( ). These methods are members of the System class, which is a class predefined by Java that is automatically included in your programs. In the larger view, the Java environment relies on several built-in class libraries that contain many built-in methods that provide support for such things as I/O, string handling, networking, and a graphical user interface. Thus, Java as a totality is a combination of the Java language itself, plus its standard classes. As you will see, the class librar- ies provide much of the functionality that comes with Java. Indeed, part of becoming Answers: 1. The keyword is for. In Java, all keywords are in lowercase. 2. Letters, digits, the underscore, and the $. 3. No; Java is case sensitive. Java Programming 39 a Java programmer is learning to use the standard Java classes. Throughout this book, various elements of the standard library classes and methods are described. Understand, however, that the Java library is very large. It contains far more features than can be described in this book. It is something that you will also want to explore more on your own as you advance in your Java programming skills. exerCises 1. Name the three necessary pieces of a computer. 2. What is source code? What is object code? 3. What is the value 14 in binary? What is the decimal equivalent of this binary number 1010 0110? 4. As a general rule, a byte is comprised of __________ bits. 5. WhatisbytecodeandwhyisitimportanttoJava’suseforInternetprogramming? 6. What are the three main principles of object-oriented programming? 7. Where do Java programs begin execution? 8. What is a variable? 9. Which of the following variable names is invalid? A. count B. $count C. count27 D. 67count 10. How do you create a single-line comment? How do you create a multiline comment? 11. Show the general form of the if statement. Show the general form of the for loop. 12. How do you create a block of code? 13. The moon’s gravity is about 17 percent that of earth’s. Write a program that computes your effective weight on the moon. 14. Adapt Try This 1-2 so that it prints a conversion table of inches to meters. Display 12 feet of conversions, inch by inch. Output a blank line every 12 inches. (One meter equals approximately 39.37 inches.) 15. If you make a typing mistake when entering your program, what sort of error will result? 16. Does it matter where on a line you put a statement? 40 chapter 1 Java Programming Fundamentals 17. True or false: A. Comments contain important information for the compiler. B. You can have nested multiline comments of the form /*.../*...*/...*/. C. The equal sign = is used to test equality in if statements. 18. Name two I/O devices for computers that were not mentioned in this chapter. 19. Why don't programmers write code in a CPU’s machine language? That is, why do almost all programmers use a higher level language like Java? 20. What is the difference between a compiler and an interpreter? 21. As mentioned in the text, a byte usually consists of 8 bits. Do a little research to determine what each of the following terms refer to: A. kilobyte B. megabyte C. gigabyte D. terabyte 22. Tell whether each of the following symbols or words is a Java keyword, operator, punctuation mark, or none of these. A. 33 B. for C. ; D. int E. {} 23. Give an example, other than the food example in the chapter, of hierarchical classification where each classification inherits all the attributes of its parent classification. 24. What is wrong with each of the following commands? javac Example.class java Example.class 25. What is the difference between using x = 3; and { x = 3; } as the target of an if statement? 26. Use indentation, spacing and multiple lines to make the following program more readable. /* This program computes and prints the sum of the first 10 positive integers */ class SumFrom1To10{public static void main(String[] args){int sum,i;sum=0;for(i=1;i<=10;i++)sum=sum+i;System.out.println("The sum 1 + 2+...+10 is "+sum);}} 27. Suggest more appropriate names for the class and the variables in the following program. /* This program converts Fahrenheit to Celsius. */ class XXX { public static void main(String[] args) { double x, xx; x = 62; xx = (x-32) * 5.0/9.0; System.out.println(x + " degrees Fahrenheit is " + xx + " degrees Celsius."); } } 28. Assume x is a variable that is declared as type int. What is wrong with each of the following statements? A. x = 3.5; B. if(x = 3) x = 4; C. x = "34"; 29. Write a program that prints out the first 20 squares (1, 4, 9, 16, ..., 400), one per line. Use a for loop. 30. ModifyyouranswertoExercise29sothatitprintsthesumofthefirst 20 squares (1 + 4 + 9 + 16 + ... + 400). 31. ModifyyouranswertoExercise30sothatitfindsanddisplaystheaverageof the first 20 squares. Java Programming 41 Chapter Introducing Data types and operators key skills & concepts j Know Java’s primitive types j Use literals j Initialize variables j Know the scope rules of variables within a method j Use the arithmetic operators j Use the relational and logical operators j Understand the assignment operators j Use shorthand assignments j Understand type conversion in assignments j Use a cast j Understand type conversion in expressions At the foundation of any programming language are its data types and operators, and Java is no exception. These elements define the limits of a language and determine the kind of tasks to which it can be applied. Fortunately, Java supports a rich assortment of both data types and operators, making it suitable for nearly any type of programming. Data types and operators are a large subject. We will begin here with an examina- tion of Java’s foundational data types and its most commonly used operators. We will also take a closer look at variables and examine the expression. Why Data types are Important Data types are especially important in Java because it is a strongly typed language. This means that the compiler type-checks all operations for type compatibility. Illegal operations will not be compiled. Thus, strong type checking helps prevent errors and enhances reliability. To enable strong type checking, all variables, expressions, 43 2 44 chapter 2 Introducing Data types and operators Table 2-1: Java’s built-in Primitive Data Types Type Meaning boolean Represents true/false values byte 8-bit integer char Character double Double-precision floating point float Single-precision floating point int Integer long Long integer short Short integer and values have a type. There is no concept of a “type-less” variable, for example. Furthermore, the type of a value determines what operations are allowed on it. An operation allowed on one type might not be allowed on another. Java’s prImItIve types Java contains two general categories of built-in data types: object-oriented and non- object-oriented. Java’s object-oriented types are defined by classes, and a discussion of classes is deferred until later. However, at the core of Java are eight primitive (also called elemental or simple) types of data, which are shown in Table 2-1. The term primitive is used here to indicate that these types are not objects in an object-oriented sense, but rather, normal binary values. These primitive types are not objects because of efficiency concerns. Java strictly specifies a range and behavior for each primitive type, which all implementations of the Java Virtual Machine must support. Because of Java’s porta- bility requirement, Java is uncompromising on this account. For example, an int is the same in all execution environments. This allows programs to be fully portable. There is no need to rewrite code to fit a specific platform. Although strictly specifying the range of the primitive types may cause a small loss of performance in some environ- ments, it is necessary in order to achieve portability. Integers Java defines four integer types: byte, short, int, and long, which are shown here: Type Width in Bits Range byte 8 –128 to 127 short 16 –32,768 to 32,767 int 32 –2,147,483,648 to 2,147,483,647 long 64 –9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 Java programming 45 As the table shows, all of the integer types are signed positive and negative values. Java does not support unsigned (positive-only) integers. Many other computer lan- guages support both signed and unsigned integers. However, Java’s designers felt that unsigned integers were unnecessary. Note: Technically, the Java run-time system can use any size it wants to store a primi- tive type. However, in all cases, types must act as specified. The most commonly used integer type is int. Variables of type int are often employed to control loops, to index arrays, and to perform general-purpose integer math. When you need an integer that has a range greater than int, use long. For example, here is a program that computes the number of cubic inches contained in a cube that is one mile, by one mile, by one mile: /* Compute the number of cubic inches in 1 cubic mile. */ class Inches { public static void main(String[] args) { long cubicInches; long inchesPerMile; // compute the number of inches in a mile inchesPerMile = 5280 * 12; // compute the number of cubic inches cubicInches = inchesPerMile * inchesPerMile * inchesPerMile; System.out.println("There are " + cubicInches + " cubic inches in a cubic mile."); } } Recall that a mile is 5,280 feet. Therefore, to compute the number of cubic inches in a cubic mile, first, the number of inches in a mile is obtained, and then that value is used to compute the volume. The output from the program is shown here: There are 254358061056000 cubic inches in a cubic mile. Clearly, the result could not have been held in an int variable. The smallest integer type is byte. Variables of type byte are especially useful when working with raw binary data that may not be directly compatible with Java’s other built-in types. The short type creates a short integer. Variables of type short are appropriate when you want to conserve memory and don’t need the larger range offered by int. 46 chapter 2 Introducing Data types and operators ask the expert QYou say that there are four integer types: int, short, long, and byte. However, I have heard that char can also be categorized as an integer type in Java. Can you explain? AThe formal specification for Java defines a type category called integral types, which include byte, short, int, long, and char. They are called integral types because they all hold whole-number, binary values. However, the purpose of the first four is to represent numeric integer quantities. The purpose of char is to represent characters. Therefore, the principal uses of char and the principal uses of the other integral types are fundamentally different. Because of the differences, the char type is treated separately in this book. Floating-point types As explained in Chapter 1, the floating-point types can represent numbers that have fractional components. There are two kinds of floating-point types, float and double, which represent single- and double-precision numbers, respectively. Type float is 32 bits wide and type double is 64 bits wide. The size differences mean that the largest float literal is approximately 3.4 × 1038 and the largest double literal is approximately 1.8 × 10308. Of the two, double is the most commonly used because all of the math functions in Java’s class library use double values. For example, the sqrt( ) method (which is defined by the standard Math class) returns a double value that is the square root of its double argument. Here, sqrt( ) is used to compute the length of the hypotenuse, given the lengths of the two opposing sides: /* Use the Pythagorean theorem to find the length of the hypotenuse given the lengths of the two opposing sides. */ class Hypotenuse { public static void main(String[] args) { double side1, side2, hypot; side1 = 3; Notice how sqrt( ) is called. It is preceded by the side2 = 4; name of the class of which it is a member. hypot = Math.sqrt(side1*side1 + side2*side2); System.out.println("Hypotenuse is " + hypot); } } The output from the program is shown here: Hypotenuse is 5.0 One other point about the preceding example: As mentioned, sqrt( ) is a member of the standard Math class. Notice how sqrt( ) is called; it is preceded by the name Math. This is similar to the way System.out precedes println( ). Although not all standard methods are called by specifying their class name first, several are. Characters In Java, characters are not 8-bit quantities like they are in many other computer languages. Instead, Java uses 16-bit characters. The reason for this difference is that Java supports Unicode characters. Unicode defines a character set that can represent the characters found in all human languages. Originally, Unicode was designed as a 16-bit quantity, and Java reflected this fact by making char 16 bits long. In Java, char is an unsigned 16-bit type having a range of 0 to 65,535. The standard 8-bit ASCII character set is a subset of Unicode and ranges from 0 to 127. Thus, the ASCII char- acters are still valid Java characters. (ASCII stands for American Standard Code for Information Interchange.) A character variable can be assigned a value by enclosing the character in single quotes. For example, this assigns the variable ch the letter X: char ch; ch = 'X'; You can output a char value using a println( ) statement. For example, this line out- puts the value in ch: System.out.println("This is ch: " + ch); Since char is an unsigned 16-bit type, it is possible to perform various arithmetic manipulations on a char variable. For example, consider the following program: // Character variables can be handled like integers. class CharArithDemo { public static void main(String[] args) { char ch; ch = 'X'; System.out.println("ch contains " + ch); ch++; // increment ch System.out.println("ch is now " + ch); ch = 90; // give ch the value Z System.out.println("ch is now " + ch); } A char can be incremented. A char can be assigned an integer value. Java programming 47 } 48 chapter 2 Introducing Data types and operators The output generated by this program is shown here: ch contains X ch is now Y ch is now Z In the program, ch is first given the value X. Next, ch is incremented. This results in ch containing Y, the next character in the ASCII (and Unicode) sequence. Next, ch is assigned the value 90, which is the ASCII (and Unicode) value that corresponds to the letter Z. Since the ASCII character set occupies the first 127 values in the Unicode character set, all the “old tricks” that programmers have used with characters in other languages will work in Java, too. ask the expert Q Why does Java use Unicode? AJava was designed for worldwide use. Thus, it needs to use a character set that can represent the world’s languages. Unicode is the standard character set designed expressly for this purpose. Of course, the use of Unicode is inefficient for languages such as English, German, Spanish, or French, whose characters can be contained within 8 bits. But such is the price that must be paid for global portability. the Boolean type The boolean type represents true/false values. Java defines the values true and false using the reserved words true and false. Thus, a variable or expression of type boolean will be one of these two values. Here is a program that demonstrates the boolean type: // Demonstrate boolean values. class BoolDemo { public static void main(String[] args) { boolean b; b = false; System.out.println("b is " + b); b = true; System.out.println("b is " + b); // a boolean value can control the if statement if(b) System.out.println("This is executed."); b = false; if(b) System.out.println("This is not executed."); // outcome of a relational operator is a boolean value System.out.println("10 > 9 is ” + (10 > 9)); }
}

The output generated by this program is shown here:
b is false
b is true
This is executed. 10 > 9 is true
There are three interesting things to notice about this program. First, as you can see, when a boolean value is output by println( ), “true” or “false” is displayed. Second, the value of a boolean variable is sufficient, by itself, to control the if statement. There is no need to write an if statement like this:
if(b == true) …
Third, the outcome of a relational operator, such as <, is a boolean value. This is why the expression 10 > 9 displays the value “true”. Further, the extra set of parentheses around 10 > 9 is necessary because the + operator has a higher precedence than the >. When one operator has a higher precedence than another, it means that it is evaluated before the other in an expression.
1. What are Java’s integer types?
2. What is Unicode?
3. What values can a boolean variable have?
Java programming 49
progress Check
Try This 2-1 How Far Away Is the Lightning?
Sound.java
In this project you will create a program that computes how far away, in feet, a listener is from a lightning strike. Sound travels approximately 1,100 feet per sec- ond through air. Thus, knowing the interval between the time you see a lightning bolt and the time the sound reaches you enables you to compute the distance to the lightning. For this program, assume that the time interval is 7.2 seconds.
Answers:
1. Java’s integer types are byte, short, int, and long.
2. Unicode is an international, multilingual character set.
3. Variables of type boolean can be either true or false.

50 chapter 2 Introducing Data types and operators
STep-By-STep
1. Create a new file called Sound.java.
2. To compute the distance, you will need to use floating-point values. Why?
Because the time interval, 7.2, has a fractional component. Although it would be permissible to use a value of type float, we will use double in the example.
3. To compute the distance, you will multiply 7.2 by 1,100. You will then assign this value to a variable.
4. Finally, you will display the result.
5. Here is the entire Sound.java program:
/*
Try This 2-1
Compute the distance to a lightning strike whose sound takes 7.2 seconds to reach you.
*/
class Sound {
public static void main(String[] args) { double distance;
distance = 7.2 * 1100;
System.out.println(“The lightning is approximately ” + distance + ” feet away.”);
} }
6. Compile and run the program. The following result is displayed: The lightning is approximately 7920.0 feet away.
7. Extra challenge: You can compute the distance to a large object, such as a rock wall, by timing the echo. For example, if you clap your hands and time how long it takes for you to hear the echo, then you know the total round- trip time. Dividing this value by 2 yields the time it takes the sound to go one way. You can then use this value to compute the distance to the object. Modify the preceding program so that it computes the distance, assuming that the time interval is that of an echo.
LIteraLs
In Java, literals refer to fixed values that are represented in their human-readable form. For example, the number 100 is a literal. Literals are also commonly called constants. For the most part, literals, and their usage, are so intuitive that they have been used in one form or another by all the preceding sample programs. Now the time has come to explain them formally.

Java programming 51
Java literals can be of any of the primitive data types. The way each literal is rep- resented depends on its type. As explained earlier, character constants are enclosed in single quotes. For example, ‘a’ and ‘%’ are both character constants.
Integer literals are specified as numbers without fractional components. For exam- ple, 10 and –100 are integer literals. Floating-point literals require the use of the deci- mal point followed by the number’s fractional component. For example, 11.123 is a floating-point literal. Java also allows you to use scientific notation for floating-point numbers. To do so, specify the mantissa followed by either an e or an e, followed by the exponent (which must be an integer). For example, 1.234E2 represents the value 123.4, and 1.234E-2 represents the value 0.01234.
By default, integer literals are of type int. If you want to specify a long literal, append an l or an L. For example, 12 is an int, but 12L is a long.
By default, floating-point literals are of type double. To specify a float literal, append an F or f to the constant. For example, 10.19F is of type float.
Although integer literals create an int value by default, they can still be assigned to variables of type char, byte, or short as long as the value being assigned can be repre- sented by the target type. An integer literal can always be assigned to a long variable.
Beginning with JDK 7, you can embed one or more underscores into an integer or floating-point literal. Doing so can make it easier to read values consisting of many digits. When the literal is compiled, the underscores are simply discarded. Here is an example:
123_45_1234
This specifies the value 123,451,234. The use of underscores is particularly useful when encoding things such as part numbers, customer IDs, and status codes that are commonly thought of as consisting of subgroups of digits.
hexadecimal, octal, and Binary Literals
In programming it is sometimes easier to use a number system based on 8 or 16 instead of 10. The number system based on 8 is called octal, and it uses the digits 0 through 7. In octal the number 10 is the same as 8 in decimal. The base 16 number system is called hexadecimal and uses the digits 0 through 9 plus the letters A through F (or, a through f ), which stand for 10, 11, 12, 13, 14, and 15. For example, the hexa- decimal number 10 is 16 in decimal. Because of the frequency with which these two number systems are used, Java allows you to specify integer literals in hexadecimal or octal instead of decimal. A hexadecimal literal must begin with 0x or 0X (a zero followed by an x or X). An octal literal begins with a zero. Here are some examples:
hex = 0xFF; // 255 in decimal oct = 011; // 9 in decimal
As a point of interest, Java also allows hexadecimal floating-point literals, but they are seldom used.
Beginning with JDK 7, it is possible to specify an integer literal by use of binary. To do so, precede the binary number with a 0b or 0B. For example, this specifies the value 12 in binary: 0b1100.

52 chapter 2 Introducing Data types and operators
Table 2-2: Character escape Sequences
escape Sequence
\ ‘
\”
\\
\r
\n
\f
\t
\b \ddd \uxxxx
Description
Single quote Double quote Backslash Carriage return Newline
Form feed
Horizontal tab
Backspace
Octal constant (where ddd is an octal constant)
Hexadecimal constant (where xxxx is a hexadecimal constant)
Character escape sequences
Enclosing character constants in single quotes works for most printing characters, but a few characters, such as the carriage return, pose a special problem when a text edi- tor is used. In addition, certain other characters, such as the single and double quotes, have special meaning in Java, so you cannot use them directly. For these reasons, Java provides special escape sequences, sometimes referred to as backslash character constants, shown in Table 2-2. These sequences are used in place of the characters that they represent.
For example, this assigns ch the tab character: ch = ‘\t’;
The next example assigns a single quote to ch: ch = ‘\”;
string Literals
Java supports one other type of literal: the string. A string is a set of characters enclosed by double quotes. For example,
“this is a test”
is a string. You have seen examples of strings in many of the println( ) statements in the preceding sample programs.
In addition to normal characters, a string literal can also contain one or more of the escape sequences just described. For example, consider the following program. It uses the \n and \t escape sequences.
// Demonstrate escape sequences in strings. class StrDemo {
public static void main(String[] args) {

System.out.println(“First line\nSecond line”); System.out.println(“A\tB\tC”); System.out.println(“D\tE\tF”) ;
Java programming 53 Use \n to generate a new line.
} }
First line
Second line ABC DEF
Notice how the \n escape sequence is used to generate a new line. You don’t need to use multiple println( ) statements to get multiline output. Just embed \n within a longer string at the points where you want the new lines to occur.
1. What is the type of the literal 10? What is the type of the literal 10.0? 2. How do you specify a long literal?
3. Is “x” a string or a character literal?
Use tabs to align output. The output is shown here:
progress Check
ask the expert
Q Is a string consisting of a single character the same as a character literal? For example, is “k” the same as ‘k’?
ANo. You must not confuse strings with characters. A character literal repre- sents a single letter of type char. A string containing only one letter is still a string. Although strings consist of characters, they are not the same type.
a CLoser Look at varIaBLes
Variables were introduced in Chapter 1. Here, we will take a closer look at them. As you learned earlier, variables are declared using this form of statement,
type var-name; Answers:
1. The literal 10 is an int, and 10.0 is a double.
2. A long literal is specified by adding the L or l suffix. For example, 100L.
3. The literal “x” is a string.

54 chapter 2 Introducing Data types and operators
where type is the data type of the variable and var-name is its name. You can declare a variable of any valid type, including the simple types just described. When you declare a variable, you are creating an instance of its type. Thus, the capabilities of a variable are determined by its type. For example, a variable of type boolean can be used to store true/ false values, but not floating-point values. Furthermore, the type of a variable cannot change during its lifetime. An int variable cannot turn into a char variable, for example.
All variables in Java must be declared prior to their use. This is necessary because the compiler must know what type of data a variable contains before it can properly compile any statement that uses the variable. It also enables Java to perform strict type checking.
Initializing a variable
In general, you must give a variable a value prior to using it. One way to give a vari- able a value is through an assignment statement, as you have already seen. Another way is by giving it an initial value when it is declared. To do this, follow the variable’s name with an equal sign and the value being assigned. The general form of initializa- tion is shown here:
type var = value;
Here, value is the value that is given to var when var is created. The value must be
compatible with the specified type. Here are some examples:
int count = 10; // give count an initial value of 10 char ch = ‘X’; // initialize ch with the letter X float f = 1.2F; // f is initialized with 1.2
When declaring two or more variables of the same type using a comma-separated list, you can give one or more of those variables an initial value. For example:
int a, b = 8, c = 19, d; // b and c have initializations
In this case, only b and c are initialized. Dynamic Initialization
Although the preceding examples have used only constants as initializers, Java allows variables to be initialized dynamically, using any expression valid at the time the vari- able is declared. For example, here is a short program that computes the volume of a cylinder given the radius of its base and its height:
// Demonstrate dynamic initialization.
class DynInit {
public static void main(String[] args) {
double radius = 4, height = 5;
volume is dynamically initialized at run time. double volume = 3.1416 * radius * radius * height;
System.out.println(“Volume is ” + volume);
}
// dynamically initialize volume
}

Java programming 55
Here, three local variables—radius, height, and volume—are declared. The first two, radius and height, are initialized by constants. However, volume is initialized dynamically to the volume of the cylinder. The key point here is that the initialization expression can use any element valid at the time of the initialization, including calls to methods, other variables, or literals.
the sCope anD LIFetIme oF varIaBLes
So far, all of the variables that we have been using were declared at the start of the main( ) method. However, Java allows variables to be declared within any block. As explained in Chapter 1, a block is begun with an opening brace and ended by a closing brace. A block defines a scope. Thus, each time you start a new block, you are creat- ing a new scope. A scope determines what objects are visible to other parts of your program. It also determines the lifetime of those objects.
Many other computer languages define two general categories of scopes: global and local. Although supported by Java, these are not the best ways to categorize Java’s scopes. The most important scopes in Java are those defined by a class and those defined by a method. A discussion of class scope (and variables declared within it) is deferred until later in this book, when classes are described. For now, we will examine only the scopes defined by or within a method.
The scope defined by a method begins with its opening brace. However, if that method has parameters, they too are included within the method’s scope.
As a general rule, variables declared inside a scope are not visible (that is, acces- sible) to code that is defined outside that scope. Thus, when you declare a variable within a scope, you are localizing that variable and protecting it from unauthor- ized access and/or modification. Indeed, the scope rules provide the foundation for encapsulation.
Scopes can be nested. For example, each time you create a block of code, you are creating a new, nested scope. When this occurs, the outer scope encloses the inner scope. This means that objects declared in the outer scope will be visible to code within the inner scope. However, the reverse is not true. Objects declared within the inner scope will not be visible outside it.
To understand the effect of nested scopes, consider the following program:
// Demonstrate block scope. class ScopeDemo {
public static void main(String[] args) { int x; // known to all code within main
x = 10;
if(x == 10) { // start new scope
int y = 20; // known only to this block
// x and y both known here. System.out.println(“x and y: ” + x + ” ” + y);

56 chapter 2 Introducing Data types and operators x = y * 2;
}
// y = 100; // Error! y not known here
// x is still known here.
System.out.println(“x is ” + x); }
}
Here, y is outside of its scope.
As the comments indicate, the variable x is declared at the start of main( )’s scope and is accessible to all subsequent code within main( ). Within the if block, y is declared. Since a block defines a scope, y is visible only to other code within its block. This is why outside of its block, the line y = 100; is commented out. If you remove the lead- ing comment symbol, a compile-time error will occur because y is not visible outside of its block. Within the if block, x can be used because code within a block (that is, a nested scope) has access to variables declared by an enclosing scope.
Within a block, variables can be declared at any point, but are valid only after they are declared. Thus, if you define a variable at the start of a method, it is available to all of the code within that method. Conversely, if you declare a variable at the end of a block, it is effectively useless because no code will have access to it.
Here is another important point to remember: variables are created when their scope is entered, and they are destroyed when their scope is left. This means that a variable will not hold its value once it has gone out of scope. Therefore, variables declared within a method will not hold their values between calls to that method. Also, a variable declared within a block will lose its value when the block is left. Thus, the lifetime of a variable is confined to its scope.
If a variable declaration includes an initializer, that variable will be reinitialized each time the block in which it is declared is entered. For example, consider this program:
// Demonstrate lifetime of a variable. class VarInitDemo {
public static void main(String[] args) { int x;
for(x = 0; x < 3; x++) { int y = -1; // y is initialized each time block is entered System.out.println("y is: " + y); // this always prints -1 y = 100; System.out.println("y is now: " + y); } } } The output generated by this program is shown here: y is: -1 y is now: 100 y is: -1 y is now: 100 y is: -1 y is now: 100 Java programming 57 As you can see, y is always reinitialized to –1 each time the for loop is entered. Even though it is subsequently assigned the value 100, this value is lost. There is one quirk to Java’s scope rules that may surprise you: although blocks can be nested, within a method no variable declared within an inner scope can have the same name as a variable declared by an enclosing scope. For example, the fol- lowing program, which tries to declare two separate variables with the same name, will not compile. /* This program attempts to declare a variable in an inner scope with the same name as one defined in an outer scope. *** This program will not compile. *** */ class NestVar { public static void main(String[] args) { int count; for(count = 0; count < 10; count = count+1) { System.out.println("This is count: " + count); int count; // illegal!!! Can’t declare count again because it’s already declared. for(count = 0; count < 2; count++) System.out.println("This program is in error!"); } } } As a point of interest, in some other languages (most notably, C/C++) there is no restriction on the names that you give variables declared in an inner scope. Thus, in C/C++ the declaration of count within the block of the outer for loop is completely valid, and such a declaration hides the outer variable. The designers of Java felt that this name hiding could easily lead to programming errors and disallowed it. 1. What is a scope? How can one be created? 2. Where in a block can variables be declared? 3. In a block, when is a variable created? When is it destroyed? Answers: 1. A scope defines the visibility and lifetime of an object. A block defines a scope. 2. A variable can be declared at any point within a block. 3. Inside a block, a variable is created when its declaration is encountered. It is progress Check destroyed when the block exits. 58 chapter 2 Introducing Data types and operators operators Java provides a rich operator environment. An operator is a symbol that tells the compiler to perform a specific mathematical, logical, or other manipulation. Java has four general classes of operators: arithmetic, bitwise, relational, and logical. Java also defines some additional operators that handle certain special situations. This chapter will examine the arithmetic, relational, and logical operators. We will also examine the assignment operator. The bitwise and other special operators are examined later. arIthmetIC operators A basic set of arithmetic operators were introduced in Chapter 1. Here is the complete set: Operator Meaning + Addition (also unary plus) – Subtraction (also unary minus) * Multiplication / Division % Modulus ++ Increment –– Decrement The operators +, –, *, and / all work the same way in Java as they do in any other computer language (or algebra, for that matter). These can be applied to any built-in numeric data type. They can also be used on objects of type char. Although the actions of arithmetic operators are well known to all readers, a few special situations warrant some explanation. First, remember that when / is applied to an integer, any remainder will be truncated; for example, 10/3 will equal 3 in integer division. You can obtain the remainder of this division by using the modulus operator %. It yields the remainder of an integer division. For example, 10 % 3 is 1. In Java, the % can be applied to both integer and floating-point types. Thus, 10.0 % 3.0 is also 1.The following program demonstrates the modulus operator. // Demonstrate the % operator. class ModDemo { public static void main(String[] args) { int iresult, irem; double dresult, drem; iresult = 10 / 3; irem = 10 % 3; dresult = 10.0 / 3.0; drem = 10.0 % 3.0; System.out.println("Result and remainder of 10 / 3: " + iresult + " " + irem); System.out.println("Result and remainder of 10.0 / 3.0: " + dresult + " " + drem); } } The output from the program is shown here: Result and remainder of 10 / 3: 3 1 Result and remainder of 10.0 / 3.0: 3.3333333333333335 1.0 As you can see, the % yields a remainder of 1 for both integer and floating-point operations. Increment and Decrement Introduced in Chapter 1, the ++ and the –– are Java’s increment and decrement operators. As you will see, they have some special properties that make them quite interesting. Let’s begin by reviewing precisely what the increment and decrement operators do. The increment operator adds 1 to its operand, and the decrement operator subtracts 1. Therefore, x = x + 1; is the same as x++; and x = x - 1; is the same as x--; Both the increment and decrement operators can either precede (prefix) or follow (postfix) the operand. For example, x = x + 1; can be written as ++x; // prefix form or as x++; // postfix form In the foregoing example, there is no difference whether the increment is applied as a prefix or a postfix. However, when an increment or decrement is used as part of a larger expression, there is an important difference. When an increment or decrement operator precedes its operand, Java will perform the corresponding operation prior to obtaining the operand’s value for use by the rest of the expression. If the operator Java programming 59 60 chapter 2 Introducing Data types and operators follows its operand, Java will obtain the operand’s value before incrementing or dec- rementing it. Consider the following: x = 10; y = ++x; In this case, y will be set to 11. However, if the code is written as x = 10; y = x++; then y will be set to 10. In both cases, x is still set to 11; the difference is when it happens. In complicated arithmetic expressions, there can be significant advantages in being able to control when the increment or decrement operation takes place. reLatIonaL anD LogICaL operators In the terms relational operator and logical operator, relational refers to the relation- ships that values can have with one another, and logical refers to the ways in which true and false values can be connected together. Since the relational operators produce true or false results, they often work with the logical operators. For this reason they will be discussed together here. The relational operators were introduced in Chapter 1. They are shown again here for convenience: Operator Meaning == Equal to != Not equal to >
Greater than
< Less than >=
Greater than or equal to
<= Less than or equal to The logical operators are shown next: Operator Meaning & AND | OR ^ XOR (exclusive OR) || Short-circuit OR && Short-circuit AND ! NOT The outcome of the relational and logical operators is a boolean value. Java programming 61 In Java, all objects can be compared for equality or inequality using = = and !=. However, the comparison operators, <, >, <=, or >=, can be applied only to those types that support an ordering relationship. Therefore, all of the relational operators can be applied to all numeric types and to type char. However, values of type boolean can only be compared for equality or inequality, since the true and false values are not ordered. For example, true > false has no meaning in Java.
For the logical operators, the operands must be of type boolean, and the result of a logical operation is of type boolean. The logical operators, &, |, ^, and !, support the basic logical operations AND, OR, XOR, and NOT, according to the following truth table.
As the table shows, the outcome of an exclusive OR operation is true when exactly one and only one operand is true.
Here is a program that demonstrates several of the relational and logical operators:
// Demonstrate the relational and logical operators. class RelLogOps {
public static void main(String[] args) { int i, j;
boolean b1, b2;
i = 10;
j = 11;
if(i < j) System.out.println("i < j"); if(i <= j) System.out.println("i <= j"); if(i != j) System.out.println("i != j"); if(i == j) System.out.println("this won't execute"); if(i >= j) System.out.println(“this won’t execute”); if(i > j) System.out.println(“this won’t execute”);
b1 = true;
b2 = false;
if(b1 & b2) System.out.println(“this won’t execute”); if(!(b1 & b2)) System.out.println(“!(b1 & b2) is true”); if(b1 | b2) System.out.println(“b1 | b2 is true”);
if(b1 ^ b2) System.out.println(“b1 ^ b2 is true”);
} }
The output from the program is shown here:
i>
>>>
<< >
>=
< <= instanceof == != & ^ | && || ?: = op= Lowest In the program, the cast of (x / y) to int results in the truncation of the fractional com- ponent, and information is lost. Next, no loss of information occurs when b is assigned the value 100 because a byte can hold the value 100. However, when the attempt is made to assign b the value 257, information loss occurs because 257 exceeds a byte’s maximum value. Finally, no information is lost, but a cast is needed when assigning a byte value to a char. 1. What is a cast? 2. Can a short be assigned to an int without a cast? Can a byte be assigned to a char without a cast? 3. How can the following statement be rewritten? x = x + 23; operator preCeDenCe Table 2-3 shows the order of precedence for all Java operators, from highest to lowest. Operators on the same line have the same precedence. This table includes several Answers: 1. A cast is an explicit conversion. 2. Yes. No. 3. x += 23; progress Check Java programming 69 operators that will be discussed later in this book. An operator’s precedence determines at what point it is evaluated in an expression. An operator with a higher precedence will be evaluated before an operator with a lower precedence. For example, given the expression 10 − 4 * 2 The result is 2, not 12, because multiplication has a higher precedence than does sub- traction. Except for assignment, operators with equal precedence are evaluated left to right. A chain of assignments is evaluated right to left. Although they are technically called separators, if you consider the [ ], ( ), and . to be operators, then they would have the highest precedence. Try This 2-2 Display a Truth Table for the Logical Operators LogicalOpTable.java In this project, you will create a program that displays the truth table for Java’s logical operators. You must make the columns in the table line up. This project makes use of several features covered in this chapter, including one of Java’s escape sequences and the logical operators. It also illustrates the differences in the precedence between the arithmetic + operator and the logical operators. STep-By-STep 1. Create a new file called LogicalOpTable.java. 2. To ensure that the columns line up, you will use the \t escape sequence to embed tabs into each output string. For example, this println( ) statement displays the header for the table: System.out.println("P\tQ\tAND\tOR\tXOR\tNOT"); 3. Each subsequent line in the table will use tabs to position the outcome of each operation under its proper heading. 4. Here is the entire LogicalOpTable.java program. Enter it at this time. // Try This 2-2: A truth table for the logical operators. class LogicalOpTable { public static void main(String[] args) { boolean p, q; System.out.println("P\tQ\tAND\tOR\tXOR\tNOT"); p = true; q = true; System.out.print(p + "\t" + q +"\t"); System.out.print((p&q) + "\t" + (p|q) + "\t"); System.out.println((p^q) + "\t" + (!p)); p = true; q = false; System.out.print(p + "\t" + q +"\t"); 70 chapter 2 Introducing Data types and operators System.out.print((p&q) + "\t" + (p|q) + "\t"); System.out.println((p^q) + "\t" + (!p)); p = false; q = true; System.out.print(p + "\t" + q +"\t"); System.out.print((p&q) + "\t" + (p|q) + "\t"); System.out.println((p^q) + "\t" + (!p)); p = false; q = false; System.out.print(p + "\t" + q +"\t"); System.out.print((p&q) + "\t" + (p|q) + "\t"); System.out.println((p^q) + "\t" + (!p)); } } Notice the parentheses surrounding the logical operations inside the print statements. They are necessary because of the precedence of Java’s operators. The + operator is higher than the logical operators. 5. Compile and run the program. The following table is displayed. P Q true true true false false true false false AND true false false false OR XOR NOT true false false true true false true true true false false true 6. On your own, try modifying the program so that it uses and displays 1’s and 0’s, rather than true and false. This may involve a bit more effort than you might at first think! expressIons Operators, variables, and literals are constituents of expressions. When an expression is encountered in a program, it is evaluated. You probably already have a fairly good, intuitive understanding of expressions because they have been used in the preced- ing programs. Furthermore, Java expressions are similar to those found in algebra. However, a few aspects of expressions will be discussed now. type Conversion in expressions Within an expression, it is possible to mix two or more different types of data as long as they are compatible with each other. For example, you can mix short and long within an expression because they are both numeric types. When different types of data are mixed within an expression, they are all converted to the same type. This is accomplished through the use of Java’s type promotion rules. First, all char, byte, and short values are promoted to int. Then, if one operand is a long, the whole expression is promoted to long. If one operand is a float operand, the entire expression is promoted to float. If any of the operands is double, the result is double. Java programming 71 It is important to understand that type promotions apply only to the values oper- ated upon when an expression is evaluated. For example, if the value of a byte vari- able is promoted to int inside an expression, outside the expression, the variable is still a byte. Type promotion only affects the evaluation of an expression. Type promotion can, however, lead to somewhat unexpected results. For example, when an arithmetic operation involves two byte values, the following sequence occurs: First, the byte operands are promoted to int. Then the operation takes place, yielding an int result. Thus, the outcome of an operation involving two byte values will be an int. This is not what you might intuitively expect. Consider the following program: // A promotion surprise! class PromDemo { public static void main(String[] args) { byte b; int i; No cast needed because result is already elevated to int. i = b * b; // OK, no cast needed b = 10; Cast is needed here to assign an int to a byte! b = (byte) (b * b); // cast needed!! System.out.println("i and b: " + i + " " + b); } } Somewhat counterintuitively, no cast is needed when assigning b*b to i, because b is promoted to int when the expression is evaluated. However, when you try to assign b * b to b, you do need a cast—back to byte! Keep this in mind if you get unexpected type-incompatibility error messages on expressions that would otherwise seem per- fectly fine. This same sort of situation also occurs when performing operations on chars. For example, in the following fragment, the cast back to char is needed because of the promotion of ch1 and ch2 to int within the expression. char ch1 = 'a', ch2 = 'b'; ch1 = (char) (ch1 + ch2); Without the cast, the result of adding ch1 to ch2 would be int, which can’t be assigned to a char. Casts are not only useful when converting between types in an assignment. For example, consider the following program. It uses a cast to double to obtain a frac- tional component from an otherwise integer division. // Using a cast. class UseCast { public static void main(String[] args) { int i; b = 10; 72 chapter 2 Introducing Data types and operators for(i = 0; i < 5; i++) { System.out.println(i + " / 3: " + i / 3); System.out.println(i + " / 3 with fractions: " + (double) i / 3); System.out.println(); } } } The output from the program is shown here: 0 / 3: 0 0 / 3 with fractions: 0.0 1 / 3: 0 1 / 3 with fractions: 0.3333333333333333 2 / 3: 0 2 / 3 with fractions: 0.6666666666666666 3 / 3: 1 3 / 3 with fractions: 1.0 4 / 3: 1 4 / 3 with fractions: 1.3333333333333333 spacing and parentheses An expression in Java may have tabs and spaces in it to make it more readable. For example, the following two expressions are the same, but the second is easier to read: x=10/y*(127/x); x = 10 / y * (127/x); Parentheses increase the precedence of the operations contained within them, just as in algebra. Use of redundant or additional parentheses will not cause errors or slow down the execution of the expression. You are encouraged to use parentheses to make clear the exact order of evaluation, both for yourself and for others who may have to figure out your program later. For example, which of the following two expressions is easier to read? x = y/3-34*temp+127; x = (y/3) - (34*temp) + 127; exerCIses 1. Why does Java strictly specify the range and behavior of its primitive types? 2. What is Java’s character type, and how does it differ from the character type used by some other programming languages? 3. A boolean value can have any value you like because any non-zero value is true. True or False? 4. Given this output, One Two Three using a single string, show the println( ) statement that produced it. 5. What is wrong with this fragment? for(i = 0; i < 10; i++) { int sum; sum = sum + i; } System.out.println("Sum is: " + sum); 6. Explain the difference between the prefix and postfix forms of the increment operator. 7. Show how a short-circuit AND can be used to prevent a divide-by-zero error. 8. In an expression, what type are byte and short promoted to? 9. In general, when is a cast needed? 10. Write a program that finds all of the prime numbers between 2 and 100. 11. Does the use of redundant parentheses affect program performance? 12. Does a block define a scope? 13. In some languages, variables can hold values of any type. Why doesn’t Java allow this behavior? That is, why does Java restrict variables to hold values of only one type, namely, the declared type of the variable? 14. Write a program that assigns the value 50000 to an integer variable x, assigns the value of x*x to an integer variable y, and then prints out the value of y. Did you get a strange answer? If so, explain why. 15. In the BoolDemo example, the following line of code appears: System.out.println("10 > 9 is ” + (10 > 9));
What would be printed (if anything) if the parentheses were removed and it just read:
Java programming 73
System.out.println(“10 > 9 is ” + 10 > 9);

74 chapter 2 Introducing Data types and operators
Explain your answer.
16. Which of the following assignment statements are legal in Java? For each
one that is not legal, explain why.
A. int x = false;
B. int x = 3 > 4;
C. int x = (3 > 4);
D. int x = int y = 3;
e. int x = 3.14;
F. int x = 3.14L;
G. int x = 5,000,000;
H. int x = 5_000_000;
I. int x = ‘350’;
J. int x = “350”;
K. int x = ‘3’;
L. boolean b = (boolean) 5;
M. byte b = (byte) 5;
N. double d = 1E3.5;
O. char c = ‘\/’;
p. char c = ‘\\’;
Q. char c = 3;
R. char c = “3”;
17. Which of the following expressions are legal in Java? If an expression is not legal, explain why. If it is legal, give its value. Assume x is an int variable with the value 5, y is a double variable with value 3.5, and b is a boolean variable with value false.
A. (3+4/5)/3
B. 3*
C. 3+
D. 3+
e. 0/0
F. y/x
G. ‘a’
H. ‘a’
I. “3”
J. “3”
K. false < true L. false == true M. 'c' == 99 N. (3+4 > 5) & (4=6) | b
O. !((3>4)|(5!=5))&(3<(4*0)) p. !(3>4|5!=5&3<4*0) 4% 5 x++ ++x / 2* 6 + 'b' + 'b' +2 + 1 + (2 + 1) + "c" Java programming 75 18. Suppose a, b, and c are boolean variables. Find one set of values for a, b, andcsothatbothexpressions(a & b | c) and(!a | !b & c) aretrue. 19. If x is a variable of type int and its value is 5, then what is its value after the following sequence of statements has been executed? x += 4; x *= 2; x /= 3; x %= 4; 20. If x is a variable of type boolean and its value is true, then what is its value after the following sequence of statements has been executed? x |= false; x &= true; x ^= true; 21. Math.random( ) is a method in the Java library that computes a random double value between 0 and 1. For example, the statement double x = Math.random(); assigns to the variable x a random double between 0 and 1. Write a program that tests how well Math.random( ) works. More precisely, write a program that calls Math.random( ) 1,000 times to create 1,000 values, keeping track of how many of them are greater than 0.5, and then prints out the result. Your program should theoretically print out a number very close to 500. 22. Write a program that creates three random double variables a, b, and c and assigns them values between 0 and 1 using the Math.random( ) method mentioned in the preceding exercise. It then does all of the following: A. It prints out the three values. B. It prints "All are tiny" if all three values are less than 0.2. C. It prints out "One is tiny" if exactly one of the three values is less than 0.2. ChaPter Program Control Statements key skills & concepts j Input characters from the keyboard j Know the complete form of the if statement j Use the switch statement j Know the complete form of the for loop j Use the while loop j Use the do-while loop j Use break to exit a loop j Use break as a form of goto j Apply continue j Nest loops In this chapter you will learn about the statements that control a program’s flow of execution. Java’s program control statements can be organized into the following categories: j Selection statements j Iteration statements j Jump statements Selection statements allow your program to choose between different paths of execution. Iteration statements enable a section of code to be repeated. Jump state- ments directly transfer program control from one location to another. Java’s selec- tion statements include if and switch; iteration statements include for, while, and do-while; and jump statements include break, continue, and return. Except for return, which is discussed in Chapter 4, the remaining control statements, includ- ing the if and for statements to which you have already had a brief introduction, are examined in detail here. 77 3 78 chapter 3 Program Control Statements The chapter begins not by presenting the control statements, however, but by explaining how to perform some simple keyboard input. This short digression will allow you to begin writing interactive programs. Note: Java’s exception handling mechanism can also affect the flow of program execution. It is discussed in Chapter 10. InPut CharaCterS from the Keyboard Up to this point, the sample programs in this book have displayed information to the user, but they have not received information from the user. Thus, you have been using console output but not console (keyboard) input. The main reason for this is that many of Java’s input capabilities rely on or make use of features that are not dis- cussed until later in this book. Also, many real-world Java programs and applets will be graphical and window based, not console based. For these reasons, not much use of console input is found in this book. However, there is one type of console input that is relatively easy to use: reading a character from the keyboard. Since several of the examples in this chapter will make use of this feature, it is discussed here. To read a character from the keyboard we will use System.in.read( ). System.in is the complement to System.out. It is the input object attached to the keyboard. The read( ) method waits until the user presses a key and then returns the result. The character is returned as an integer, so it must be cast into a char to assign it to a char variable. By default, console input is line buffered. Here, the term buffer refers to a small portion of memory that is used to hold the characters before they are read by your program. In this case, the buffer holds a complete line of text. Because the entire line is buffered, you must press ENTER before any character that you type will be sent to your program. Here is a program that shows how to read a character from the keyboard: // Read a character from the keyboard. class KbIn { public static void main(String[] args) throws java.io.IOException { char ch; System.out.print("Press a key followed by ENTER: "); ch = (char) System.in.read(); // get a char System.out.println("Your key is: " + ch); } } Here is a sample run: Press a key followed by ENTER: t Your key is: t Read a character from the keyboard. In the program, notice that main( ) begins like this: public static void main(String[] args) throws java.io.IOException { Because System.in.read( ) is being used, the program must specify the throws java. io.IOException clause. This line is necessary to handle input errors. It is part of Java’s exception handling mechanism, which is discussed in Chapter 10. For now, don’t worry about its precise meaning. The fact that System.in is line buffered is a source of annoyance at times. When you press ENTER, a carriage return, line feed sequence is entered into the input stream. (In some environments, only a line feed is entered into the input stream.) Furthermore, these characters are left pending in the input buffer until you read them. Thus, for some applications, you may need to remove them (by reading them) before the next input operation. You will see an example of this later in this chapter. 1. What is System.in? 2. How can you read a character typed at the keyboard? the if Statement Chapter 1 introduced the if statement. It is examined in detail here. The complete form of the if statement is if(condition) statement; else statement; where the targets of the if and else are single statements. The else clause is optional. The targets of both the if and else can be blocks of statements. The general form of the if, using blocks of statements, is if(condition) { statement sequence } else { } Answers: 1. System.in is the input object linked to standard input, which is usually the keyboard. 2. To read a character, call System.in.read( ). Java Programming 79 Progress Check statement sequence 80 chapter 3 Program Control Statements If the conditional expression is true, the target of the if will be executed; otherwise, if it exists, the target of the else will be executed. At no time will both of them be executed. The conditional expression controlling the if must produce a boolean result. To demonstrate the if (and several other control statements), we will create and develop a simple computerized guessing game that would be suitable for young children. In the first version of the game, the program asks the player for a letter between A and Z. If the player presses the correct letter on the keyboard, the program responds by printing the message ** Right **. The program is shown here: // Guess the letter game. class Guess { public static void main(String[] args) throws java.io.IOException { char ch, answer = 'K'; System.out.println("I'm thinking of a letter between A and Z."); System.out.print("Can you guess it: "); ch = (char) System.in.read(); // read a char from the keyboard if(ch == answer) System.out.println("** Right **"); } } This program prompts the player and then reads a character from the keyboard. Using an if statement, it then checks that character against the answer, which is K in this case. If K was entered, the message is displayed. When you try this program, remem- ber that the K must be entered in uppercase. Taking the guessing game further, the next version uses the else to print a message when the wrong letter is picked. // Guess the letter game, 2nd version. class Guess2 { public static void main(String[] args) throws java.io.IOException { char ch, answer = 'K'; System.out.println("I'm thinking of a letter between A and Z."); System.out.print("Can you guess it: "); ch = (char) System.in.read(); // get a char if(ch == answer) System.out.println("** Right **"); else System.out.println("...Sorry, you’re wrong."); } } neSted ifs A nested if is an if statement that is the target of another if or else. Nested ifs are very common in programming because they give you a way to make a follow-up selection based on the outcome of the previous selection. The main thing to remember about nested ifs in Java is that an else statement always refers to the nearest if statement that is within the same block as the else and not already associated with an else. Here is an example: if(i == 10) { if(j < 20) a = b; if(k > 100) c = d;
else a = c; // this else refers to if(k > 100)
}
else a = d; // this else refers to if(i == 10)
As the comments indicate, the final else is not associated with if(j < 20) because it is not in the same block (even though it is the nearest if without an else). Rather, the final else is associated with if(i = = 10). The inner else refers to if(k > 100), because it is the closest if within the same block.
You can use a nested if to add a further improvement to the guessing game. This addition provides the player with feedback about a wrong guess.
// Guess the letter game, 3rd version. class Guess3 {
public static void main(String[] args) throws java.io.IOException {
char ch, answer = ‘K’;
System.out.println(“I’m thinking of a letter between A and Z.”); System.out.print(“Can you guess it: “);
ch = (char) System.in.read(); // get a char
if(ch == answer) System.out.println(“** Right **”); else {
System.out.print(“…Sorry, you’re “);
// a nested if
if(ch < answer) System.out.println("too low"); else System.out.println("too high"); } } } A sample run is shown here: I'm thinking of a letter between A and Z. Can you guess it: Z ...Sorry, you're too high Java Programming 81 82 chapter 3 Program Control Statements the if-else-if Ladder A common programming construct that is based on the nested if is sometimes referred to as the if-else-if ladder. It looks like this: if(condition) statement; else if(condition) statement; else if(condition) statement; . . . else statement; The conditional expressions are evaluated from the top downward. As soon as a true condition is found, the statement associated with it is executed, and the rest of the ladder is bypassed. If none of the conditions is true, the final else statement will be executed. The final else often acts as a default condition; that is, if all other conditional tests fail, the last else statement is performed. If there is no final else and all other conditions are false, no action will take place. The following program demonstrates the if-else-if ladder: // Demonstrate an if-else-if ladder. class Ladder { public static void main(String[] args) { int x; for(x=0; x<6; x++) { if(x= =1) System.out.println("x is one"); else if(x==2) System.out.println("x is two"); else if(x==3) System.out.println("x is three"); else if(x==4) System.out.println("x is four"); else } } } System.out.println("x is not between 1 and 4"); This is the default statement. The program produces the following output: x is not between 1 and 4 x is one x is two x is three x is four x is not between 1 and 4 As you can see, the default else is executed only if none of the preceding if statements succeeds. 1. The condition controlling the if must be of what type? 2. To what if does an else always associate? 3. What is an if-else-if ladder? the switch Statement The second Java selection statement is the switch. The switch provides for a multiway branch. Thus, it enables a program to select among several alternatives. Although a series of nested if statements can perform multiway tests, for many situations the switch is a more efficient approach. It works like this: the value of an expression is successively tested against a list of constants. When a match is found, the statement sequence associated with that match is executed. The general form of the switch state- ment is switch(expression) { case constant1: statement sequence break; case constant2: statement sequence break; case constant3: statement sequence break; Answers: 1. The condition controlling an if must be of type boolean. 2. An else always associates with the nearest if in the same block that is not already associated with an else. 3. An if-else-if ladder is a sequence of nested if-else statements. Java Programming 83 Progress Check 84 chapter 3 . . . default: statement sequence } For versions of Java prior to JDK 7, the expression controlling the switch must be of type byte, short, int, char, or an enumeration. (Enumerations are described in Chapter 13.) Beginning with JDK 7, expression can also be of type String. This means that modern versions of Java can use a string to control a switch. (This technique is demonstrated in Chapter 5, when String is described.) Frequently, the expression controlling a switch is simply a variable rather than a larger expression. Each value specified in the case statements must be a unique constant expression (such as a literal value). Duplicate case values are not allowed. The type of each value must be compatible with the type of the controlling expression. The default statement sequence is executed if no case constant matches the expression. The default is optional; if it is not present, no action takes place if all matches fail. When a match is found, the statements associated with that case are executed until the break is encountered or, in the case of default or the last case, until the end of the switch is reached. The following program demonstrates the switch. // Demonstrate the switch. class SwitchDemo { public static void main(String[] args) { int i; for(i=0; i<10; i++) switch(i) { case 0: System.out.println("i is zero"); break; case 1: System.out.println("i is one"); break; case 2: System.out.println("i is two"); break; case 3: System.out.println("i is three"); break; case 4: System.out.println("i is four"); break; default: System.out.println("i is five or more"); } } Program Control Statements } The output produced by this program is shown here: i is zero i is one i is two i is three i is four i is five i is five i is five i is five i is five or more or more or more or more or more As you can see, each time through the loop, the statements associated with the case constant that matches i are executed. All others are bypassed. When i is five or greater, no case statements match, so the default statement is executed. Technically, the break statement is optional, although most applications of the switch will use it. When encountered within the statement sequence of a case, the break statement causes program flow to exit from the entire switch statement and resume at the next statement outside the switch. However, if a break statement does not end the statement sequence associated with a case, then all the statements at and following the matching case will be executed until a break (or the end of the switch) is encountered. For example, study the following program carefully. Before looking at the output, can you figure out what it will display on the screen? Java Programming 85 // Demonstrate the switch without break statements. class NoBreak { public static void main(String[] args) { int i; for(i=0; i<=5; i++) { switch(i) { case 0: System.out.println("i is less than one"); case 1: System.out.println("i is less than two"); case 2: System.out.println("i is less than three"); case 3: System.out.println("i is less than four"); case 4: System.out.println("i is less than five"); } System.out.println(); } } } The case statements fall through here. 86 chapter 3 Program Control Statements This program displays the following output: i is less than one i is less than two i is less than three i is less than four i is less than five i is less than two i is less than three i is less than four i is less than five i is less than three i is less than four i is less than five i is less than four i is less than five i is less than five As this program illustrates, execution will continue into the next case if no break statement is present. You can also have empty cases, as shown in this example: switch(i) { case 1: case 2: case 3: System.out.println("i is 1, 2 or 3"); break; case 4: System.out.println("i is 4"); break; } In this fragment, if i has the value 1, 2, or 3, the first println( ) statement executes. If it is 4, the second println( ) statement executes. The “stacking” of cases, as shown in this example, is common when several cases share common code. neSted switch StatementS It is possible to have a switch as part of the statement sequence of an outer switch. This is called a nested switch. Even if the case constants of the inner and outer switch contain common values, no conflicts will arise. For example, the following code frag- ment is perfectly acceptable. switch(ch1) { case 'A': System.out.println("This A is part of outer switch."); switch(ch2) { case 'A': System.out.println("This A is part of inner switch"); break; case 'B': // ... } // end of inner switch break; case 'B': // ... 1. The expression controlling the switch can be of what type? 2. When the switch expression matches a case constant, what happens? 3. If a case sequence does not end in break, what happens? Java Programming 87 Progress Check Try This 3-1 Start Building a Java Help System Help.java This project builds a simple help system that displays the syntax for the Java control statements. In the process, it shows the switch statement in action. The program displays a menu containing the control statements and then waits for you to choose one. After one is chosen, the syntax of the statement is displayed. In this first version of the program, help is available for only the if and switch statements. The other control statements are added in subsequent examples. StEp-by-StEp 1. Create a file called Help.java. 2. The program begins by displaying the following menu: Help on: 1. if 2. switch Choose one: To accomplish this, you will use the statement sequence shown here: System.out.println("Help on:"); System.out.println(" 1. if"); Answers: 1. The switch expression can be of type char, short, int, byte, or an enumera- tion. Beginning with JDK 7, a String can also be used. 2. When a matching case constant is found, the statement sequence associated with that case is executed. 3. If a case sequence does not end with break, execution continues into the next case sequence, if one exists. 88 chapter 3 Program Control Statements System.out.println(" 2. switch"); System.out.print("Choose one: "); 3. Next, the program obtains the user’s selection by calling System.in.read( ), as shown here: choice = (char) System.in.read(); 4. Once the selection has been obtained, the program uses the switch statement shown here to display the syntax for the selected statement. switch(choice) { case '1': System.out.println("The if:\n"); System.out.println("if(condition) statement;"); System.out.println("else statement;"); break; case '2': System.out.println("The switch:\n"); System.out.println("switch(expression) {"); System.out.println(" case constant:"); System.out.println(" statement sequence"); System.out.println(" break;"); System.out.println(" // ..."); System.out.println("}"); break; default: System.out.print("Selection not found."); } Notice how the default clause catches invalid choices. For example, if the user enters 3, no case constants will match, causing the default sequence to execute. 5. Here is the entire Help.java program: /* Try This 3-1 A simple help system. */ class Help { public static void main(String[] args) throws java.io.IOException { char choice; System.out.println("Help on:"); System.out.println(" 1. if"); System.out.println(" 2. switch"); System.out.print("Choose one: "); choice = (char) System.in.read(); Java Programming 89 System.out.println("\n"); switch(choice) { case '1': System.out.println("The if:\n"); System.out.println("if(condition) statement;"); System.out.println("else statement;"); break; case '2': System.out.println("The switch:\n"); System.out.println("switch(expression) {"); System.out.println(" case constant:"); System.out.println(" statement sequence"); System.out.println(" break;"); System.out.println(" // ..."); System.out.println("}"); break; default: System.out.print("Selection not found."); } } } 6. Here is a sample run. Help on: 1. if 2. switch Choose one: 1 The if: if(condition) statement; else statement; ask the expert Q Under what conditions should I use an if-else-if ladder rather than a switch when coding a multiway branch? AIn general, use an if-else-if ladder when the conditions controlling the selec- tion process do not rely on a single value. For example, consider the following if-else-if sequence: if(x < 10) // ... else if(y != 0) // ... else if(!done) // ... 90 chapter 3 Program Control Statements ask the expert (Continued) This sequence cannot be recoded into a switch because all three conditions involve different variables—and differing types. What variable would control the switch? Also, you will need to use an if-else-if ladder when testing floating-point values or other objects that are not of types valid for use in a switch expression. the for LooP You have been using a simple form of the for loop since Chapter 1. You might be surprised at just how powerful and flexible the for loop is. Let’s begin by reviewing the basics, starting with the most traditional forms of the for. The general form of the for loop for repeating a single statement is for(initialization; condition; iteration) statement; For repeating a block, the general form is for(initialization; condition; iteration) { } The initialization is usually an assignment statement that sets the initial value of the loop control variable, which acts as the counter that controls the loop. The condition is a Boolean expression that determines whether or not the loop will repeat. The iteration expression defines the amount by which the loop control variable will change each time the loop is repeated. Notice that these three major sections of the loop must be separated by semicolons. The for loop will continue to execute as long as the con- dition tests true. Once the condition becomes false, the loop will exit, and program execution will resume on the statement following the for. A for loop is most commonly used when you know that a loop will execute a predetermined number of times. It is also very useful when a sequence of values are required, since its loop control variable can often be used to produce the sequence. For example, if you want to display the square roots of the numbers between 1 and 99, a for loop is quite helpful, as this program illustrates. // Show square roots of 1 to 99. class SqrRoot { public static void main(String[] args) { double num, sroot; for(num = 1.0; num < 100.0; num++) { sroot = Math.sqrt(num); System.out.println("Square root of " + num + } } } statement sequence " is " + sroot); Here, the sequence of values for which the square roots are obtained is produced by the for’s loop control variable. Java Programming 91 The for loop can proceed in a positive or negative fashion, and it can change the loop control variable by any amount. For example, the following program prints the numbers from 100 to –95, in decrements of 5. // A negatively running for loop. class DecrFor { public static void main(String[] args) { int x; for(x = 100; x > -100; x -= 5) System.out.println(x);
} }
Loop control variable is decremented by 5 each time.
An important point about for loops is that the conditional expression is always tested at the top of the loop. This means that the code inside the loop will not execute at all if the condition is false to begin with. Here is an example:
for(count=10; count < 5; count++) x += count; // this statement will not execute This loop will never execute because its control variable, count, is greater than 5 when the loop is first entered. This makes the conditional expression, count < 5, false from the outset; thus, not even one iteration of the loop will occur. Some VarIatIonS on the for LooP The for is one of the most versatile statements in the Java language because it allows a wide range of variations. One of the most common is the use of multiple loop control variables. When using multiple loop control variables, the initialization and iteration expressions for each variable are separated by commas. Here is a simple example: // Use multiple loop control variables in a for. class MultipleLoopVars { public static void main(String[] args) { int i, j; for(i=0, j=10; i < j; i++, j--) System.out.println("i and j: " + i + " " + j); The output from the program is shown here: i and j: 0 10 i and j: 1 9 i and j: 2 8 i and j: 3 7 i and j: 4 6 Notice the two loop control variables. } } Notice how commas separate the two initialization expressions and the two iteration expressions. When the loop begins, both i and j are initialized in the initialization 92 chapter 3 Program Control Statements portion of the loop. Each time the loop repeats, i is incremented and j is decremented. The loop terminates when i is equal to or greater than j. In principle, you can have any number of loop control variables, but in practice, more than two or three make the for loop unwieldy. Another common for variation involves the nature of the loop control condition. This condition does not need to involve the loop control variable. It can be any valid boolean expression. In the next example, the loop continues to execute until the user types the letter S at the keyboard. // Loop until an S is typed. class ForTest { public static void main(String[] args) throws java.io.IOException { int i; System.out.println("Press S to stop."); for(i = 0; (char) System.in.read() != 'S'; i++) System.out.println("Pass #" + i); } } missing Pieces Some interesting for loop variations are created by leaving pieces of the loop defini- tion empty. In Java, it is possible for any or all of the initialization, condition, or itera- tion portions of the for loop to be blank. For example, consider the following program. // Parts of the for can be empty. class Empty { public static void main(String[] args) { int i; for(i = 0; i < 10; ) { System.out.println("Pass #" + i); i++; // increment loop control var } } } The iteration expression is missing. Here, the iteration expression of the for is empty. Instead, the loop control variable i is incremented inside the body of the loop. This means that each time the loop repeats, i is tested to see whether it equals 10, but no further action takes place. Of course, since i is still incremented within the body of the loop, the loop runs normally, displaying the following output: Pass #0 Pass #1 Pass #2 Pass #3 Pass #4 Pass #5 Pass #6 Pass #7 Pass #8 Pass #9 In the next example, the initialization portion is also moved out of the for. // Move more out of the for loop. class Empty2 { public static void main(String[] args) { int i; i = 0; // move initialization out of loop for(; i < 10; ) { System.out.println("Pass #" + i); i++; // increment loop control var } } } The initialization expression is moved out of the loop. Java Programming 93 In this version, i is initialized before the loop begins, rather than as part of the for. Normally, you will want to initialize the loop control variable inside the for. Generally, the initialization is placed outside of the loop only when the initial value is derived through a process that does not lend itself to containment inside the for statement. the Infinite Loop You can create an infinite loop (a loop that never terminates) using the for by leaving the conditional expression empty. For example, the following fragment shows the way many Java programmers create an infinite loop. for(;;) // intentionally infinite loop { //... } This loop will run forever. Although there are some programming tasks, such as oper- ating system command processors, that require an infinite loop, most “infinite loops” are really just loops with special termination requirements. Near the end of this chapter you will see how to halt a loop of this type. (Hint: it’s done using the break statement.) Loops with no body In Java, the body associated with a for loop (or any other loop) can be empty. This is because a null statement is syntactically valid. Body-less loops are often useful. For example, the following program uses one to sum the numbers 1 through 5. // The body of a loop can be empty. class Empty3 { public static void main(String[] args) { 94 chapter 3 Program Control Statements int i; int sum = 0; // sum the numbers through 5 for(i = 1; i <= 5; sum += i++) ; No body in this loop! System.out.println("Sum is " + sum); } } The output from the program is shown here: Sum is 15 Notice that the summation process is handled entirely within the for statement, and no body is needed. Pay special attention to the iteration expression: sum += i++ Don’t be intimidated by statements like this. They are common in professionally writ- ten Java programs and are easy to understand if you break them down into their parts. In words, this statement says “assign to sum the value of sum plus i, then increment i.” Thus, it is the same as this sequence of statements: sum = sum + i; i++; deCLarIng LooP ControL VarIabLeS InSIde the for Statement Often the variable that controls a for loop is needed only for the purposes of the loop and is not used elsewhere. When this is the case, it is possible to declare the variable inside the initialization portion of the for. For example, the following program com- putes both the sum and the product of the numbers 1 through 5. It declares its loop control variable i inside the for. // Declare loop control variable inside the for. class ForVar { public static void main(String[] args) { int sum = 0; int product = 1; // compute the sum and product of the numbers 1 through 5 for(int i = 1; i <= 5; i++) { sum += i; // i is known throughout the loop product *= i; } // but, i is not known here System.out.println("Sum is " + sum); The variable i is declared inside the for statement. System.out.println(“Product is " + product); } } When you declare a variable inside a for loop, there is one important point to remem- ber: the scope of that variable ends when the for statement does. (That is, the scope of the variable is limited to the for loop.) Outside the for loop, the variable will cease to exist. Thus, in the preceding example, i is not accessible outside the for loop. If you need to use the loop control variable elsewhere in your program, you will not be able to declare it inside the for loop. Before moving on, you might want to experiment with your own variations on the for loop. As you will find, it is a fascinating loop. the enhanCed for LooP There is another form of the for loop, called the enhanced for. The enhanced for provides a streamlined way to cycle through the contents of a collection of objects, such as an array. The enhanced for loop is discussed in Chapter 5, after arrays have been introduced. 1. Can portions of a for statement be empty? 2. Show how to create an infinite loop using for. 3. What is the scope of a variable declared within a for statement? the while LooP Another loop supported by Java is the while. The general form of the while loop is while(condition) statement; where statement may be a single statement or a block of statements, and condition defines the condition that controls the loop and it may be any valid Boolean expres- sion. The loop repeats while the condition is true. When the condition becomes false, program control passes to the line immediately following the loop. Here is a simple example in which a while is used to print the alphabet: // Demonstrate the while loop. class WhileDemo { public static void main(String[] args) { Answers: 1. Yes. All three parts of the for—initialization, condition, and iteration—can be empty. 2. for(;;) 3. The scope of a variable declared within a for is limited to the loop. Outside Java Programming 95 Progress Check the loop, it is unknown. 96 chapter 3 Program Control Statements char ch; // print the alphabet using a while loop ch = 'a'; while(ch <= 'z') { System.out.print(ch); ch++; } } } Here, ch is initialized to the letter a. Each time through the loop, ch is output and then incremented. This process continues until ch is greater than z. As with the for loop, the while checks the conditional expression at the top of the loop, which means that the loop code may not execute at all. This eliminates the need for performing a separate test before the loop. The following program illustrates this characteristic of the while loop. It computes the integer powers of 2, from 0 to 9. // Compute integer powers of 2. class Power { public static void main(String[] args) { int e; int result; for(int i=0; i < 10; i++) { result = 1; e = i; while(e > 0) {
result *= 2;
e–; }
System.out.println(“2 to the ” + i +
” power is ” + result);
} }
}
The output from the program is shown here:
2 to the 0 power is 1
2 to the 1 power is 2
2 to the 2 power is 4
2 to the 3 power is 8
2 to the 4 power is 16 2 to the 5 power is 32 2 to the 6 power is 64 2 to the 7 power is 128 2 to the 8 power is 256 2 to the 9 power is 512

Java Programming 97 Notice that the while loop executes only when e is greater than 0. Thus, when e is
zero, as it is in the first iteration of the for loop, the while loop is skipped.
ask the expert
Q Given the flexibility inherent in all of Java’s loops, what criteria should I use when selecting a loop? That is, how do I choose the right loop for a
specific job?
AUse a for loop when performing a predetermined number of iterations. Use the do-while when you need a loop that will always perform at least one itera- tion. The while is best used when the loop will repeat until some condition becomes false.
the do-while LooP
The last of Java’s loops is the do-while. Unlike the for and the while loops, in which the condition is tested at the top of the loop, the do-while loop checks its condition at the bottom of the loop. This means that a do-while loop will always execute at least once. The general form of the do-while loop is
do { statements;
} while(condition);
Although the braces are not necessary when only one statement is present, they are often used to improve readability of the do-while construct, thus preventing confu- sion with the while. The do-while loop iterates as long as the conditional expression is true.
The following program demonstrates the do-while by looping until the user enters the letter q.
// Demonstrate the do-while loop. class DWDemo {
public static void main(String[] args) throws java.io.IOException {
char ch;
do {
System.out.print(“Press a key followed by ENTER: “); ch = (char) System.in.read(); // get a char
} while(ch != ‘q’); }
}
Notice that body of the do-while loop prompts for a key press and then obtains the key that was entered. This character is then tested against the letter q in the conditional expression. If the key pressed was not a q, the loop repeats. Because this condition is

98 chapter 3 Program Control Statements
tested at the bottom of the loop, the body of the loop will be executed at least once, ensuring that the user is prompted to press a key.
Using a do-while loop, we can further improve the guessing game program from earlier in this chapter. This time, the program loops until you guess the letter.
// Guess the letter game, 4th version. class Guess4 {
public static void main(String[] args) throws java.io.IOException {
char ch, ignore, answer = ‘K’;
do {
System.out.println(“I’m thinking of a letter between A and Z.”); System.out.print(“Can you guess it: “);
// read a character
ch = (char) System.in.read();
// discard any other characters in the input buffer do {
ignore = (char) System.in.read(); } while(ignore != ‘\n’);
if(ch == answer) System.out.println(“** Right **”); else {
System.out.print(“…Sorry, you’re “);
if(ch < answer) System.out.println("too low"); else System.out.println("too high"); System.out.println("Try again!\n"); } } while(answer != ch); } } Here is a sample run: I'm thinking of a letter between A and Z. Can you guess it: A ...Sorry, you’re too low Try again! I'm thinking of a letter between A and Z. Can you guess it: Z ...Sorry, you're too high Try again! I'm thinking of a letter between A and Z. Can you guess it: K ** Right ** Java Programming 99 Notice one other thing of interest in this program. There are two do-while loops in the program. The first loops until the user guesses the letter. Its operation and mean- ing should be clear. The second do-while loop, shown again here, warrants some explanation. // discard any other characters in the input buffer do { ignore = (char) System.in.read(); } while(ignore != '\n'); As explained earlier, console input is line buffered—you have to press ENTER before characters are sent. Pressing ENTER causes a carriage return and a line feed (newline) sequence to be generated. These characters are left pending in the input buffer. Also, if you typed more than one key before pressing ENTER, they too would still be in the input buffer. This loop discards those characters by continuing to read input until the end of the line is reached. If they were not discarded, then those characters would also be sent to the program as guesses, which is not what is wanted. (To see the effect of this, you might try removing the inner do-while loop.) In Chapter 11, after you have learned more about Java, some other, higher-level ways of handling console input are described. However, our use of read( ) here gives you insight into how the foundation of Java’s I/O system operates. It also shows another example of Java’s loops in action. 1. What is the main difference between the while and the do-while loops? 2. The condition controlling the while can be of any type. True or False? Progress Check Try This 3.2 Improve the Java Help System Help2.java This project expands on the Java help system that was created in Try This 3-1. This version adds the syntax for the for, while, and do-while loops. It also shows how a do-while loop can be used to check the user’s menu selection, looping until a valid response is entered. Notice how the switch statement makes it very easy to add selections. StEp-by-StEp 1. Copy Help.java to a new file called Help2.java. Answers: 1. The while checks its condition at the top of the loop. The do-while checks its condition at the bottom of the loop. Thus, a do-while will always execute at least once. 2. False. The condition must be of type boolean. 100 chapter 3 Program Control Statements 2. Change the first part of main( ) so that it uses a loop to display the choices, as shown here: public static void main(String[] args) throws java.io.IOException { char choice, ignore; do { System.out.println("Help on:"); System.out.println(" 1. if"); System.out.println(" 2. switch"); System.out.println(" 3. for"); System.out.println(" 4. while"); System.out.println(" 5. do-while\n"); System.out.print("Choose one: "); choice = (char) System.in.read(); do { ignore = (char) System.in.read(); } while(ignore != '\n'); } while( choice < '1' | choice > ‘5’);
Notice that a nested do-while loop is used to discard any unwanted charac- ters remaining in the input buffer. After making this change, the program will loop, displaying the menu until the user enters a response that is be- tween 1 and 5.
3. Expand the switch statement to include the for, while, and do-while loops, as shown here:
switch(choice) { case ‘1’:
System.out.println(“The if:\n”); System.out.println(“if(condition) statement;”); System.out.println(“else statement;”);
break;
case ‘2’:
System.out.println(“The switch:\n”); System.out.println(“switch(expression) {“);
case ‘3’:
System.out.println(“The for:\n”); System.out.print(“for(init; condition; iteration)”); System.out.println(” statement;”);
break;
System.out.println(” System.out.println(” System.out.println(” System.out.println(” System.out.println(“}”); break;
case constant:”); statement sequence”); break;”);
// …”);

Java Programming 101
case ‘4’:
System.out.println(“The while:\n”); System.out.println(“while(condition) statement;”); break;
case ‘5’:
System.out.println(“The do-while:\n”); System.out.println(“do {“); System.out.println(” statement;”); System.out.println(“} while (condition);”); break;
}
Notice that no default statement is present in this version of the switch. Since the menu loop ensures that a valid response will be entered, it is no longer necessary to include a default statement to handle an invalid choice.
4. Here is the entire Help2.java program: /*
Try This 3-2
An improved Help system that uses a
do-while to process a menu selection. */
class Help2 {
public static void main(String[] args)
throws java.io.IOException { char choice, ignore;
do {
System.out.println(“Help on:”); System.out.println(” 1. if”); System.out.println(” 2. switch”); System.out.println(” 3. for”); System.out.println(” 4. while”); System.out.println(” 5. do-while\n”); System.out.print(“Choose one: “);
choice = (char) System.in.read();
do {
ignore = (char) System.in.read();
} while(ignore != ‘\n’);
} while( choice < '1' | choice > ‘5’);
System.out.println(“\n”);
switch(choice) { case ‘1’:
System.out.println(“The if:\n”);

102 chapter 3 Program Control Statements
System.out.println(“if(condition) statement;”); System.out.println(“else statement;”);
break;
case ‘2’:
System.out.println(“The switch:\n”); System.out.println(“switch(expression) {“); System.out.println(” case constant:”); System.out.println(” statement sequence”); System.out.println(” break;”); System.out.println(” // …”); System.out.println(“}”);
break;
case ‘3’:
System.out.println(“The for:\n”); System.out.print(“for(init; condition; iteration)”); System.out.println(” statement;”);
break;
case ‘4’:
System.out.println(“The while:\n”); System.out.println(“while(condition) statement;”); break;
case ‘5’:
System.out.println(“The do-while:\n”); System.out.println(“do {“); System.out.println(” statement;”); System.out.println(“} while (condition);”); break;
} }
}
uSe break to exIt a LooP
It is possible to force an immediate exit from a loop, bypassing any remaining code in the body of the loop and the loop’s conditional test, by using the break statement. When a break statement is encountered inside a loop, the loop is terminated and program control resumes at the next statement following the loop. Here is a simple example:
// Using break to exit a loop. class BreakDemo {
public static void main(String[] args) { int num;
num = 100;
// loop while i-squared is less than num for(int i=0; i < num; i++) { if(i*i >= num) break; // terminate loop if i*i >= 100

System.out.print(i + ” “); }
System.out.println(“Loop complete.”); }
}
This program generates the following output:
0 1 2 3 4 5 6 7 8 9 Loop complete.
As you can see, although the for loop is designed to run from 0 to num (which in this case is 100), the break statement causes it to terminate early, when i squared is greater than or equal to num.
The break statement can be used with any of Java’s loops, including intentionally infinite loops. For example, the following program simply reads input until the user types the letter q.
Java Programming 103
// Read input until a q is received. class Break2 {
public static void main(String[] args) throws java.io.IOException {
char ch;
for( ; ; ) {
ch = (char) System.in.read(); // get a char if(ch == ‘q’) break;
}
System.out.println(“You pressed q!”); }
}
This “infinite” loop is terminated by the break.
When used inside a set of nested loops, the break statement will break out of only the innermost loop. For example:
// Using break with nested loops. class Break3 {
public static void main(String[] args) {
for(int i=0; i<3; i++) { System.out.println("Outer loop count: " + i); System.out.print(" Inner loop count: "); int t = 0; while(t < 100) { if(t == 10) break; // terminate loop if t is 10 System.out.print(t + " "); t++; } System.out.println(); } System.out.println("Loops complete."); } } 104 chapter 3 Program Control Statements This program generates the following output: Outer loop count: 0 Inner loop count: 0 1 2 3 4 5 6 7 8 9 Outer loop count: 1 Inner loop count: 0 1 2 3 4 5 6 7 8 9 Outer loop count: 2 Inner loop count: 0 1 2 3 4 5 6 7 8 9 Loops complete. As you can see, the break statement in the inner loop causes the termination of only that loop. The outer loop is unaffected. Here are two other points to remember about break. First, more than one break statement may appear in a loop. However, be careful. Too many break statements have the tendency to destructure your code. Second, the break that terminates a switch statement affects only that switch statement and not any enclosing loops. uSe break aS a form of goto In addition to its uses with the switch statement and loops, the break statement can be employed by itself to provide a “civilized” form of the goto statement. Java does not have a goto statement, because it provides an unstructured way to alter the flow of program execution. Programs that make extensive use of the goto are usually hard to understand and hard to maintain. There are, however, a few places where the goto is a useful and legitimate device. For example, the goto can be helpful when exiting from a deeply nested set of loops. To handle such situations, Java defines an expanded form of the break statement. By using this form of break, you can, for example, break out of one or more blocks of code. These blocks need not be part of a loop or a switch. They can be any block. Further, you can specify precisely where execution will resume, because this form of break works with a label. The break statement gives you the benefits of a goto without some of its problems. The general form of the labeled break statement is shown here: break label; Here, label is the name of a label that identifies a statement or a block of code. When this form of break executes, control is transferred out of the labeled statement or block. The labeled statement or block must enclose the break statement, but it does not need to be the immediately enclosing one. This means that you can use a labeled break statement to exit from a set of nested blocks, for example. But you cannot use break to transfer control to a block of code that does not enclose the break statement. To name a statement or block, put a label at the start of it. A label is any valid Java identifier followed by a colon. Once you have labeled a statement or block, you can use this label as the target of a break statement. Doing so causes execution to resume at the end of the statement or block. For example, the following program shows three nested blocks. // Using break with a label. class Break4 { public static void main(String[] args) { int i; System.out.println("\ni is " + i); if(i==1) break one; if(i==2) break two; if(i==3) break three; // this is never reached Break to a label. Java Programming 105 for(i=1; i<4; i++) { one: { two: three: { { System.out.println("won't print"); } System.out.println("After block three."); } System.out.println("After block two."); } System.out.println("After block one."); } System.out.println("After for."); } } The output from the program is shown here: i is 1 After block one. i is 2 After block two. After block one. i is 3 After block three. After block two. After block one. After for. Let’s look closely at the program to understand precisely why this output is produced. When i is 1, the first if statement succeeds, causing a break to the end of the block of code defined by label one. This causes After block one. to print. When i is 2, the second if succeeds, causing control to be transferred to the end of the block labeled by two. This causes the messages After block two. and After block one. to be printed, in that order. When i is 3, the third if succeeds, and control is transferred to the end of the block labeled by three. Now, all three messages are displayed. Here is another example. This time, break is being used to jump outside of a series of nested for loops. When the break statement in the inner loop is executed, program control jumps to the end of the block defined by the outer for loop, which is labeled by done. This causes the remainder of all three loops to be bypassed. 106 chapter 3 Program Control Statements // Another example of using break with a label. class Break5 { public static void main(String[] args) { done: for(int i=0; i<10; i++) { for(int j=0; j<10; j++) { for(int k=0; k<10; k++) { System.out.println(k + " "); if(k == 5) break done; // jump to done } System.out.println("After k loop"); // won't execute } System.out.println("After j loop"); // won't execute } System.out.println("After i loop"); } } The output from the program is shown here: 0 1 2 3 4 5 After i loop Precisely where you put a label is very important—especially when working with loops. For example, consider the following program: // Where you put a label is important. class Break6 { public static void main(String[] args) { int x=0, y=0; // here, put label before for statement. stop1: for(x=0; x < 5; x++) { for(y = 0; y < 5; y++) { if(y == 2) break stop1; System.out.println("x and y: " + x + " " + y); } } System.out.println(); // now, put label immediately before { for(x=0; x < 5; x++) stop2: { for(y = 0; y < 5; y++) { if(y == 2) break stop2; System.out.println("x and y: " + x + " " + y); } } } } The output from this program is shown here: x and y: 0 0 x and y: 0 1 x and y: 0 0 x and y: 0 1 x and y: 1 0 x and y: 1 1 x and y: 2 0 x and y: 2 1 x and y: 3 0 x and y: 3 1 x and y: 4 0 x and y: 4 1 In the program, both sets of nested loops are the same except for one point. In the first set, the label precedes the outer for statement. In this case, when the break executes, it transfers control to the end of the entire for block, skipping the rest of the outer loop’s iterations. In the second set, the label precedes the outer for’s opening curly brace. Thus, when break stop2 executes, control is transferred to the end of the outer for’s block, rather than the end of the loop. This causes the next iteration to occur. Keep in mind that you cannot break to any label that is not defined for a statement or block that encloses the break statement. For example, the following program is invalid and will not compile. // This program contains an error. class BreakErr { public static void main(String[] args) { one: for(int i=0; i<3; i++) { System.out.print("Pass " + i + ": "); } for(int j=0; j<100; j++) { if(j == 10) break one; // WRONG System.out.print(j + " "); } } } Since the for loop labeled one does not enclose the break statement in the second for loop, it is not possible to transfer control to that label. Java Programming 107 108 chapter 3 Program Control Statements ask the expert Q You say that the goto is unstructured and that the break with a label offers a better alternative. But really, doesn’t breaking to a label, which might be many lines of code and levels of nesting removed from the break, also destructure code? AThe short answer is yes! However, in those cases in which a jarring change in program flow is required, breaking to a label still retains some structure because you can only jump out of an enclosing, labeled block or statement. You can’t jump into any arbitrary block or statement. In contrast, a goto has, essentially, no structure! uSe continue It is possible to force an early iteration of a loop, bypassing the loop’s normal control structure. This is accomplished using continue. The continue statement forces the next iteration of the loop to take place, skipping any code between itself and the conditional expression that controls the loop. Thus, continue is essentially the complement of break. For example, the following program uses continue to help print the even numbers between 0 and 100. // Use continue. class ContDemo { public static void main(String[] args) { int i; // print even numbers between 0 and 100 for(i = 0; i<=100; i++) { if((i%2) != 0) continue; // iterate System.out.println(i); } } } Only even numbers are printed, because an odd one will cause the loop to iterate early, bypassing the call to println( ). This is accomplished by use of the % operator, which returns the remainder of a division. If the number is even, the remainder of a division by 2 is zero and the if fails. If the number is odd, then the remainder is 1, causing the if to execute the continue statement. In while and do-while loops, a continue statement will cause control to go directly to the conditional expression and then continue the looping process. In the case of the for, the iteration expression of the loop is evaluated, next the conditional expression is executed, and then the loop continues. A continue statement may specify a label to describe which enclosing loop to continue. Here is an example program that uses continue with a label: // Use continue with a label. class ContToLabel { public static void main(String[] args) { outerloop: for(int i=1; i < 10; i++) { System.out.print("\nOuter loop pass " + i + ", Inner loop: "); for(int j = 1; j < 10; j++) { if(j == 5) continue outerloop; // continue outer loop System.out.print(j); } } } } The output from the program is shown here: Outer loop pass 1, Inner loop: 1234 Outer loop pass 2, Inner loop: 1234 Outer loop pass 3, Inner loop: 1234 Outer loop pass 4, Inner loop: 1234 Outer loop pass 5, Inner loop: 1234 Outer loop pass 6, Inner loop: 1234 Outer loop pass 7, Inner loop: 1234 Outer loop pass 8, Inner loop: 1234 Outer loop pass 9, Inner loop: 1234 As the output shows, when the continue executes, control passes to the outer loop, skipping the remainder of the inner loop. Good uses of continue are rare. One reason is that Java provides a rich set of loop statements that fit most applications. However, for those special circumstances in which early iteration is needed, the continue statement provides a structured way to accomplish it. 1. Within a loop, what happens when a break (with no label) is executed? 2. What happens when a break with a label is executed? 3. What does continue do? Answers: 1. Within a loop, a break without a label causes immediate termination of the loop. Execution resumes at the first line of code after the loop. 2. When a labeled break is executed, execution resumes at the first line of code after the labeled statement or block. 3. The continue statement causes a loop to iterate immediately, bypassing any remaining code. If the continue includes a label, the labeled loop is continued. Java Programming 109 Progress Check 110 chapter 3 Program Control Statements Try This 3-3 Finish the Java Help System Help3.java This project puts the finishing touches on the Java help system that was created in the previous projects. This version adds the syntax for break and continue. It also allows the user to request the syntax for more than one statement. It does this by adding an outer loop that runs until the user enters q as a menu selection. StEp-by-StEp 1. Copy Help2.java to a new file called Help3.java. 2. Surround all of the program code with an infinite for loop. Break out of this loop, using break, when a letter q is entered. Since this loop surrounds all of the program code, breaking out of this loop causes the program to terminate. 3. Change the menu loop as shown here: do { System.out.println("Help on:"); System.out.println(" 1. if"); System.out.println(" 2. switch"); System.out.println(" 3. for"); System.out.println(" 4. while"); System.out.println(" 5. do-while"); System.out.println(" 6. break"); System.out.println(" 7. continue\n"); System.out.print("Choose one (q to quit): "); choice = (char) System.in.read(); do { ignore = (char) System.in.read(); } while(ignore != '\n'); } while( choice < '1' | choice > ‘7’ & choice != ‘q’);
Notice that this loop now includes the break and continue statements. It also
accepts the letter q as a valid choice.
4. Expand the switch statement to include the break and continue statements,
as shown here:
case ‘6’:
System.out.println(“The break:\n”); System.out.println(“break; or break label;”); break;
case ‘7’:
System.out.println(“The continue:\n”); System.out.println(“continue; or continue label;”); break;

Java Programming 111
5. Here is the entire Help3.java program: /*
Try This 3-3
The finished Java statement Help system
that processes multiple requests. */
class Help3 {
public static void main(String[] args)
throws java.io.IOException { char choice, ignore;
for(;;) { do {
System.out.println(“Help on:”); System.out.println(” 1. if”); System.out.println(” 2. switch”); System.out.println(” 3. for”); System.out.println(” 4. while”); System.out.println(” 5. do-while”); System.out.println(” 6. break”); System.out.println(” 7. continue\n”); System.out.print(“Choose one (q to quit): “);
choice = (char) System.in.read();
do {
ignore = (char) System.in.read();
} while(ignore != ‘\n’);
} while( choice < '1' | choice > ‘7’ & choice != ‘q’);
if(choice == ‘q’) break;
System.out.println(“\n”);
switch(choice) { case ‘1’:
System.out.println(“The if:\n”); System.out.println(“if(condition) statement;”); System.out.println(“else statement;”);
break;
case ‘2’:
System.out.println(“The switch:\n”); System.out.println(“switch(expression) {“); System.out.println(” case constant:”); System.out.println(” statement sequence”); System.out.println(” break;”); System.out.println(” // …”);

112 chapter 3 Program Control Statements
System.out.println(“}”);
break; case ‘3’:
System.out.println(“The for:\n”); System.out.print(“for(init; condition; iteration)”); System.out.println(” statement;”);
break;
case ‘4’:
System.out.println(“The while:\n”); System.out.println(“while(condition) statement;”); break;
case ‘5’:
System.out.println(“The do-while:\n”); System.out.println(“do {“); System.out.println(” statement;”); System.out.println(“} while (condition);”); break;
case ‘6’:
System.out.println(“The break:\n”); System.out.println(“break; or break label;”); break;
case ‘7’:
System.out.println(“The continue:\n”); System.out.println(“continue; or continue label;”); break;
}
System.out.println(); }
} }
6. Here is a sample run:
Help on: 1. if
2. switch 3. for
4. while
5. do-while 6. break
7. continue
Choose one (q to quit): 1 The if:
if(condition) statement; else statement;

neSted LooPS
As you have seen in some of the preceding examples, one loop can be nested inside of another. Nested loops are used to solve a wide variety of programming problems and are an essential part of programming. So, before leaving the topic of Java’s loop statements, let’s look at one more nested loop example. The following program uses a nested for loop to find all the factors (other than 1 and the number itself) of the num- bers from 2 to 100. Notice that the outer loop produces the numbers for which the factors will be obtained. The inner loop determines the numbers’ factors.
/*
Use nested loops to find factors of numbers between 2 and 100.
*/
class FindFac {
public static void main(String[] args) {
for(int i=2; i <= 100; i++) { System.out.print("Factors of " + i + ": "); for(int j = 2; j < i; j++) if((i%j) == 0) System.out.print(j + " "); System.out.println(); } } Java Programming 113 Help on: 1. if 2. switch 3. for 4. while 5. do-while 6. break 7. continue Choose one (q to quit): 6 The break: break; or break label; Help on: 1. if 2. switch 3. for 4. while 5. do-while 6. break 7. continue Choose one (q to quit): q } 114 chapter 3 Program Control Statements Here is a portion of the output produced by the program: Factors of 2: Factors of 3: Factors of 4: Factors of 5: Factors of 6: Factors of 7: Factors of 8: Factors of 9: Factors of 10: Factors of 11: Factors of 12: Factors of 13: Factors of 14: Factors of 15: Factors of 16: Factors of 17: Factors of 18: Factors of 19: Factors of 20: 2 2 3 2 4 3 2 5 2 3 2 7 3 5 2 4 2 3 2 4 4 6 8 6 9 5 10 In the program, the outer loop runs i from 2 through 100. The inner loop successively tests all numbers from 2 up to i, printing those that evenly divide i. Notice the use of the % operator to determine when one value evenly divides another. If the result is zero, then the divisor is a factor. Extra challenge: The preceding program can be made more efficient. Can you see how? (Hint: the number of iterations in the inner loop can be reduced.) exerCISeS 1. Write a program that reads characters from the keyboard until a period is re- ceived. Have the program count the number of spaces. Report the total at the end of the program. 2. Show the general form of the if-else-if ladder. 3. Given if(x < 10) if(y > 100) {
if(!done) x = z;
else y = z; }
else System.out.println(“error”); // what if?
to what if does the last else associate?
4. Show the for statement for a loop that counts from 1000 to 0 by –2.

5. Is the following fragment valid? for(int i = 0; i < num; i++) sum += i; count = i; 6. Explain what break does. Be sure to explain both of its forms. 7. In the following fragment, after the break statement executes, what is displayed? for(i = 0; i < 10; i++) { while(running) { if(x v2.range()) System.out.println(“v1 has greater range”);
usInG parameters
It is possible to pass one or more values to a method when the method is called. Recall that a value passed to a method is called an argument. Inside the method, the variable that receives the argument is called a parameter. Parameters are declared inside the parentheses that follow the method’s name. The parameter declaration syntax is the same as that used for variables. A parameter is within the scope of its method, and aside from its special task of receiving an argument, it acts like any other local variable.
Here is a simple example that uses a parameter. Inside the ChkNum class, the method isEven( ) returns true if the value that it is passed is even. It returns false otherwise. Therefore, isEven( ) has a return type of boolean.
// A simple example that uses a parameter.
class ChkNum {
// Return true if x is even.

132 chapter 4 Introducing Classes, Objects, and methods
boolean isEven(int x) {
if((x%2) == 0) return true;
else return false;
} }
class ParmDemo {
public static void main(String[] args) {
ChkNum e = new ChkNum();
Here, x is an integer parameter of isEven( ).
Pass arguments to isEven( ).
if(e.isEven(10)) System.out.println(“10 is even.”);
if(e.isEven(9)) System.out.println(“9 is even.”);
if(e.isEven(8)) System.out.println(“8 is even.”);
} }
Here is the output produced by the program:
10 is even. 8 is even.
In the program, isEven( ) is called three times, and each time a different value is passed. Let’s look at this process closely. First, notice how isEven( ) is called. The argument is specified between the parentheses. When isEven( ) is called the first time, it is passed the value 10. Thus, when isEven( ) begins executing, the parameter x receives the value 10. In the second call, 9 is the argument, and x, then, has the value 9. In the third call, the argument is 8, which is the value that x receives. The point is that the value passed as an argument when isEven( ) is called is the value received by its parameter, x.
Now that you have seen a parameter in action, an important concept needs to be stated. Parameters are important to Java programming because they give you a means of supplying the data on which a method will operate. This enables many types of methods to be more useful, and more general. For example, if the isEven( ) method just shown did not have a parameter and only returned the result of testing the value 19, it would be of very limited use. However, by passing the value to be tested, the utility of isEven( ) is greatly expanded because it can now test any value. Thus, by parameterizing a method, you enable that method to address the general case rather than just one specific situation.
A key point to understand about argument passing is that the type of the argument must be compatible with the type of the parameter that receives it. This means, for example, that it would be an error to attempt to call isEven( ) with a boolean argument. Because a boolean value cannot be converted into an int value, the Java compiler will flag an error and not compile the program.
A method can have more than one parameter. Simply declare each parameter, separating one from the next with a comma. For example, the Factor class defines

Java programming 133 a method called isFactor( ) that determines whether the first parameter is a factor of
the second.
class Factor {
// Return true if a is a factor of b.
boolean isFactor(int a, int b) { This method has two parameters.
if( (b % a) == 0) return true;
else return false;
}
}
class IsFact {
public static void main(String[] args) {
Factor x = new Factor();
Pass two arguments to isFactor( ).
if(x.isFactor(2, 20)) System.out.println(“2 is factor”);
if(x.isFactor(3, 20)) System.out.println(“this won’t be displayed”);
}
}
Notice that when isFactor( ) is called, the arguments are also separated by commas. When using multiple parameters, each parameter specifies its own type, which can
differ from the others. For example, this is perfectly valid:
int myMeth(int a, double b, float c) { // …
adding a parameterized method to Vehicle
You can use a parameterized method to add a new feature to the Vehicle class: the ability to compute the amount of fuel needed for a given distance. This new method is called fuelNeeded( ). This method takes the number of miles that you want to drive and returns the number of gallons of gas required. The fuelNeeded( ) method is defined like this:
double fuelNeeded(int miles) {
return (double) miles / mpg;
}
Notice that this method returns a value of type double. This is useful since the amount of fuel needed for a given distance might not be a whole number. The entire Vehicle class that includes fuelNeeded( ) is shown here:
/*
Add a parameterized method that computes the
fuel required for a given distance.
*/

134 chapter 4 Introducing Classes, Objects, and methods
class Vehicle {
int passengers; // number of passengers
int fuelCap; // fuel capacity in gallons
int mpg; // fuel consumption in miles per gallon
// Return the range.
int range() {
return mpg * fuelCap;
}
// Compute fuel needed for a given distance.
double fuelNeeded(int miles) {
return (double) miles / mpg;
}
}
class CompFuel {
public static void main(String[] args) {
Vehicle minivan = new Vehicle();
Vehicle sportscar = new Vehicle();
double gallons;
int dist = 252;
// assign values to fields in minivan
minivan.passengers = 7;
minivan.fuelCap = 16;
minivan.mpg = 21;
// assign values to fields in sportscar
sportscar.passengers = 2;
sportscar.fuelCap = 14;
sportscar.mpg = 12;
gallons = minivan.fuelNeeded(dist);
System.out.println(“To go ” + dist + ” miles minivan needs ” +
gallons + ” gallons of fuel.”);
gallons = sportscar.fuelNeeded(dist);
System.out.println(“To go ” + dist + ” miles sportscar needs ” +
gallons + ” gallons of fuel.”);
} }
The output from the program is shown here:
To go 252 miles minivan needs 12.0 gallons of fuel. To go 252 miles sportscar needs 21.0 gallons of fuel.

Java programming 135
progress Check
1. When must an instance variable or method be accessed through an object refer- ence using the dot operator? When can a variable or method be used directly?
2. Explain the difference between an argument and a parameter. 3. Explain the two ways that a method can return to its caller.
Try This 4-1 Creating a Help Class
HelpClassDemo.java
If one were to try to summarize the essence of the class in one sentence, it might be this: a class encapsulates functionality. Of course, sometimes the trick is knowing where one functionality ends and another begins. As a general rule, you will want your classes to be the building blocks of your larger application. In order to do this, each class must represent a single functional unit that performs clearly delineated actions. Thus, you will want your classes to be as small as possible—but no smaller! That is, classes that contain extraneous functionality confuse and destructure code, but classes that contain too little functionality are fragmented. What is the balance? It is at this point that the science of programming becomes the art of programming. Fortunately, most program- mers find that this balancing act becomes easier with experience.
To begin to gain that experience you will convert the help system from Try This 3-3 in the preceding chapter into a Help class. Let’s examine why this is a good idea. First, the help system defines one logical unit. It simply displays the syntax for Java’s control statements. Thus, its functionality is compact and well defined. Second, putting help in a class is an aesthetically pleasing approach. Whenever you want to offer the help system to a user, simply instantiate a help-system object. Finally, because help is encapsulated, it can be upgraded or changed without caus- ing unwanted side effects in the programs that use it.
Answers:
1. When an instance variable is accessed by code that is not part of the class in which that instance variable is defined, it must be done through an object, by use of the dot operator. When an instance variable is accessed by code that is part of the same class as the instance variable, that variable can be referred to directly. The same thing applies to methods.
2. An argument is a value that is passed to a method when it is invoked. A para- meter is a variable defined by a method that receives the value of the argument.
3. A method can be made to return through use of the return statement. If the method has a void return type, it will also return when its closing brace is reached. Non-void methods must return a value, so returning by reaching the
closing brace is not an option.

136 chapter 4 Introducing Classes, Objects, and methods
STEp-by-STEp
1. Create a new file called HelpClassDemo.java. To save you some typing, you might want to copy the file from Try This 3-3, Help3.java, into HelpClassDemo.java.
2. To convert the help system into a class, you must first determine precisely what constitutes the help system. For example, in Help3.java, there is code to display a menu, input the user’s choice, check for a valid response, and display information about the item selected. The program also loops until the letter q is pressed. If you think about it, it is clear that the menu, the check for a valid response, and the display of the information are integral to the help system. How user input is obtained, and whether repeated requests should be processed, are not. Thus, you will create a class that displays the help information, the help menu, and checks for a valid selection. Its meth- ods will be called helpOn( ), showMenu( ), and isValid( ), respectively.
3. Create the helpOn( ) method as shown here:
// Display help.
void helpOn(int what) {
switch(what) { case ‘1’:
System.out.println(“The if:\n”); System.out.println(“if(condition) statement;”); System.out.println(“else statement;”);
break;
case ‘2’:
System.out.println(“The switch:\n”); System.out.println(“switch(expression) {“); System.out.println(” case constant:”); System.out.println(” statement sequence”); System.out.println(” break;”); System.out.println(” // …”); System.out.println(“}”);
break;
case ‘3’:
System.out.println(“The for:\n”); System.out.print(“for(init; condition; iteration)”); System.out.println(” statement;”);
break;
case ‘4’:
System.out.println(“The while:\n”); System.out.println(“while(condition) statement;”); break;
case ‘5’:
System.out.println(“The do-while:\n”); System.out.println(“do {“); System.out.println(” statement;”); System.out.println(“} while (condition);”); break;

Java programming 137
case ‘6’:
System.out.println(“The break:\n”); System.out.println(“break; or break label;”); break;
case ‘7’:
System.out.println(“The continue:\n”); System.out.println(“continue; or continue label;”); break;
}
System.out.println(); }
4. Next, create the showMenu( ) method:
// Display menu. void showMenu() {
System.out.println(“Help on:”); System.out.println(” 1. if”); System.out.println(” 2. switch”); System.out.println(” 3. for”); System.out.println(” 4. while”); System.out.println(” 5. do-while”); System.out.println(” 6. break”); System.out.println(” 7. continue\n”); System.out.print(“Choose one (q to quit): “);
}
5. Create the isValid( ) method, shown here:
// Return true if ch is a valid selection. boolean isValid(int ch) {
if(ch < '1' | ch > ‘7’ & ch != ‘q’) return false;
else return true; }
6. Assemble the foregoing methods into the Help class, shown here: class Help {
// Display help.
void helpOn(int what) {
switch(what) { case ‘1’:
System.out.println(“The if:\n”); System.out.println(“if(condition) statement;”); System.out.println(“else statement;”);
break;
case ‘2’:
System.out.println(“The switch:\n”); System.out.println(“switch(expression) {“); System.out.println(” case constant:”);

138 chapter 4 Introducing Classes, Objects, and methods
System.out.println(” statement sequence”); System.out.println(” break;”); System.out.println(” // …”); System.out.println(“}”);
break; case ‘3’:
System.out.println(“The for:\n”); System.out.print(“for(init; condition; iteration)”); System.out.println(” statement;”);
break;
case ‘4’:
System.out.println(“The while:\n”); System.out.println(“while(condition) statement;”); break;
case ‘5’:
System.out.println(“The do-while:\n”); System.out.println(“do {“); System.out.println(” statement;”); System.out.println(“} while (condition);”); break;
case ‘6’:
System.out.println(“The break:\n”); System.out.println(“break; or break label;”); break;
case ‘7’:
System.out.println(“The continue:\n”); System.out.println(“continue; or continue label;”); break;
}
System.out.println(); }
// Display menu. void showMenu() {
System.out.println(“Help on:”); System.out.println(” 1. if”); System.out.println(” 2. switch”); System.out.println(” 3. for”); System.out.println(” 4. while”); System.out.println(” 5. do-while”); System.out.println(” 6. break”); System.out.println(” 7. continue\n”); System.out.print(“Choose one (q to quit): “);
}
// Return true if ch is a valid selection. boolean isValid(int ch) {

Java programming 139
if(ch < '1' | ch > ‘7’ & ch != ‘q’) return false;
else return true; }
}
7. Finally, rewrite the main( ) method from Try This 3-3 so that it uses the new Help class. Call this class HelpClassDemo.java. The entire program for HelpClassDemo.java is shown here:
/*
Try This 4-1
Convert the help system from Try This 3-3 into
a Help class. */
class Help {
// Display help.
void helpOn(int what) {
switch(what) { case ‘1’:
System.out.println(“The if:\n”); System.out.println(“if(condition) statement;”); System.out.println(“else statement;”);
break;
case ‘2’:
System.out.println(“The switch:\n”); System.out.println(“switch(expression) {“); System.out.println(” case constant:”); System.out.println(” statement sequence”); System.out.println(” break;”); System.out.println(” // …”); System.out.println(“}”);
break;
case ‘3’:
System.out.println(“The for:\n”); System.out.print(“for(init; condition; iteration)”); System.out.println(” statement;”);
break;
case ‘4’:
System.out.println(“The while:\n”); System.out.println(“while(condition) statement;”); break;
case ‘5’:
System.out.println(“The do-while:\n”); System.out.println(“do {“); System.out.println(” statement;”); System.out.println(“} while (condition);”); break;

140 chapter 4 Introducing Classes, Objects, and methods
case ‘6’:
System.out.println(“The break:\n”); System.out.println(“break; or break label;”); break;
case ‘7’:
System.out.println(“The continue:\n”); System.out.println(“continue; or continue label;”); break;
}
System.out.println(); }
// Display menu. void showMenu() {
System.out.println(“Help on:”); System.out.println(” 1. if”); System.out.println(” 2. switch”); System.out.println(” 3. for”); System.out.println(” 4. while”); System.out.println(” 5. do-while”); System.out.println(” 6. break”); System.out.println(” 7. continue\n”); System.out.print(“Choose one (q to quit): “);
}
// Return true if ch is a valid selection. boolean isValid(int ch) {
if(ch < '1' | ch > ‘7’ & ch != ‘q’) return false;
else return true; }
}
class HelpClassDemo {
public static void main(String[] args)
throws java.io.IOException {
char choice, ignore;
Help hlpobj = new Help();
for(;;) { do {
hlpobj.showMenu();
choice = (char) System.in.read();
do {
ignore = (char) System.in.read();
} while(ignore != ‘\n’);

Java programming 141
} while( !hlpobj.isValid(choice) ); if(choice == ‘q’) break; System.out.println(“\n”); hlpobj.helpOn(choice);
} }
}
When you try the program, you will find that it is functionally the same as before. The advantage of this approach is that you now have a help system component that can be reused whenever it is needed.
COnstruCtOrs
In the preceding examples, the instance variables of each Vehicle object had to be set manually using a sequence of statements, such as:
minivan.passengers = 7; minivan.fuelCap = 16; minivan.mpg = 21;
An approach like this would never be used in professionally written Java code. Aside from being error prone (you might forget to set one of the fields), there is simply a better way to accomplish this task: the constructor.
A constructor initializes an object when it is created. It has the same name as its class and is syntactically similar to a method. However, constructors have no explicit return type. Typically, you will use a constructor to give initial values to the instance variables defined by the class, or to perform any other startup procedures required to create a fully formed object.
All classes have constructors, whether you define one or not, because Java auto- matically provides a default constructor. However, once you define your own con- structor, the default constructor is no longer used.
Here is a simple example that uses a constructor:
// A simple constructor.
class MyClass {
int x;
MyClass() {
x = 10;
}
This is the constructor for MyClass.

142 chapter 4 Introducing Classes, Objects, and methods }
class ConsDemo {
public static void main(String[] args) {
MyClass t1 = new MyClass();
MyClass t2 = new MyClass();
System.out.println(t1.x + ” ” + t2.x);
}
}
In this example, the constructor for MyClass is
MyClass() { x = 10;
}
This constructor assigns the instance variable x of MyClass the value 10. This con- structor is called by new when an object is created. For example, in the line
MyClass t1 = new MyClass();
the constructor MyClass( ) is called and the resulting object is assigned to t1, giving t1.x the value 10. The same is true for t2. After construction, t2.x has the value 10. Thus, the output from the program is
10 10
parameterIzed COnstruCtOrs
In the preceding example, a parameter-less constructor was used. Although this is fine for some situations, most often you will need a constructor that accepts one or more parameters. Parameters are added to a constructor in the same way that they are added to a method: just declare them inside the parentheses after the constructor’s name. For example, here, MyClass is given a parameterized constructor:
// A parameterized constructor.
class MyClass { int x;
MyClass(int i) { x = i;
} }
This constructor has a parameter.
class ParmConsDemo {
public static void main(String[] args) {
MyClass t1 = new MyClass(10); MyClass t2 = new MyClass(88);
System.out.println(t1.x + ” ” + t2.x);

} }
The output from this program is shown here:
10 88
In this version of the program, the MyClass( ) constructor defines one parameter called i, which is used to initialize the instance variable, x. Thus, when the line
MyClass t1 = new MyClass(10);
executes, the value 10 is passed to i, which is then assigned to x.
adding a Constructor to the
Vehicle Class
We can improve the Vehicle class by adding a constructor that automatically initial- izes the passengers, fuelCap, and mpg fields when an object is constructed. Pay special attention to how Vehicle objects are created.
// Add a constructor.
class Vehicle {
int passengers; // number of passengers
int fuelCap; // fuel capacity in gallons
int mpg; // fuel consumption in miles per gallon
Java programming 143
ask the expert
Q If I don’t initialize an instance variable, what value does it have?
AIf you don’t initialize an instance variable, then it will be given a default value. For numeric types, the default is zero. For reference types, the default is null, which indicates that no object is referred to, and for boolean variables, the default is false.
// This is a constructor for Vehicle.
Vehicle(int p, int f, int m) {
Constructor for Vehicle.
passengers = p;
fuelCap = f;
mpg = m;
}
// Return the range.
int range() {
return mpg * fuelCap;
}
// Compute fuel needed for a given distance.

144 chapter 4 Introducing Classes, Objects, and methods
double fuelNeeded(int miles) {
return (double) miles / mpg;
} }
class VehConsDemo {
public static void main(String[] args) {
// construct complete vehicles
Vehicle minivan = new Vehicle(7, 16, 21);
Vehicle sportscar = new Vehicle(2, 14, 12);
double gallons;
int dist = 252;
gallons = minivan.fuelNeeded(dist);
System.out.println(“To go ” + dist + ” miles minivan needs ” +
gallons + ” gallons of fuel.”);
gallons = sportscar.fuelNeeded(dist);
System.out.println(“To go ” + dist + ” miles sportscar needs ” +
gallons + ” gallons of fuel.”);
} }
Both minivan and sportscar are initialized by the Vehicle( ) constructor when they are created. Each object is initialized as specified in the parameters to its constructor. For example, in the following line,
Vehicle minivan = new Vehicle(7, 16, 21);
the values 7, 16, and 21 are passed to the Vehicle( ) constructor when new creates the object. Thus, minivan’s copy of passengers, fuelCap, and mpg will contain the values 7, 16, and 21, respectively. The output from this program is the same as for the previous version.
1. When is a constructor executed?
2. Does a constructor have a return type?
Answers:
1. A constructor is executed when an object of its class is instantiated. A constructor is used to initialize the object being created.
2. No.
progress Check

Java programming 145 Now that you know more about classes and their constructors, let’s take a closer look at
the new operator. In the context of an assignment, the new operator has this general form: class-var = new class-name(arg-list);
Here, class-var is a variable of the class type being created. The class-name is the name of the class that is being instantiated. The class name followed by a parenthe- sized argument list (which can be empty) specifies the constructor for the class. If a class does not define its own constructor, new will use the default constructor supplied by Java. Thus, new can be used to create an object of any class type. The new opera- tor returns a reference to the newly created object, which (in this case) is assigned to class-var.
Since memory is finite, it is possible that new will not be able to allocate memory for an object because insufficient memory exists. If this happens, a run-time exception will occur. (You will learn about exceptions in Chapter 10.) For the sample programs in this book, you won’t need to worry about running out of memory, but you will need to consider this possibility in real-world programs that you write.
the new OperatOr reVIsIted
ask the expert
Q Why don’t I need to use new for variables of the primitive types, such as int or float?
AJava’s primitive types are not implemented as objects. Rather, because of efficiency concerns, they are implemented as “normal” variables. A variable of a primitive type directly contains the value that you have given it. As explained, a reference variable contains a reference to the object. This layer of indirection (and other object features) adds overhead to an object that is avoided by a primitive type.
GarbaGe COlleCtIOn and FInalIzers
As you have seen, objects are dynamically allocated from a pool of free memory by using the new operator. As explained, memory is not infinite, and the free memory can be exhausted. Thus, it is possible for new to fail because there is insufficient free memory to create the desired object. For this reason, a key component of any dynamic allocation scheme is the recovery of free memory from unused objects, making that memory available for subsequent reallocation. In some programming languages, the release of previously allocated memory is handled manually. (For example, in C++, you use the delete operator to free memory that was allocated.) However, Java uses a different, more trouble-free approach: garbage collection.
Java’s garbage collection system reclaims objects automatically—occurring trans- parently, behind the scenes, without any programmer intervention. It works like this:

146 chapter 4 Introducing Classes, Objects, and methods
when no references to an object exist, that object is assumed to be no longer needed, and the memory occupied by the object is released. This recycled memory can then be used for a subsequent allocation.
Garbage collection occurs only sporadically during the execution of your pro- gram. It will not occur simply because one or more objects exist that are no longer used. For efficiency, the garbage collector will usually run only when two condi- tions are met: there are objects to recycle, and there is a need to recycle them. Remember, garbage collection takes time, so the Java run-time system does it only when it is appropriate. Thus, you can’t know precisely when garbage collection will take place.
the finalize( ) method
It is possible to define a method called a finalizer that will be called just before an object’s final destruction by the garbage collector. This method is called finalize( ), and it can be used in very specialized cases to ensure that an object terminates cleanly. For example, finalize( ) might be used to make sure that some system resource not managed by the Java run time is properly released. Although the vast majority of Java programs do not need finalizers, the topic is covered here for completeness and because a finalizer will be used to demon- strate Java’s garbage collection mechanism.
To add a finalizer to a class, you must define the finalize( ) method. The Java run- time system calls that method whenever it is about to recycle an object of that class. Inside the finalize( ) method you will specify those actions that must be performed before an object is destroyed.
The finalize( ) method has this general form:
protected void finalize( ) {
// finalization code here }
Here, the keyword protected is a modifier that governs access to finalize( ) by code defined outside its class. This and the other access modifers are explained in Chapter 6.
It is important to understand that finalize( ) is called just before garbage col- lection. It is not called when an object goes out of scope, for example. This means that you cannot know when—or even if—finalize( ) will be executed. For example, if your program ends before garbage collection occurs, finalize( ) will not execute. Therefore, it should be used only as a “backup” procedure to ensure the proper han- dling of some resource, or for special-use applications, not as the means that your program uses in its normal operation. In short, finalize( ) is a specialized method that is seldom needed.

Java programming 147
Try This 4-2 Demonstrate Garbage Collection
GCDemo.java
Because garbage collection runs sporadically, in the background, it is not easy to see it in action. However, one way it can be done is through the use of the finalize( ) method. Recall that finalize( ) is called when an object is about to be recycled. As explained, objects are not necessarily recycled as soon as they are no longer needed. Instead, the garbage collector waits until it can perform its collection efficiently, usually when there are many unused objects. Thus, to demonstrate garbage collection via the finalize( ) method, you often need to cre- ate and destroy a large number of objects—and this is precisely what you will do in this project.
STEp-by-STEp
1. Create a new file called GCDemo.java.
2. Create the MyClass class shown here:
class MyClass { int x;
MyClass(int i) { x = i;
}
// Called when object is recycled. protected void finalize() {
System.out.println(“Finalizing ” + x); }
// Generates an object that is immediately abandoned. void generate(int i) {
MyClass o = new MyClass(i); }
}
The constructor sets the instance variable x to a known value. In this exam- ple, x is used as an object ID. The finalize( ) method displays the value
of x when an object is recycled. Of special interest is generate( ). This method creates and then promptly abandons a MyClass object. This makes that object subject to garbage collection. You will see how this is used in the next step.

148 chapter 4 Introducing Classes, Objects, and methods
3. Create the GCDemo class, shown here:
class GCDemo {
public static void main(String[] args) {
MyClass ob = new MyClass(0);
/* Now, generate a large number of objects. At some point, garbage collection will occur. Note: you might need to increase the number of objects generated in order to force garbage collection. */
for(int count=1; count < 1000000; count++) ob.generate(count); } } This class creates an initial MyClass object called ob. Then, using ob, it cre- ates 1,000,000 objects by calling generate( ) on ob. This has the net effect of creating and discarding 1,000,000 objects. At various points in the middle of this process, garbage collection will take place. Precisely how often or when depends on several factors, such as the initial amount of free memory and the current task load of the operating system. However, at some point, you will start to see the messages generated by finalize( ). If you don’t see the messages, try increasing the number of objects being generated by raising the count in the for loop. 4. Here is the entire GCDemo.java program: /* Try This 4-2 Demonstrate garbage collection and the finalize() method. */ class MyClass { int x; MyClass(int i) { x = i; } // Called when object is recycled. protected void finalize() { System.out.println("Finalizing " + x); } // Generates an object that is immediately abandoned. void generate(int i) { MyClass o = new MyClass(i); the this KeywOrd Before concluding this chapter it is necessary to introduce this. When a method is called, it is automatically passed an implicit argument that is a reference to the invok- ing object (that is, the object on which the method is called). This reference is called this. To understand this, first consider a program that creates a class called power that computes the result of a number raised to some integer power: class Power { double b; int e; double val; Power(double base, int exp) { b = base; e = exp; val = 1; if(exp==0) return; for( ; exp>0; exp–) val = val * base;
}
double getPwr() {
return val;
} }
class DemoPower {
public static void main(String[] args) {
Power x = new Power(4.0, 2);
Power y = new Power(2.5, 1);
Java programming 149
} }
class GCDemo {
public static void main(String[] args) {
MyClass ob = new MyClass(0);
/* Now, generate a large number of objects. At some point, garbage collection will occur. Note: you might need to increase the number of objects generated in order to force garbage collection. */
for(int count=1; count < 1000000; count++) ob.generate(count); } } 150 chapter 4 Introducing Classes, Objects, and methods Power z = new Power(5.7, 0); System.out.println(x.b + " raised to the " + x.e + " power is " + x.getPwr()); System.out.println(y.b + " raised to the " + y.e + " power is " + y.getPwr()); System.out.println(z.b + " raised to the " + z.e + " power is " + z.getPwr()); } } The output from the program is shown here: 4.0 raised to the 2 power is 16.0 2.5 raised to the 1 power is 2.5 5.7 raised to the 0 power is 1.0 In each case, the value of power’s instance variable b is raised to the power passed to e. As you know, within a method, the other members of a class can be accessed directly, without any object or class qualification. Thus, inside getpwr( ), the statement return val; means that the copy of val associated with the invoking object will be returned. However, the same statement can also be written like this: return this.val; Here, this refers to the object on which getpwr( ) was called. Thus, this.val refers to that object’s copy of val. For example, if getpwr( ) had been invoked on x, then this in the preceding statement would have been referring to x. Writing the statement without using this is really just shorthand. Here is the entire power class written using the this reference: class Power { double b; int e; double val; Power(double base, int exp) { this.b = base; this.e = exp; this.val = 1; if(exp==0) return; for( ; exp>0; exp–) this.val = this.val * base;
}
double getPwr() {
return this.val;
} }

Java programming 151
If you substitute this version of power for the previous version in the pre- ceding program, the same results will be produced because both versions of power are functionally equivalent.
Actually, no Java programmer would write power as just shown because nothing is gained, and the standard form is easier. However, this has some important uses. For example, the Java syntax permits the name of a parameter or a local variable to be the same as the name of an instance variable. When this happens, the local name hides the instance variable. You can gain access to the hidden instance variable by referring to it through this. For example, the following is a syntactically valid way to write the power( ) constructor.
Power(double b, int e) {
this.b = b;
this.e = e;
val = 1;
if(e==0) return;
for( ; e>0; e–) val = val * b;
}
This refers to the b instance variable, not the parameter.
In this version, the names of the parameters are the same as the names of the instance variables, thus hiding them. However, this is used to “uncover” the instance variables.
exerCIses
1. What is the difference between a class and an object?
2. How is a class defined?
3. What does each object have its own copy of?
4. Using two separate statements, show how to declare a variable called counter
of a class called MyCounter and assign it a new object of that class.
5. Show how a method called myMeth( ) is declared if it has a return type of
double and has two int parameters called a and b.
6. How must a method return if it returns a value?
7. What name does a constructor have?
8. What does new do?
9. What is garbage collection, and how does it work? What is finalize( )?
10. What is this?
11. Can a constructor have one or more parameters?
12. If a method returns no value, what must its return type be?
13. CreateaDieclasswithoneintegerinstancevariablecalledsideUp.Giveita
constructor and a getSideUp( ) method that returns the value of sideUp and a void roll( ) method that changes sideUp to a random value from

152 chapter 4 Introducing Classes, Objects, and methods
1 to 6. (To see how to generate a random integer between 1 and 6, look at the last exercise in Chapter 2.) Then create a DieDemo class with a main method that creates two Die objects, rolls them, and prints the sum of the two sides up.
14. Create a Card class that represents a playing card. It should have an int instance variable named rank and a char variable named suit. Give it a constructor with two parameters for initializing the two instance variables and give it a getSuit( ) method and a getRank( ) method that return the values
of the two instance variables. Then create a CardTester class with a main method that creates five Cards that make up a full house (that is, three of the cards have the same rank and the other two cards have the same rank) and prints out the ranks and suits of the five Cards using the getSuit( ) and getRank( ) methods.
15. Suppose you have a class MyClass with one instance variable x. What will be printed by the following code segment? Explain your answer.
MyClass c1 = new MyClass(); c1.x = 3;
MyClass c2 = c1;
c2.x = 4; System.out.println(c1.x);
16. Suppose a class has an instance variable x and a method with a local vari- able x.
A. If x is used in a calculation in the body of the method, which x is being referred to?
b. Suppose you needed to add the local variable x to the instance variable x in the body of the method. How would you do so?
17. Thefollowingmethodhasaflaw(infact,duetothisflawitwillnotcompile). What is the flaw?
void displayAbsX(int x) { if (x > 0) {
System.out.println(x);
return; }
else { System.out.println(-x); return;
}
System.out.println(“Done”); }
18. Create a method max( ) that has two integer parameters x and y and returns the larger of x and y.
19. Create a method max( ) that has three integer parameters x, y, and z and it returns the largest of the three. Do it two ways: once using an if-else-if ladder and once using nested if statements.

Java programming 153
20. Suppose a class needs to compute a value and then print it. To modularize the code, the programmer wants to create a new method in the class to handle this work. Would it be better for the new method to compute and print the value or just compute and return the value, leaving the printing of the value to the code that calls the new method?
21. Find all the errors (if any) in the following class declaration:
Class MyCla$$ { integer x = 3.0; boolean b == false
//constructor
MyClass(boolean b) { b = b; }
int doIt() {}
int don’tDoIt() { return this; } }
22. Create a Swapper class with two integer instance variables x and y and a constructor with two parameters that initialize the two variables. Also include three methods: A getX( ) method that returns x, a gety( ) method that returns y, and a void swap( ) method that swaps the values of x and y. Then create a SwapperDemo class that tests all the methods.
23. Suppose you are writing a genealogy program. One useful class might be a person class, where each person in the family tree is represented by a person object. List at least five appropriate instance variables to include in such a class. Don’t worry about the type of the instance variables.
24. Create a USMoney class with two integer instance variables dollars and cents. Add a constructor with two parameters for initializing a USMoney object. The constructor should check that the cents value is between 0 and 99 and, if not, transfer some of the cents to the dollars variable to make it between 0 and 99. Add a plus method to the class that takes a USMoney object as its parameter. It creates and returns a new USMoney object repre- senting the sum of the object whose plus( ) method is being invoked and the parameter. It does not modify the values of the two existing objects. It should also ensure that the value of the cents instance variable of the new object
is between 0 and 99. For example, if x is a USMoney object with 5 dollars and 80 cents, and if y is a USMoney object with 1 dollar and 90 cents, then x.plus(y) will return a new USMoney object with 7 dollars and 70 cents. Also, create a USMoneyDemo class that tests the USMoney class.
25. Create a Date class with three integer instance variables named day, month, year. It has a constructor with three parameters for initializing
the instance variables, and it has one method named daysSinceJan1( ). It computes and returns the number of days since January 1 of the same year, including January 1 and the day in the Date object. For example, if day
is a Date object with day = 1, month = 3, and year = 2000, then the call

154 chapter 4 Introducing Classes, Objects, and methods
date.daysSinceJan1( ) should return 61 since there are 61 days between the dates of January 1, 2000, and March 1, 2000, including January 1 and March 1. Include a DateDemo class that tests the Date class. Don’t forget leap years.
26. What is the difference, if anything, between the following two implementa- tions of the method doIt( )?
void doIt(int x) {
if(x > 0)
System.out.println(“Pos”);
else
System.out.println(“Neg”);
}
void doIt(int x) {
if(x > 0) {
System.out.println(“Pos”);
return; }
System.out.println(“Neg”);
}

ChApTer
More Data Types and Operators
key skills & concepts
j Understand and create arrays
j Create multidimensional arrays
j Create irregular arrays
j Know the alternative array declaration syntax j Assign array references
j Use the length array member
j Use the for-each style for loop
j Work with strings
j Apply command-line arguments
j Use the bitwise operators
j Apply the ? operator
This chapter returns to the subject of Java’s data types and operators. It discusses arrays, the String type, the bitwise operators, and the ? ternary operator. It also covers Java’s for-each style for loop. Along the way, command-line arguments are described.
ArrAys
It is common in programming to have a group of related variables. For example, you might want to keep a list of the daily high temperatures for the month of April. Although you could use 30 separate variables for this purpose, doing so would both be clumsy and inefficient. Just imagine how difficult it would be to compute the average high temperature. You would need to first add together all 30 individual variables and then divide that value by 30. This would make for a very long, tedious expression. It would also make for an inflexible solution. Fortunately, Java supports a much better way to handle groups of related variables: the array.
An array is a collection of variables of the same type, referred to by a common name. In Java, arrays can have one or more dimensions, although the one-dimensional
155
5

156 chapter 5 More Data Types and Operators
array is the most common. Arrays offer a convenient means of grouping together related variables. For example, using an array to hold the daily high temperatures for a month is much better than using 30 separate values. Other things you might use an array to hold include a list of stock prices, the titles of your collection of programming books, or a product inventory.
The principal advantage of an array is that it organizes data in such a way that it can be easily manipulated. For example, if you have an array containing a list of account balances, it is an easy task to compute the total value by cycling through the array. Also, arrays organize data in such a way that it can be easily sorted.
Although arrays in Java can be used just like arrays in other programming lan- guages, they have one special attribute: they are implemented as objects. This fact is one reason that a discussion of arrays was deferred until objects had been introduced. By implementing arrays as objects, several important advantages are gained, not the least of which is that unused arrays can be garbage collected.
One-Dimensional Arrays
A one-dimensional array is a list of related variables. Such lists are common in pro- gramming. For example, you might use a one-dimensional array to store the account numbers of the active users on a network. To declare a one-dimensional array, you will use this general form:
type[ ] array-name = new type[size];
Here, type declares the element type of the array. (The element type is also sometimes referred to as the base type.) The element type determines the data type of each ele- ment contained in the array. The number of elements that the array will hold is deter- mined by size. Since arrays are implemented as objects, the creation of an array is a two-step process. First, you declare an array reference variable. Second, you allocate memory for the array, assigning the reference to that memory to the array variable. Thus, arrays in Java are dynamically allocated using the new operator.
Here is an example. The following creates an int array of 10 elements and links it to an array reference variable named sample.
int[] sample = new int[10];
This declaration works just like an object declaration. The sample variable holds a reference to the memory allocated by new. This memory is large enough to hold 10 elements of type int. As with objects, it is possible to break the preceding declaration in two. For example:
int[] sample;
sample = new int[10];
In this case, when sample is first created, it refers to no physical object. It is only after the second statement executes that sample is linked with an array.
An individual element within an array is accessed by use of an index. An index describes the position of an element within an array. In Java, all arrays have zero as the index of their first element. Because sample has 10 elements, it has index val- ues of 0 through 9. To index an array, specify the number of the element you want,

surrounded by square brackets. Thus, the first element in sample is sample[0], and the last element is sample[9].
An important point to understand is that each individual array element is used in the same way as a “normal” variable. For example, you can assign a value to an ele- ment, as shown here:
sample[0] = 3;
After this statement executes, the first element in sample will have the value 3. You can obtain an element’s value for use in an expression, as shown next:
2 * sample[0]
Here, if sample[0] contains 3, then the result of the preceding expression is 6.
The following program demonstrates sample by loading it with the numbers 0
through 9 and then displaying its contents.
// Demonstrate a one-dimensional array. class ArrayDemo {
public static void main(String[] args) { int[] sample = new int[10];
int i;
Java programming 157
for(i = 0; i < 10; i = i+1) sample[i] = i; Arrays are indexed from zero. for(i = 0; i < 10; i = i+1) System.out.println("This is sample[" + i + "]: " + sample[i]); } } The output from the program is shown here: This is sample[0]: 0 This is sample[1]: 1 This is sample[2]: 2 This is sample[3]: 3 This is sample[4]: 4 This is sample[5]: 5 This is sample[6]: 6 This is sample[7]: 7 This is sample[8]: 8 This is sample[9]: 9 Conceptually, the sample array looks like this: 0 1 2 3 4 5 6 7 8 9 sample [0] sample [1] sample [2] sample [3] sample [4] sample [5] sample [6] sample [7] sample [8] sample [9] 158 chapter 5 More Data Types and Operators Arrays are common in programming because they let you deal easily with large numbers of related variables. For example, the following program finds the minimum and maximum values stored in the nums array by cycling through the array using a for loop. // Find the minimum and maximum values in an array. class MinMax { public static void main(String[] args) { int[] nums = new int[10]; int min, max; nums[0] = 99; nums[1] = -10; nums[2] = 100123; nums[3] = 18; nums[4] = -978; nums[5] = 5623; nums[6] = 463; nums[7] = -9; nums[8] = 287; nums[9] = 49; min = max = nums[0]; for(int i=1; i < 10; i++) { if(nums[i] < min) min = nums[i]; if(nums[i] > max) max = nums[i]; }
System.out.println(“min and max: ” + min + ” ” + max); }
}
The output from the program is shown here:
min and max: -978 100123
Notice how the program works. It first gives both min and max the value of nums[0]. It then cycles through the nums array, one element at a time, starting with the second element. Inside the loop, if the value of nums[i] is less than min, then that value becomes the new minimum value. Similarly, if the value nums[i] is greater than max, then that value becomes the new maximum value. The process continues until all ele- ments in nums have been tested. As a result, when the loop ends, min will contain the smallest value in the array and max will contain the largest.
In the preceding program, the nums array was given values by hand, using 10 separate assignment statements. Although perfectly correct, there is an easier way to accomplish this. Arrays can be initialized when they are created. The general form for initializing a one-dimensional array is shown here:
type[ ] array-name = { val1, val2, val3,…, valN };
Here, the initial values are specified by val1 through valN. They are assigned in sequence, left to right, in index order. Java automatically allocates an array large

Java programming 159 enough to hold the initializers that you specify. There is no need to explicitly use the
new operator. For example, here is a better way to write the MinMax program:
// Use array initializers. class MinMax2 {
public static void main(String[] args) { int[] nums = { 99, -10, 100123, 18, -978,
5623, 463, -9, 287, 49 };
int min, max;
min = max = nums[0]; for(int i=1; i < 10; i++) { if(nums[i] < min) min = nums[i]; if(nums[i] > max) max = nums[i]; }
System.out.println(“Min and max: ” + min + ” ” + max); }
}
Array initializers
Array boundaries are strictly enforced in Java; it is a run-time error to overrun or underrun the end of an array. If you want to confirm this for yourself, try the following program that purposely overruns an array.
// Demonstrate an array overrun. class ArrayErr {
public static void main(String[] args) { int[] sample = new int[10];
int i;
// generate an array overrun for(i = 0; i < 100; i++) sample[i] = i; } } As soon as i reaches 10, an ArrayIndexOutOfBoundsException is generated and the program is terminated. Try This 5-1 Sorting an Array Bubble.java Because a one-dimensional array organizes data into an indexable linear list, it makes it easy to sort. In this project you will learn a simple way to sort an array. As you may know, there are a number of different sorting algorithms. There are the quicksort, the shaker sort, and the shell sort, to name just three. However, the best known, simplest, and easiest to understand is called the bubble sort. Although the bubble sort is not very efficient for most cases—in fact, its performance is generally unacceptable for sorting large arrays—it can sometimes be effective for sorting small arrays. It is used here, however, because it offers an excellent example that demonstrates the power of arrays. 160 chapter 5 More Data Types and Operators StEp-By-StEp 1. Create a file called Bubble.java. 2. The bubble sort gets its name from the way it performs the sorting opera- tion. It uses the repeated comparison and, if necessary, exchange of adjacent elements in the array. In this process, small values move toward one end and large ones toward the other end. The bubble sort operates by making several passes through the array, exchanging out-of-place elements when necessary. Here is the code that forms the core of the bubble sort. The array being sorted is called nums. // This is the Bubble sort. for(a=1; a < size; a++) for(b=size-1; b >= a; b–) {
if(nums[b-1] > nums[b]) { // if out of order
// exchange elements t = nums[b-1]; nums[b-1] = nums[b]; nums[b] = t;
} }
Notice that the sort relies on two for loops. The inner loop checks adjacent elements in the array, looking for out-of-order elements. When an out-of-order element pair is found, the two elements are exchanged. With each pass, the smallest of the remaining elements moves into its proper location. The outer loop causes this process to repeat until the entire array has been sorted.
3. Here is the entire Bubble program: /*
Try This 5-1
Demonstrate the Bubble sort. */
class Bubble {
public static void main(String[] args) {
int[] nums = { 99, -10, 100123, 18, -978, 5623, 463, -9, 287, 49 };
int a, b, t; int size;
size = 10; // number of elements to sort
// display original array System.out.print(“Original array is:”); for(int i=0; i < size; i++) System.out.print(" " + nums[i]); System.out.println(); Java programming 161 // This is the Bubble sort. for(a=1; a < size; a++) for(b=size-1; b >= a; b–) {
if(nums[b-1] > nums[b]) { // if out of order
// exchange elements t = nums[b-1]; nums[b-1] = nums[b]; nums[b] = t;
} }
// display sorted array System.out.print(“Sorted array is:”); for(int i=0; i < size; i++) System.out.print(" " + nums[i]); System.out.println(); } } The output from the program is shown here: Original array is: 99 -10 100123 18 -978 5623 463 -9 287 49 Sorted array is: -978 -10 -9 18 49 99 287 463 5623 100123 4. As mentioned, although the bubble sort can be useful for small arrays, it is not efficient when used on larger ones. One of the best general-purpose sort- ing algorithms is the quicksort. The quicksort, however, relies on features of Java that you have not yet learned about. MulTiDiMensiOnAl ArrAys Although the one-dimensional array is used extensively in programming, multidimen- sional arrays (arrays of two or more dimensions) are certainly not rare. In Java, a multi- dimensional array is an array of arrays. Two-Dimensional Arrays The simplest form of the multidimensional array is the two-dimensional array. A two- dimensional array is, in essence, a list of one-dimensional arrays. A two-dimensional array can be thought of as creating a table of data, with the data organized by row and column. An individual item of data is accessed by specifying its row and column position. 162 chapter 5 More Data Types and Operators To declare a two-dimensional array, you must specify the size of both dimensions. For example, here table is declared to be a two-dimensional array of int with the size 10 by 20: int[][] table = new int[10][20]; Pay careful attention to the declaration. Unlike some other computer languages, which use commas to separate the array dimensions, Java places each dimension in its own set of brackets. Similarly, to access point 3, 5 of array table, you would use table[3][5]. In the next example, a two-dimensional array is loaded with the numbers 1 through 12. // Demonstrate a two-dimensional array. class TwoD { public static void main(String[] args) { int t, i; int[][] table = new int[3][4]; for(t=0; t < 3; ++t) { for(i=0; i < 4; ++i) { table[t][i] = (t*4)+i+1; System.out.print(table[t][i] + " "); } System.out.println(); } } } In this example, table[0][0] will have the value 1, table[0][1] the value 2, table[0][2] the value 3, and so on. The value of table[2][3] will be 12. Conceptually, the array will look like that shown in Figure 5-1. Notice how the data is organized into a tabular form. 0 1 2 3 left index table[1][2] right index 1 2 3 4 5 6 7 8 9 10 11 12 0 1 2 Figure 5-1: Conceptual view of the table array by the TwoD program. irregular Arrays When you allocate memory for a multidimensional array, you need to specify only the memory for the first (leftmost) dimension. You can allocate the remaining dimensions separately. For example, the following code allocates memory for the first dimension of table when it is declared. It allocates the second dimension manually. int[][] table = new int[3][]; table[0] = new int[4]; table[1] = new int[4]; table[2] = new int[4]; Although there is no advantage to individually allocating the second-dimension arrays in this situation, there can be in others. For example, when you allocate dimensions separately, you do not need to allocate the same number of elements for each index. Since multidimensional arrays are implemented as arrays of arrays, the length of each array is under your control. For example, assume you are writing a program that stores the number of pas- sengers who ride an airport shuttle. If the shuttle runs 10 times a day during the week and twice a day on Saturday and Sunday, you could use the riders array shown in the following program to store the information. Notice that the length of the second dimension for the first five indices is 10 and the length of the second dimension for the last two indices is 2. // Manually allocate differing size second dimensions. class Ragged { public static void main(String[] args) { int[][] riders = new int[7][]; riders[0] riders[1] riders[2] riders[3] riders[4] riders[5] riders[6] int i, j; // fabricate some data for(i=0; i < 5; i++) for(j=0; j < 10; j++) riders[i][j] = i + j + 10; for(i=5; i < 7; i++) for(j=0; j < 2; j++) riders[i][j] = i + j + 10; = new int[10]; = new int[10]; = new int[10]; = new int[10]; = new int[10]; = new int[2]; = new int[2]; Here, the second dimensions are 10 elements long. But here, they are 2 elements long. Java programming 163 System.out.println("Riders per trip during the week:"); for(i=0; i < 5; i++) { for(j=0; j < 10; j++) System.out.print(riders[i][j] + " "); System.out.println(); 164 chapter 5 More Data Types and Operators } System.out.println(); System.out.println("Riders per trip on the weekend:"); for(i=5; i < 7; i++) { for(j=0; j < 2; j++) System.out.print(riders[i][j] + " "); System.out.println(); } } } The output from the program is shown here. Riders per trip during the week: 10 11 12 13 14 15 16 17 18 19 11 12 13 14 15 16 17 18 19 20 12 13 14 15 16 17 18 19 20 21 13 14 15 16 17 18 19 20 21 22 14 15 16 17 18 19 20 21 22 23 Riders per trip on the weekend: 15 16 16 17 The use of irregular (or ragged) multidimensional arrays is not appropriate for all situ- ations. Often, a regular two-dimensional array is the best choice. However, irregular arrays can be quite effective in some situations, such as the example just shown. In general, if you need a very large two-dimensional array that is sparsely populated (that is, one in which few of the elements will be used), an irregular array might be a perfect solution. Arrays of Three or More Dimensions Java allows arrays with more than two dimensions. Here is the general form of a multi- dimensional array declaration: type[ ][ ]...[ ] name = new type[size1][size2]...[sizeN]; For example, the following declaration creates a 4 × 10 × 3 three-dimensional integer array. int[][][] multidim = new int[4][10][3]; Given this array, the following statement assigns the value 10 to element 2, 7, 1: multidim[2][7][1] = 10; initializing Multidimensional Arrays A multidimensional array can be initialized by enclosing each dimension’s initializer list within its own set of braces. For example, the general form of array initialization for a two-dimensional array is shown here: type[ ] [ ] array_name = { { val, val, val, ..., val }, { val, val, val, ..., val }, . . . { val, val, val, ..., val } }; Here, val indicates an initialization value. Each inner block designates a row. Within each row, the first value will be stored in the first position of the subarray, the second value in the second position, and so on. Notice that commas separate the initializer blocks and that a semicolon follows the closing }. For example, the following program initializes an array called sqrs with the num- bers 1 through 10 and their squares. // Initialize a two-dimensional array. class Squares { public static void main(String[] args) { int[][] sqrs = { Java programming 165 { 1, 1 }, { 2, 4 }, { 3, 9 }, { 4, 16 }, { 5, 25 }, { 6, 36 }, { 7, 49 }, { 8, 64 }, { 9, 81 }, { 10, 100 } }; int i, j; Notice how each row has its own set of initializers. for(i=0; i < 10; i++) { for(j=0; j < 2; j++) System.out.print(sqrs[i][j] + " "); System.out.println(); } } } Here is the output from the program: 11 24 39 4 16 5 25 6 36 166 chapter 5 More Data Types and Operators 7 49 8 64 9 81 10 100 1. For multidimensional arrays, how is each dimension specified? 2. In a two-dimensional array, which is an array of arrays, can the length of each array differ? 3. How are multidimensional arrays initialized? AlTernATive ArrAy DeClArATiOn synTAx There is a second form that can be used to declare an array: type var-name[ ]; Here, the square brackets follow the name of the array variable, not the type specifier. For example, the following two declarations are equivalent: int counter[] = new int[3]; int[] counter = new int[3]; The following declarations are also equivalent: char table[][] = new char[3][4]; char[][] table = new char[3][4]; This alternative declaration lets you declare both array and nonarray variables of the same type in a single declaration. For example, int alpha, beta[], gamma; Here, alpha and gamma are of type int, but beta is an array of int. Assigning ArrAy reFerenCes As with other objects, when you assign one array reference variable to another, you are simply changing what object that variable refers to. You are not causing a copy of Answers: 1. Each dimension is specified within its own set of square brackets. 2. Yes. 3. Multidimensional arrays are initialized by putting each subarray’s initializers inside their own set of braces. progress Check Java programming 167 the array to be made, nor are you causing the contents of one array to be copied to the other. For example, consider this program: // Assigning array reference variables. class AssignARef { public static void main(String[] args) { int i; int[] nums1 = new int[10]; int[] nums2 = new int[10]; for(i=0; i < 10; i++) nums1[i] = i; for(i=0; i < 10; i++) nums2[i] = -i; System.out.print("Here is nums1: "); for(i=0; i < 10; i++) System.out.print(nums1[i] + " "); System.out.println(); System.out.print("Here is nums2: "); for(i=0; i < 10; i++) System.out.print(nums2[i] + " "); System.out.println(); nums2 = nums1; // now nums2 refers to nums1 System.out.print("Here is nums2 after assignment: "); for(i=0; i < 10; i++) System.out.print(nums2[i] + " "); System.out.println(); // now operate on nums1 array through nums2 nums2[3] = 99; System.out.print("Here is nums1 after change through nums2: "); for(i=0; i < 10; i++) System.out.print(nums1[i] + " "); System.out.println(); } } The output from the program is shown here: Here is nums1: 0 1 2 3 4 5 6 7 8 9 Here is nums2: 0 -1 -2 -3 -4 -5 -6 -7 -8 -9 Here is nums2 after assignment: 0 1 2 3 4 5 6 7 8 9 Here is nums1 after change through nums2: 0 1 2 99 4 5 6 7 8 9 Assign an array reference. 168 chapter 5 More Data Types and Operators This example creates two arrays and gives them initial values. Thus, at the start, nums1 and nums2 refer to separate and distinct arrays. Next, nums1 is assigned to nums2. After this assignment, both nums1 and nums2 now refer to the same array. Therefore, changing the array through nums2 (as the example does) also affects the array referred to by nums1 because they both refer to the same array. using The length MeMber Because arrays are implemented as objects, each array has associated with it a length instance variable that contains the number of elements that the array can hold. In other words, length contains the size of the array. Here is a program that demonstrates this property: // Use the length array member. class LengthDemo { public static void main(String[] args) { int[] list = new int[10]; int[] nums = { 1, 2, 3 }; int[][] table = { // a variable-length table {1, 2, 3}, {4, 5}, {6, 7, 8, 9} }; System.out.println("length of list is " + list.length); System.out.println("length of nums is " + nums.length); System.out.println("length of table is " + table.length); System.out.println("length of table[0] is " + table[0].length); System.out.println("length of table[1] is " + table[1].length); System.out.println("length of table[2] is " + table[2].length); System.out.println(); // use length to initialize list for(int i=0; i < list.length; i++) list[i] = i * i; System.out.print("Here is list: "); // now use length to display list for(int i=0; i < list.length; i++) System.out.print(list[i] + " "); System.out.println(); } } This program displays the following output: length of list is 10 length of nums is 3 length of table is 3 length of table[0] is 3 Use length to control a for loop. length of table[1] is 2 length of table[2] is 4 Here is list: 0 1 4 9 16 25 36 49 64 81 Pay special attention to the way length is used with the two-dimensional array table. As explained, a two-dimensional array is an array of arrays. Thus, when the expression table.length is used, it obtains the number of arrays stored in table, which is 3 in this case. To obtain the length of any individual array in table, you will use an expression such as this, table[0].length which, in this case, obtains the length of the first array. One other thing to notice in LengthDemo is the way that list.length is used by the for loops to govern the number of iterations that take place. Since each array carries with it its own length, you can use this information rather than manually keeping track of an array’s size. Keep in mind that the value of length has nothing to do with the number of elements that are actually in use. It contains the number of elements that the array is capable of holding. The inclusion of the length member simplifies many algorithms by making certain types of array operations easier—and safer—to perform. For example, the following program uses length to copy one array to another while preventing an array overrun and the run-time error that would result. // Use length variable to help copy an array. class ACopy { public static void main(String[] args) { int i; int[] nums1 = new int[10]; int[] nums2 = new int[10]; for(i=0; i < nums1.length; i++) Java programming 169 nums1[i] = i; Use length to compare array sizes. // copy nums1 to nums2 if(nums2.length >= nums1.length)
for(i = 0; i < nums1.length; i++) nums2[i] = nums1[i]; for(i=0; i < nums2.length; i++) System.out.print(nums2[i] + " "); } } Here, length helps perform two important functions. First, it is used to confirm that the target array is large enough to hold the contents of the source array. Second, it pro- vides the termination condition of the for loop that performs the copy. Of course, in 170 chapter 5 More Data Types and Operators this simple example, the sizes of the arrays are easily known, but this same approach can be applied to a wide range of more challenging situations. One more point about length: it is read-only. Therefore, you cannot assign it a new value. This means that you can’t change the length of an array by changing the value of length. Try This 5-2 A Simple Stack Class SimpleStackDemo.java One of the foundational elements of programming is the data structure. Although we will look more closely at data structures in Part Three, when those supported by the Java library are described, you now know enough about Java to be introduced to the concept. At its core, a data structure provides a means of organizing data. The simplest data structure is the array. As you have just seen, an array is a linear list that supports random access to its elements. Arrays are often used as the underpinning for more sophisticated data structures, one of which is the stack. A stack is a list in which ele- ments can be accessed in last-in, first-out (LIFO) order only. Thus, a stack is like a stack of plates on a table—the first down is the last to be used. Furthermore, a new plate can be added only to the top of the stack, and when a plate is needed, it must be removed from the top. One thing that makes data structures such as stacks especially interesting is that they combine storage for information with the methods that access that information. Such a combination is, obviously, an excellent choice for encap- sulation within a class. In fact, this is the way such data structures are normally implemented. In this project, you will implement a simple stack. The stack is chosen for two reasons. First, a stack represents one of the quintessential examples of object-ori- ented programming because it shows a compact, yet realistic, application. Second, because our implementation is based on an array, it provides another example of array handling. Here you will create an initial implementation of the stack. Subsequent chapters will expand and enhance its capabilities as we introduce new elements of Java. For simplicity, the stack developed here stores characters, but it can be easily adapted to store other types of data. In general, stacks support two basic operations, traditionally called push and pop. Each push operation puts a new element on the top of the stack. Each pop operation retrieves the top element from the stack. Thus, a new element is added to the stack by putting it on the top, and an element is removed from the stack by tak- ing it off the top. No other access to a stack’s elements is supported. For example, you can’t remove an element from the middle of a stack. Furthermore, popping an element from the stack consumes that element. In other words, once an element has been retrieved, it cannot be retrieved again. Java programming 171 A stack has two boundary conditions: full and empty. A stack is full when there is no space available to store another item. It is empty when all of its elements have been removed. One last point: As you will see in Part Three, the Java library provides a power- ful, full-featured stack class that is part of the Collections Framework. Since our stack class is much simpler, we will call it SimpleStack. StEp-By-StEp 1. Create a file called SimpleStackDemo.java. 2. As explained, an array will provide the underlying storage for the stack. Since this version of the stack stores characters, a char array is used. This array is accessed through an index that indicates the top of the stack. With this in mind, begin creating the SimpleStack class with these lines: class SimpleStack { char[] data; // this array holds the stack int tos; // index of top of stack Here, data will refer to the array that holds the stack, and tos is the index of the top of the stack. In our implementation, the top of the stack indicates the next location at which a new item will be stored. 3. Add the constructor for SimpleStack shown here. It creates an empty stack of a given size. // Construct an empty stack given its size. SimpleStack(int size) { data = new char[size]; // create the array to hold the stack tos = 0; } The constructor creates an array of the specified size to hold the stack and assigns to data a reference to that array. Since the stack is initially empty, tos is initialized to zero. As just explained, tos is the index at which the next item will be stored. 4. SimpleStack uses four methods: push( ), pop( ), isFull( ), and isEmpty( ). These provide the basic functionality of the stack: putting an item on the stack, removing an item from the stack, and determining when the stack is full or empty. The following steps describe them. 5. Add the push( ) method, which puts a new element on the top of the stack. It is shown here: // Push a character onto the stack. void push(char ch) { if(isFull()) { System.out.println(" -- Stack is full."); return; } 172 chapter 5 More Data Types and Operators data[tos] = ch; tos++; } Here is how it works. First, a check is made to ensure that the stack is not full. This is done by calling the isFull( ) method. If the stack is full, then a message is displayed and the method returns. Otherwise, ch is added to the top of the stack by assigning it to the index indicated by tos, and then tos is incremented. As explained, tos contains the index at which the next item will be stored. 6. Add the pop( ) method, shown next. It removes and returns the top element in the stack. // Pop a character from the stack. char pop() { if(isEmpty()) { System.out.println(" -- Stack is empty."); return (char) 0; // a placeholder value } tos--; return data[tos]; } When pop( ) is called, it first checks if the stack is empty by calling isEmpty( ). If the stack is empty, a message is displayed and a placeholder value of 0 is returned. If the stack is not empty, then tos is decremented and the character at that index is returned. 7. Before moving on, it is important to point out that displaying a message inside push( ) and pop( ) when a stack-full or a stack-empty condition oc- curs is simply for demonstration purposes at this time. Such an approach would never be used in a real-world application. The same applies to pop( ) returning a placeholder value when the stack is empty. Later, in Chapter 10, you will learn a better way to handle errors. Until then, this approach is sufficient. 8. The isFull( ) method, shown here, returns true when the stack is full. Add it to SimpleStack. // Return true if the stack is full. boolean isFull() { return tos==data.length; } The stack is full when tos is equal to the length of the array. Remember, array indexing begins at zero, so data.length is one beyond the last element in the array. Java programming 173 9. Conclude SimpleStack by adding the isEmpty( ) method, shown next. It returns true when the stack is empty. // Return true if the stack is empty. boolean isEmpty() { return tos==0; } } The stack is empty when tos equals zero. This will be the case only when either no elements have yet been added to the stack or the last element has been removed. 10. Here is the entire SimpleStack class along with a class called SimpleStackDemo.java that demonstrates it. /* Try This 5-2 A simple stack class for characters. */ class SimpleStack { char[] data; // this array holds the stack int tos; // index of top of stack // Construct an empty stack given its size. SimpleStack(int size) { data = new char[size]; // create the array to hold the stack tos = 0; } // Push a character onto the stack. void push(char ch) { if(isFull()) { System.out.println(" -- Stack is full."); return; } data[tos] = ch; tos++; } // Pop a character from the stack. char pop() { if(isEmpty()) { System.out.println(" -- Stack is empty."); return (char) 0; // a placeholder value } 174 chapter 5 More Data Types and Operators tos--; return data[tos]; } // Return true if the stack is empty. boolean isEmpty() { return tos==0; } // Return true if the stack is full. boolean isFull() { return tos==data.length; } } // Demonstrate the SimpleStack class. class SimpleStackDemo { public static void main(String[] args) { int i; char ch; System.out.println("Demonstrate SimpleStack\n"); // Construct 10-element empty stack. SimpleStack stack = new SimpleStack(10); System.out.println("Push 10 items onto a 10-element stack."); // Push the letters A through J onto the stack. System.out.print("Pushing: "); for(ch = 'A'; ch < 'K'; ch++) { System.out.print(ch); stack.push(ch); } System.out.println("\nPop those 10 items from stack."); // Now, pop the characters off the stack. // Notice that order will be the reverse of those pushed. System.out.print("Popping: "); for(i=0; i < 10; i++) { ch = stack.pop(); System.out.print(ch); } System.out.println("\n\nNext, use isEmpty() and isFull() " + "to fill and empty the stack."); // Push the letters until the stack is full. System.out.print("Pushing: "); Java programming 175 for(ch = 'A'; !stack.isFull(); ch++) { System.out.print(ch); stack.push(ch); } System.out.println(); // Now, pop the characters off the stack until it is empty. System.out.print("Popping: "); while(!stack.isEmpty()) { ch = stack.pop(); System.out.print(ch); } System.out.println("\n\nNow, use a 4-element stack to generate" + " some errors."); // Generate some errors. SimpleStack smallStack = new SimpleStack(4); // Attempt to push 5 characters onto a 4-character stack System.out.print("Pushing: "); for(ch = '1'; ch < '6'; ch++) { System.out.print(ch); smallStack.push(ch); } // Attempt to pop 5 elements from a 4-character stack. System.out.print("Popping: "); for(i=0; i < 5; i++) { ch = smallStack.pop(); System.out.print(ch); } } } 11. The output produced by the program is shown here: Demonstrate SimpleStack Push 10 items onto a 10-element stack. Pushing: ABCDEFGHIJ Pop those 10 items from stack. Popping: JIHGFEDCBA Next, use isEmpty() and isFull() to fill and empty the stack. Pushing: ABCDEFGHIJ Popping: JIHGFEDCBA 176 chapter 5 More Data Types and Operators Now, use a 4-element stack to generate some errors. Pushing: 12345 -- Stack is full. Popping: 4321 -- Stack is empty. Notice in the output that elements are popped from the stack in the opposite order in which they are pushed onto the stack. Remember, a stack uses last-in, first-out ordering. Also notice how isFull( ) and isEmpty( ) can be used to manage a stack to avoid stack-full and stack-empty error conditions. 12. Before moving on, you might want to try an experiment. Although SimpleStack stores characters, its logic will work with other types of data. Try modifying SimpleStack so that it stores another type of data, such as int or double. The FOr-eACh sTyle for lOOp When working with arrays, it is common to encounter situations in which each ele- ment in an array must be examined, from start to finish. For example, to compute the sum of the values held in an array, each element in the array must be examined. The same situation occurs when computing an average, searching for a value, copying an array, and so on. Because such “start to finish” operations are so common, Java defines a second form of the for loop that streamlines them. The second form of the for implements a “for-each” style loop. A for-each loop cycles through a collection of objects, such as an array, in strictly sequential fashion, from start to finish. In recent years, for-each style loops have gained popularity among both computer language designers and programmers. Originally, Java did not offer a for-each style loop, but it was added with the JDK 5 release. The for-each style of for is also referred to as the enhanced for loop. Both terms are used in this book. The general form of the for-each style for is shown here. for(type itr-var : collection) statement-block Here, type specifies the type, and itr-var specifies the name of an iteration variable that will receive the elements from a collection, one at a time, from beginning to end. The collection being cycled through is specified by collection. Various types of collec- tions can be used with the for, but the only type used in this chapter is the array. With each iteration of the loop, the next element in the collection is retrieved and stored in itr-var. The loop repeats until all elements in the collection have been obtained. Thus, when iterating over an array of size N, the enhanced for obtains the elements in the array in index order, from 0 to N–1. Because the iteration variable receives values from the collection, type must be the same as (or compatible with) the elements stored in the collection. Thus, when iterat- ing over arrays, type must be compatible with the element type of the array. To understand the motivation behind a for-each style loop, consider the type of for loop that it is designed to replace. The following fragment uses a traditional for loop to compute the sum of the values in an array: int[] nums = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int sum = 0; for(int i=0; i < 10; i++) sum += nums[i]; To compute the sum, each element in nums is read, in order, from start to finish. Thus, the entire array is read in strictly sequential order. This is accomplished by manually indexing the nums array by i, the loop control variable. Furthermore, the starting and ending value for the loop control variable, and its increment, must be explicitly specified. The for-each style for automates the preceding loop. Specifically, it eliminates the need to establish a loop counter, specify a starting and ending value, and manually index the array. Instead, it automatically cycles through the entire array, obtaining one element at a time, in sequence, from beginning to end. For example, here is the preceding fragment rewritten using a for-each version of the for: int[] nums = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int sum = 0; for(int x : nums) sum += x; With each pass through the loop, x is automatically given a value equal to the next element in nums. Thus, on the first iteration, x contains 1, on the second iteration, x contains 2, and so on. Not only is the syntax streamlined, it also prevents boundary errors. Here is an entire program that demonstrates the for-each version of the for just described: // Use a for-each style for loop. class ForEach { public static void main(String[] args) { int[] nums = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int sum = 0; Java programming 177 Ask the expert Q Aside from arrays, what other types of collections can the for-each style for loop cycle through? AOne of the most important uses of the for-each style for is to cycle through the contents of a collection defined by the Collections Framework. The Collections Framework is a set of classes that implement various data structures, such as lists, vectors, sets, and maps. A discussion of the Collections Framework is found in Chapter 25. 178 chapter 5 More Data Types and Operators // Use for-each style for to display and sum the values. for(int x : nums) { System.out.println("Value is: " + x); sum += x; } A for-each style for loop System.out.println("Summation: " + sum); } } The output from the program is shown here: Value is: 1 Value is: 2 Value is: 3 Value is: 4 Value is: 5 Value is: 6 Value is: 7 Value is: 8 Value is: 9 Value is: 10 Summation: 55 As this output shows, the for-each style for automatically cycles through an array in sequence from the lowest index to the highest. Although the for-each for loop iterates until all elements in an array have been examined, it is possible to terminate the loop early by using a break statement. For example, this loop sums only the first five elements of nums. // Sum only the first 5 elements. for(int x : nums) { System.out.println("Value is: " + x); sum += x; if(x == 5) break; // stop the loop when 5 is obtained } There is one important point to understand about the for-each style for loop. Its itera- tion variable is “read-only” as it relates to the underlying array. An assignment to the iteration variable has no effect on the underlying array. In other words, you can’t change the contents of the array by assigning the iteration variable a new value. For example, consider this program: // The for-each loop is essentially read-only. class NoChange { public static void main(String[] args) { int[] nums = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; for(int x : nums) { System.out.print(x + " "); x = x * 10; // no effect on nums This does not change nums. } System.out.println(); for(int x : nums) System.out.print(x + " "); System.out.println(); } } The first for loop increases the value of the iteration variable by a factor of 10. However, this assignment has no effect on the underlying array nums, as the output from the second for loop illustrates. 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 As you can see, the nums array is unchanged. iterating Over Multidimensional Arrays The enhanced for also works on multidimensional arrays. Remember, however, that in Java, multidimensional arrays consist of arrays of arrays. (For example, a two- dimensional array is an array of one-dimensional arrays.) This is important when iterating over a multidimensional array because each iteration obtains the next array, not an individual element. Furthermore, the iteration variable in the for loop must be compatible with the type of array being obtained. For example, in the case of a two- dimensional array, the iteration variable must be a reference to a one-dimensional array. In general, when using the for-each for to iterate over an array of N dimensions, the objects obtained will be arrays of N–1 dimensions. To understand the implications of this, consider the following program. It uses nested for loops to obtain the elements of a two-dimensional array in row order, from first to last. Notice how x is declared. // Use for-each style for on a two-dimensional array. class ForEach2 { public static void main(String[] args) { int sum = 0; int[][] nums = new int[3][5]; // give nums some values for(int i = 0; i < 3; i++) for(int j=0; j < 5; j++) nums[i][j] = (i+1)*(j+1); // Use for-each for loop to display and sum the values. for(int[] x : nums) { for(int y : x) { System.out.println("Value is: " + y); Java programming 179 sum += y; } Notice how x is declared. 180 chapter 5 More Data Types and Operators } System.out.println("Summation: " + sum); } } The output from this program is shown here: Value is: 1 Value is: 2 Value is: 3 Value is: 4 Value is: 5 Value is: 2 Value is: 4 Value is: 6 Value is: 8 Value is: 10 Value is: 3 Value is: 6 Value is: 9 Value is: 12 Value is: 15 Summation: 90 In the program, pay special attention to this line: for(int[] x : nums) { Notice how x is declared. It is a reference to a one-dimensional array of integers. This is necessary because each iteration of the for obtains the next array in nums, begin- ning with the array specified by nums[0]. The inner for loop then cycles through each of these arrays, displaying the values of each element. Applying the enhanced for Since the for-each style for can only cycle through an array sequentially, from start to finish, you might think that its use is limited. However, this is not true. A large number of algorithms require exactly this mechanism. One of the most common is searching. For example, the following program uses a for loop to search an unsorted array for a value. It stops if the value is found. // Search an array using for-each style for. class Search { public static void main(String[] args) { int[] nums = { 6, 8, 3, 7, 5, 6, 1, 4 }; int val = 5; boolean found = false; // Use for-each style for to search nums for val. for(int x : nums) { if(x == val) { found = true; break; } } if(found) System.out.println("Value found!"); } } The for-each style for is an excellent choice in this application because searching an unsorted array involves examining each element in sequence. Other types of applica- tions that benefit from for-each style loops include computing an average, finding the minimum or maximum of a set, looking for duplicates, and so on. 1. What does the for-each style for loop do? 2. Given an array of double called nums, show a for-each style for that cycles through it. 3. Can the for-each style for cycle through the contents of a multidimensional array? sTrings From a day-to-day programming standpoint, one of the most important of Java’s data types is String. String defines and supports character strings. In many other program- ming languages a string is an array of characters. This is not the case with Java. In Java, strings are objects. Actually, you have been using the String class since Chapter 1, but you did not know it. When you create a string literal, you are actually creating a String object. For example, in the statement System.out.println("In Java, strings are objects."); the string “In Java, strings are objects.” is automatically made into a String object by Java. Thus, use of the String class has been “below the surface” in the preceding programs. In the following sections you will learn to handle it explicitly. Be aware, however, that the String class is quite large, and we will only scratch its surface here. It is examined in detail in Part Three. Answers: 1. A for-each style for cycles through the contents of a collection, such as an array, from start to finish. 2. for(double d : nums) ... 3. Yes; however, each iteration obtains the next subarray. Java programming 181 progress Check 182 chapter 5 More Data Types and Operators Constructing strings You can construct a String just like you construct any other type of object: by using new and calling the String constructor. For example: String str = new String("Hello"); This creates a String object called str that contains the character string "Hello". You can also construct a String from another String. For example: String str = new String("Hello"); String str2 = new String(str); After this sequence executes, str2 will also contain the character string "Hello". Another easy way to create a String is shown here: String str = "Java strings are powerful."; In this case, str is initialized to the character sequence "Java strings are powerful." Once you have created a String object, you can use it anywhere that a quoted string is allowed. For example, you can use a String object as an argument to println( ), as shown in this example: // Introduce String. class StringDemo { public static void main(String[] args) { // declare strings in various ways String str1 = new String("Java strings are objects."); String str2 = "They are constructed various ways."; String str3 = new String(str2); System.out.println(str1); System.out.println(str2); System.out.println(str3); } } The output from the program is shown here: Java strings are objects. They are constructed various ways. They are constructed various ways. Operating on strings The String class contains several methods that operate on strings. Here are the general forms for a few: boolean equals(str) Returns true if the invoking string contains the same character sequence as str. int length( ) Returns the number of characters in the string. char charAt(index) Returns the character at the index specified by index. Here is a program that demonstrates these methods: // Some String operations. class StrOps { public static void main(String[] args) { String str1 = "When it comes to Web programming, Java is #1."; String str2 = new String(str1); String str3 = "Java strings are powerful."; int result, idx; char ch; System.out.println("Length of str1: " + str1.length()); // display str1, one char at a time. for(int i=0; i < str1.length(); i++) System.out.print(str1.charAt(i)); System.out.println(); if(str1.equals(str2)) System.out.println("str1 equals str2"); else System.out.println("str1 does not equal str2"); if(str1.equals(str3)) System.out.println("str1 equals str3"); else System.out.println("str1 does not equal str3"); result = str1.compareTo(str3); if(result == 0) System.out.println("str1 and str3 are equal"); else if(result < 0) System.out.println("str1 is less than str3"); else System.out.println("str1 is greater than str3"); // assign a new string to str2 str2 = "One Two Three One"; idx = str2.indexOf("One"); System.out.println("Index of first occurrence of One: " + idx); Java programming 183 int compareTo(str) Returns less than zero if the invoking string is less than str, greater than zero if the invoking string is greater than str, and zero if the strings are equal. int indexOf(str) Searches the invoking string for the substring specified by str. Returns the index of the first match or –1 on failure. int lastIndexOf(str) Searches the invoking string for the substring specified by str. Returns the index of the last match or –1 on failure. 184 chapter 5 More Data Types and Operators idx = str2.lastIndexOf("One"); System.out.println("Index of last occurrence of One: " + idx); } } This program generates the following output: Length of str1: 45 When it comes to Web programming, Java is #1. str1 equals str2 str1 does not equal str3 str1 is greater than str3 Index of first occurrence of One: 0 Index of last occurrence of One: 14 You can concatenate (join together) two strings using the + operator. For example, this sequence String str1 = "One"; String str2 = "Two"; String str3 = "Three"; String str4 = str1 + str2 + str3; initializes str4 with the string "OneTwoThree". Ask the expert Q Why does String define the equals( ) method? Can’t I just use = =? AThe equals( ) method compares the character sequences of two String objects for equality. Applying the = = to two String references simply determines whether the two references refer to the same object. Arrays of strings Like any other data type, strings can be assembled into arrays. For example: // Demonstrate String arrays. class StringArrays { public static void main(String[] args) { String[] strs = { "This", "is", "a", "test." }; System.out.println("Original array: "); for(String s : strs) System.out.print(s + " "); System.out.println("\n"); // change a string in the array strs[1] = "was"; strs[3] = "test, too!"; System.out.println("Modified array: "); for(String s : strs) System.out.print(s + " "); } } Here is the output from this program: Original array: This is a test. Modified array: This was a test, too! In the program, pay special attention to this line: String[] strs = { "This", "is", "a", "test." }; It creates an array of strings called strs that consists of the strings specified in its ini- tializer list. As the program illustrates, other than containing strings, strs works just like any other array in Java. strings Are immutable The contents of a String object are immutable. That is, once created, the character sequence that makes up the string cannot be altered. This restriction allows Java to implement strings more efficiently. Even though this probably sounds like a serious drawback, it isn’t. When you need a string that is a variation on one that already exists, simply create a new string that contains the desired changes. Since unused String objects are automatically garbage collected, you don’t even need to worry about what happens to the discarded strings. It must be made clear, however, that a String reference variable may, of course, be assigned a reference to a differ- ent String object. It is just that the contents of a specific String object cannot be changed after it is created. Java programming 185 Ask the expert Q You say that once created, String objects are immutable. I understand that, from a practical point of view, this is not a serious restriction, but what if I want to create a string that can be changed? AYou’re in luck because the Java library provides classes that support mutable strings. One is called StringBuffer. It adds methods that modify the string it holds. For example, in addition to the charAt( ) method, which obtains the charac- ter at a specific location, StringBuffer defines setCharAt( ), which sets a character within the string. However, for most purposes you will want to use String, not StringBuffer. 186 chapter 5 More Data Types and Operators To fully understand why immutable strings are not a hindrance, we will use another of String’s methods: substring( ). The substring( ) method returns a new string that contains a specified portion of the invoking string. Because a new String object is manufactured that contains the substring, the original string is unaltered, and the rule of immutability remains intact. The form of substring( ) that we will be using is shown here: String substring(int startIndex, int endIndex) Here, startIndex specifies the beginning index, and endIndex specifies the stopping point. The string returned contains all the characters from the beginning index, up to, but not including, the ending index. Here is a program that demonstrates substring( ) and the principle of immutable strings: // Use substring(). class SubStr { public static void main(String[] args) { String orgstr = "Java makes the Web move."; // construct a substring String substr = orgstr.substring(5, 18); System.out.println("orgstr: " + orgstr); System.out.println("substr: " + substr); } } Here is the output from the program: orgstr: Java makes the Web move. substr: makes the Web This creates a new string that contains the desired substring. As you can see, the original string orgstr is unchanged, and substr contains the sub- string. using a string to Control a switch statement As mentioned in Chapter 3, prior to JDK 7, a switch had to be controlled by an integer type, such as int or char. This precluded the use of a switch in situations in which one of several actions is selected based on the contents of a string. Instead, an if-else-if ladder was the typical solution. Although an if-else-if ladder is semanti- cally correct, a switch statement would be the more natural idiom for such a selec- tion. Fortunately, this situation has been remedied. Beginning with JDK 7, you can now use a String to control a switch. This results in more readable, streamlined code in many situations. One good use for a String-controlled switch is when some action must be taken based on a command given in string form. Imagine a switch statement that manages a connection to the Internet based on the command that is in string form. For example, the command might have been entered by the user or obtained from an external script. Java programming 187 The following program illustrates how you could easily handle the situation through the use of a switch controlled by a String: // Use a string to control a switch statement. class StringSwitch { public static void main(String[] args) { String command = "cancel"; switch(command) { case "connect": System.out.println("Connecting"); // ... break; case "cancel": System.out.println("Canceling"); // ... break; case "disconnect": System.out.println("Disconnecting"); // ... break; default: System.out.println("Command Error!"); break; } } } As you would expect, the output from the program is Canceling The string contained in command (which is "cancel" in this program) is tested against the case constants. When a match is found (as it is in the second case), the code sequence associated with that string is executed. Being able to use strings in a switch statement can be very convenient and can improve the readability of some code. For example, using a string-based switch is an improvement over using the equivalent sequence of if/else statements. However, switching on strings is more expensive than switching on integers. Therefore, it is best to switch on strings only in cases in which the controlling data is already in string form, such as when the string is entered by the user or is obtained from an external source. using COMMAnD-line ArguMenTs Now that you know about the String class, you can understand the args parameter to main( ) that has been in every program shown so far. Many programs accept what are called command-line arguments. A command-line argument is the information 188 chapter 5 More Data Types and Operators that directly follows the program’s name on the command line when it is executed. To access the command-line arguments inside a Java program is quite easy—they are stored as strings in the String array passed to main( ). For example, the following program displays all of the command-line arguments that it is called with: // Display all command-line information. class CLDemo { public static void main(String[] args) { System.out.println("There are " + args.length + " command-line arguments."); System.out.println("They are: "); for(int i=0; i“);
else {
for(i=0; ijava Phone Mary Mary: 555-8976
1. In Java, all strings are objects. True or False? 2. How can you obtain the length of a string?
3. What are command-line arguments?
The biTwise OperATOrs
In Chapter 2 you learned about Java’s arithmetic, relational, and logical operators. Although these are some of the most commonly used, Java provides additional operators that expand the set of problems to which Java can be applied. Among these are the bitwise operators. The bitwise operators can be applied to values of type long, int, short, char, or byte. Bitwise operations cannot be used on boolean, float, or double, or class types. They are called the bitwise operators because they are used to test, set, or shift the individual bits that make up a value. Bitwise opera- tions are important to a wide variety of programming tasks, such as when status information from a device must be interrogated or constructed. Table 5-1 lists the bitwise operators.
The bitwise AnD, Or, xOr, and nOT Operators
The bitwise operators AND, OR, XOR, and NOT are &, |, ^, and ~. They perform the same operations as their Boolean logical equivalents described in Chapter 2. The
Answers:
1. True.
2. The length of a string can be obtained by calling the length( ) method.
3. Command-line arguments are specified on the command line when a program
progress Check
is executed. They are passed as strings to the args parameter of main( ).

190 chapter 5 More Data Types and Operators
Table 5-1: The bitwise Operators
Operator
Result
&
Bitwise AND
|
Bitwise OR
^
Bitwise exclusive OR
>>
Shift right
>>>
Unsigned shift right
<< Shift left ~ One’s complement (unary NOT) difference is that the bitwise operators work on a bit-by-bit basis. The following table shows the outcome of each operation using 1’s and 0’s. It is sometimes helpful to think of the bitwise AND as a way to turn bits off. That is, any bit that is 0 in either operand will cause the corresponding bit in the outcome to be set to 0. For example: 1101 0011 & 1010 1010 1000 0010 The following program demonstrates the & by turning any lowercase letter into uppercase by resetting the 6th bit to 0. As the Unicode/ASCII character set is defined, the lowercase letters are the same as the uppercase ones except that the lowercase ones are greater in value by exactly 32. Therefore, to transform a lowercase letter to uppercase, just turn off the 6th bit, as this program illustrates. // Uppercase letters. class UpCase { public static void main(String[] args) { char ch; for(int i=0; i < 10; i++) { ch = (char) ('a' + i); System.out.print(ch); // This statement turns off the 6th bit. ch = (char) ((int) ch & 65503); // ch is now uppercase p q p &q p| q p ^q ~p 0 0 0 0 0 1 1 0 0 1 1 0 0 1 0 1 1 1 1 1 1 1 0 0 System.out.print(ch + " "); } } } The output from this program is shown here: aA bB cC dD eE fF gG hH iI jJ The value 65,503 used in the AND statement is the decimal representation of the binary value 1111 1111 1101 1111. Thus, the AND operation leaves all bits in ch unchanged except for the 6th one, which is set to 0. The AND operator is also useful when you want to determine whether a bit is on or off. For example, this statement determines whether bit 4 in status is set: if((status & 8) != 0) System.out.println("bit 4 is on"); The number 8 is used because it translates into a binary value that has only the 4th bit set. Therefore, the if statement can succeed only when bit 4 of status is also on. An interesting use of this concept is to show the bits of a byte value in binary format. // Display the bits within a byte. class ShowBitsInByte { public static void main(String[] args) { int t; byte val; val = 123; for(t=128; t > 0; t = t/2) {
if((val & t) != 0) System.out.print(“1 “);
else System.out.print(“0 “); }
} }
The output is shown here:
01111011
The for loop successively tests each bit in val, using the bitwise AND, to determine whether it is on or off. If the bit is on, the digit 1 is displayed; otherwise, 0 is dis- played. In Try This 5-3, you will see how this basic concept can be expanded to create a class that will display the bits in any type of integer.
The bitwise OR, as the reverse of AND, can be used to turn bits on. Any bit that is set to 1 in either operand will cause the corresponding bit in the result to be set to 1. For example:
1101 0011 | 1010 1010 1111 1011
Java programming 191

192 chapter 5 More Data Types and Operators
We can make use of the OR to change the uppercasing program into a lowercasing
program, as shown here:
// Lowercase letters. class LowCase {
public static void main(String[] args) { char ch;
for(int i=0; i < 10; i++) { ch = (char) ('A' + i); System.out.print(ch); // This statement turns on the 6th bit. ch = (char) ((int) ch | 32); // ch is now lowercase System.out.print(ch + " "); } } } The output from this program is shown here: Aa Bb Cc Dd Ee Ff Gg Hh Ii Jj The program works by ORing each character with the value 32, which is 0000 0000 0010 0000 in binary. Thus, 32 is the value that, in binary, has only the 6th bit set. When this value is ORed with any other value, it produces a result in which the 6th bit is set and all other bits remain unchanged. As explained, for characters this means that each uppercase letter is transformed into its lowercase equivalent. An exclusive OR, usually abbreviated XOR, will result in a set bit if, and only if, the bits being compared are different, as illustrated here: 01111111 ^10111001 11000110 The XOR operator has an interesting property. When some value X is XORed with another value Y, and then that result is XORed with Y again, X is produced. That is, given the sequence R1 = X ^ Y; R2 = R1 ^ Y; then R2 is the same value as X. Thus, the outcome of a sequence of two XORs pro- duces the original value. You can use this principle to create a simple cipher program in which some integer is the key that is used to both encode and decode a message by XORing the characters in that message. To encode, the XOR operation is applied the first time, yielding the cipher text. To decode, the XOR is applied a second time, yielding the plain text. Of course, such a cipher has no practical value, being trivially easy to break. It does, Java programming 193 however, provide an interesting way to demonstrate the XOR. Here is a program that uses this approach to encode and decode a short message: // Use XOR to encode and decode a message. class SimpleCipher { public static void main(String[] args) { String msg = "This is a test"; String encMsg = ""; String decMsg = ""; int key = 88; System.out.print("Original message: "); System.out.println(msg); // encode the message for(int i=0; i < msg.length(); i++) This constructs the encoded string. encMsg = encMsg + (char) (msg.charAt(i) ^ key); System.out.print("Encoded message: "); System.out.println(encMsg); // decode the message for(int i=0; i < msg.length(); i++) decMsg = decMsg + (char) (encMsg.charAt(i) ^ key); System.out.print("Decoded message: "); System.out.println(decMsg); } } Here is the output: Original message: This is a test Encoded message: 01+x1+x9x,=+, Decoded message: This is a test This constructs the decoded string. As you can see, the result of two XORs using the same key produces the decoded message. The unary one’s complement (NOT) operator reverses the state of all the bits of the operand. For example, if some integer called A has the bit pattern 1001 0110, then ~A produces a result with the bit pattern 0110 1001. The following program demonstrates the NOT operator by displaying a number and its complement in binary. // Demonstrate the bitwise NOT. class NotDemo { public static void main(String[] args) { byte b = -34; for(int t=128; t > 0; t = t/2) {
if((b & t) != 0) System.out.print(“1 “); else System.out.print(“0 “);

194 chapter 5 More Data Types and Operators }
System.out.println();
// reverse all bits b = (byte) ~b;
for(int t=128; t > 0; t = t/2) {
if((b & t) != 0) System.out.print(“1 “); else System.out.print(“0 “);
} }
}
Here is the output:
11011110 00100001
The shift Operators
In Java it is possible to shift the bits that make up a value to the left or to the right by a specified amount. Java defines the three bit-shift operators shown here:
The general forms for these operators are shown here:
value << num-bits value >> num-bits value >>> num-bits
Here, value is the value being shifted by the number of bit positions specified by num-bits.
Each left shift causes all bits within the specified value to be shifted left one posi- tion and a 0 bit to be brought in on the right. Each right shift shifts all bits to the right one position and preserves the sign bit. As you may know, negative numbers are usu- ally represented by setting the high-order bit of an integer value to 1, and this is the approach used by Java. Thus, if the value being shifted is negative, each right shift brings in a 1 on the left. If the value is positive, each right shift brings in a 0 on the left.
In addition to the sign bit, there is something else to be aware of when right shift- ing. Java uses two’s complement to represent negative values. In this approach nega- tive values are stored by first reversing the bits in the equivalent positive value and then adding 1. Thus, the byte value for –1 in binary is 1111 1111. Right shifting this value will always produce –1!
If you don’t want to preserve the sign bit when shifting right, you can use an unsigned right shift (>>>), which always brings in a 0 on the left. For this reason, the >>> is also called the zero-fill right shift. You will use the unsigned right shift when shifting bit patterns, such as status codes, that do not represent integers.
<< Left shift >>
Right shift
>>>
Unsigned right shift

Java programming 195
For all of the shifts, the bits shifted out are lost. Thus, a shift is not a rotate. Once a bit has been shifted out, it is gone.
Shown next is a program that graphically illustrates the effect of a left and right shift. Here, an integer is given an initial value of 1, which means that its low-order bit is set. Then, a series of eight shifts are performed on the integer. After each shift, the lower 8 bits of the value are shown. The process is then repeated, except that a 1 is put in the 8th bit position, and right shifts are performed.
// Demonstrate the shift << and >> operators. class ShiftDemo {
public static void main(String[] args) { int val = 1;
for(int i = 0; i < 8; i++) { for(int t=128; t > 0; t = t/2) {
if((val & t) != 0) System.out.print(“1 “);
else System.out.print(“0 “); }
System.out.println();
val = val << 1; // left shift } System.out.println(); val = 128; for(int i = 0; i < 8; i++) { for(int t=128; t > 0; t = t/2) {
if((val & t) != 0) System.out.print(“1 “); else System.out.print(“0 “);
}
System.out.println();
val = val >> 1; // right shift
} }
}
The output from the program is shown here:
00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000
10000000 01000000 00100000 00010000 00001000

196 chapter 5 More Data Types and Operators
00000100 00000010 00000001
You need to be careful when shifting byte and short values because Java will auto- matically promote these types to int when evaluating an expression. For example, if you right shift a byte value, it will first be promoted to int and then shifted. The result of the shift will also be of type int. Often this conversion is of no consequence. However, if you shift a negative byte or short value, it will be sign-extended when it is promoted to int. Thus, the high-order bits of the resulting integer value will be filled with ones. This is fine when performing a normal right shift. But when you perform a zero-fill right shift, there are 24 ones to be shifted before the byte value begins to see zeros.
Ask the expert
Q Since binary is based on powers of two, can the shift operators be used as a shortcut for multiplying or dividing an integer by two?
AYes. The bitwise shift operators can be used to perform very fast multiplica- tion or division by 2. A shift left doubles a value. A shift right halves it.
bitwise shorthand Assignments
All of the binary bitwise operators have a shorthand form that combines an assignment with the bitwise operation. For example, the following two statements both assign to x the outcome of an XOR of x with the value 127.
x = x ^ 127; x ^= 127;
Try This 5-3 A General-Purpose Bit Display Class
ShowBitsDemo.java
This project creates a utility class called BitOut that enables you to display in binary the bit pattern for any integer value. Such a class can be quite useful in programming. For example, if you are debugging an Internet connection, then being able to monitor the data stream in binary might be a benefit. It also provides a framework to which you could add other bit display options.

Java programming 197
StEp-By-StEp
1. Create a file called ShowBitsDemo.java.
2. Begin a class called BitOut as shown here:
class BitOut {
int numBits; // number of bits to display
BitOut(int n) {
if(n < 1) n = 1; if(n > 64) n = 64; numBits = n;
}
BitOut creates an object that can display a specified number of bits, which must be between 1 and 64. For example, to create an object that will display the low-order 8 bits of some value, use
BitOut byteval = new BitOut(8)
The number of bits to display is stored in numBits.
3. To actually display the bit pattern, BitOut provides the method showBits( ),
which is shown here:
// Display the sequence of bits. void showBits(long val) {
long mask = 1;
// left-shift a 1 into the proper position mask <<= numBits-1; int spacer = 8 - (numBits % 8); for(; mask != 0; mask >>>= 1) {
if((val & mask) != 0) System.out.print(“1”); else System.out.print(“0″);
spacer++;
if((spacer % 8) == 0) { System.out.print(” “); spacer = 0;
} }
System.out.println(); }
Notice that showBits( ) specifies one long parameter. This does not mean that you always have to pass showBits( ) a long value, however. Because of Java’s automatic type promotions, any integer type can be passed to showBits( ). The number of bits displayed is determined by the value stored

198 chapter 5 More Data Types and Operators
in numBits. The bits are displayed in units of 8, starting on the right. This
makes it easier to read the binary values of long bit patterns. 4. The following program assembles the pieces and adds the class
ShowBitsDemo, which demonstrates the use of BitOut and showBits( ). /*
Try This 5-3
A class that stores the number of bits that will be displayed. It then implements the showBits() method, which displays that number of bits for the binary representation of the value that it is passed.
*/
class BitOut {
int numBits; // number of bits to display
BitOut(int n) {
if(n < 1) n = 1; if(n > 64) n = 64; numBits = n;
}
// Display the sequence of bits. void showBits(long val) {
long mask = 1;
// left-shift a 1 into the proper position mask <<= numBits-1; int spacer = 8 - (numBits % 8); for(; mask != 0; mask >>>= 1) {
if((val & mask) != 0) System.out.print(“1”); else System.out.print(“0″);
spacer++;
if((spacer % 8) == 0) { System.out.print(” “); spacer = 0;
} }
System.out.println(); }
}
// Demonstrate showBits(). class ShowBitsDemo {
public static void main(String[] args) {

Java programming 199
BitOut b = new BitOut(8); BitOut i = new BitOut(32); BitOut li = new BitOut(64);
System.out.println(“123 in binary: “); b.showBits(123);
System.out.println(“\n87987 in binary: “); i.showBits(87987);
System.out.println(“\n237658768 in binary: “); li.showBits(237658768);
// you can also show low-order bits of any integer System.out.println(“\nLow order 8 bits of 87987 in binary: “); b.showBits(87987);
} }
5. The output from ShowBitsDemo is shown here: 123 in binary:
01111011
87987 in binary:
00000000 00000001 01010111 10110011
237658768 in binary:
00000000 00000000 00000000 00000000 00001110 00101010 01100010 10010000
Low order 8 bits of 87987 in binary: 10110011
6. You might try adding additional methods to the BitOut class that display bits in different ways. For example, you could show the bits in reverse or show just a subrange of the bits.
progress Check
1. To what types can the bitwise operators be applied? 2. What is >>>?
Answers:
1. byte, short, int, long, and char.
2. >>> performs an unsigned right shift. This causes a zero to be shifted into the
leftmost bit position. It differs from >>, which preserves the sign bit.

200 chapter 5 More Data Types and Operators The ? OperATOr
One of Java’s most fascinating operators is the ?. The ? operator is often used to replace if-else statements of this general form:
if (condition)
var = expression1;
else
var = expression2;
Here, the value assigned to var depends on the outcome of the condition controlling the if.
The ? is called a ternary operator because it requires three operands. It takes the general form
condition ? expression1 : expression2
where condition is a boolean expression, and expression1 and expression2 are expres- sions of any type other than void. The type of expression1 and expression2 must be the same (or compatible), though. Notice the use and placement of the colon.
The value of a ? expression is determined like this: condition is evaluated. If it is true, then expression1 is evaluated and becomes the value of the entire ? expression. If condition is false, then expression2 is evaluated and its value becomes the value of the expression. Consider this example, which assigns absval the absolute value of val:
absval = val < 0 ? -val : val; // get absolute value of val Here, absval will be assigned the value of val if val is zero or greater. If val is nega- tive, then absval will be assigned the negative of that value (which yields a positive value). The same code written using the if-else structure would look like this: if(val < 0) absval = -val; else absval = val; Here is another example of the ? operator. This program divides two numbers but will not allow a division by zero. // Prevent a division by zero using the ?. class NoZeroDiv { public static void main(String[] args) { int result; for(int i = -5; i < 6; i++) { result = i != 0 ? 100 / i : 0; if(i != 0) This prevents a divide-by-zero. System.out.println("100 / " + i + " is " + result); } } } The output from the program is shown here: 100 / -5 is -20 100 / -4 is -25 100 / -3 is -33 100 / -2 is -50 100 / -1 is -100 100 / 1 is 100 100 / 2 is 50 100 / 3 is 33 100 / 4 is 25 100 / 5 is 20 Pay special attention to this line from the program: result = i != 0 ? 100 / i : 0; Here, result is assigned the outcome of the division of 100 by i. However, this divi- sion takes place only if i is not zero. When i is zero, a placeholder value of zero is assigned to result. You don’t actually have to assign the value produced by the ? to some variable. For example, you could use the value as an argument in a call to a method. Or if the expressions are all of type boolean, the ? can be used as the conditional expression in a loop or if statement. For example, here is the preceding program rewritten a bit more compactly. It produces the same output as before. // Prevent a division by zero using the ?. class NoZeroDiv2 { public static void main(String[] args) { for(int i = -5; i < 6; i++) if(i != 0 ? true : false) System.out.println("100 / " + i + " is " + 100 / i); } } Notice the if statement. If i is zero, then the conditional expression of the if is false, the division by zero is prevented, and no result is displayed. Otherwise the division takes place. exerCises 1. Show two ways to declare a one-dimensional array of 12 doubles. 2. Show how to initialize a one-dimensional array of integers to the values 1 through 5. 3. Write a program that uses an array to find the average of 10 double values. Use any 10 values you like. 4. Change the sort in Try This 5-1 so that it sorts an array of strings. Demonstrate that it works. 5. WhatisthedifferencebetweentheStringmethodsindexOf()andlastIndexOf()? Java programming 201 202 chapter 5 More Data Types and Operators 6. Since all strings are objects of type String, show how you can call the length( ) and charAt( ) methods on this string literal: "I like Java". 7. Expanding on the SimpleCipher class, modify it so that it uses an eight-char- acter string as the key. 8. Can the bitwise operators be applied to the double type? 9. Show how this sequence can be rewritten using the ? operator. if(x < 0) y = 10; else y = 20; 10. In the following fragment, is the & a bitwise or logical operator? Why? boolean a, b; // ... if(a & b) ... 11. Is it an error to overrun the end of an array? Is it an error to index an array with a negative value? 12. What is the symbol used for the unsigned right-shift operator? 13. Rewrite the MinMax class shown earlier in this chapter so that it uses a for-each style for loop. 14. Can the for loops that perform sorting in the Bubble class shown in Try This 5-1 be converted into for-each style loops? If not, why not? 15. Can a String control a switch statement? 16. Writeaprogramthatcreatesanintegerarrayoflength30,fillsthearray with the sequence of values (shown below) using a for loop, and then loops through the array printing out the values. Use a for-each style for loop to print out the values. A. 1, −2, 3, −4, 5, −6, ..., 29, −30 B. 1, 1, 2, 2, 3, 3,...,15, 15 C. 1, 2, 4, 8, 16,... D. 1, 1, 2, 3, 5, 8, 13, ... (Except for the first two values, each value is the sum of the two preceding values) 17. Write a program that creates an array of doubles of length 50. It then fills the array with the sequence of values 21/2, 21/4, 21/8, 21/16, ... and then loops through the array printing out the values. Use the Math.sqrt( ) function to compute the square roots of the values. 18. Can you have an array of length 0? If so, how would you create one? 19. Change the bubble sort code in Try This 5-1 so that it sorts the array of integers from largest down to smallest instead of from smallest to largest. 20. Change the bubble sort code in Try This 5-1 so that it sorts an array of strings by their lengths (instead of sorting them alphabetically). Demonstrate that it works. 21. Note that, if the bubble sort’s inner loop never exchanges any pairs of values, then the array is sorted and so the sorting routine can stop. Modify the code Java programming 203 in Try This 5-1 so that the bubble sort stops sorting as soon as the inner loop never exchanges any values. 22. Write a program that creates a “triangular” two-dimensional array A of 10 rows. The first row has length 1, the second row has length 2, the third row has length 3, and so on. Then initialize the array using nested for loops so that the value of A[i][j] is i+j. Finally, print out the array in a nice triangular form. 23. Write a program that creates an array of integers and then uses a for loop to reverse the order of the elements in the array. 24. Fill in the indexOf( ) method in the class below so that it uses a for loop to find the index of x in data. It returns the index or −1 if x does not appear in data. For example, indexOf(3) returns 2. Demonstrate your solution. class MyClass { int[] data = { 1, 8, 3, 5, 4, 6, 10, 9, 2, 7 }; int indexOf(int x) { // ... add your code here } } 25. Write a program that creates an integer array data and then uses a for loop to create a new String that displays the contents of the data array surrounded by braces and separated by commas. For example, if the data array is of length 4 and contains the values 3, 4, 1, 5, then the String "{3, 4, 1, 5}" should be created and printed. 26. Write a program that creates two integer arrays data1 and data2, possibly of different lengths. Then it uses for loops to create a new array data3 whose length is the sum of the lengths of data1 and data2 and whose contents consist of the contents of data1 followed by the contents of data2. For example, if the two arrays are {1,2,3} and {4,5,6,7}, then the code should create the new array {1,2,3,4,5,6,7}. 27. Writeaprogramthatcreatesanintegerarrayandthenusesaforlooptocheck whether the array is sorted from smallest to largest. If so, it prints "Sorted". Otherwise, it prints "Not sorted". 28. Write a program that creates a String and then uses a for loop to test whether the String is a palindrome, which means that if you reverse the order of the characters in the String, you get the same String back. For example, "abcdcba" is a palindrome. 29. Write a program that creates a string and then uses a for loop to split the String into an array of substrings, using the comma character as the separator. For example, if the string was "abc,def,hi", then the array it creates would be {"abc", "def", "hi"}. It then prints out the string and the new array. Don’t use the split( ) method in the String class. 30. Rewrite the following statements without using the ? operator. Assume that y is an integer variable previously declared and initialized. 204 chapter 5 More Data Types and Operators a. int x = y > 0 ? 3 : 4;
b. int x = ((y > 0) ? (y > 5) : (y < -5)) ? 3 : 4; c. int x = y > 0 ? ( y > 5 ? 3 : 4) : (y < -5 ? 6 : 7); 31. Implement a method cyclicShift( ) that takes two integers x and dist as its parameters. It cyclically shifts the bits in the representation of x the dis- tance given by dist and returns the result. If dist ≥ 0, then it shifts right, and otherwise it shifts left. A cyclic shift shifts the bits to the left or right and the bits that are shifted off one end are inserted on the other end to fill the vacated bits. (A cyclic shift is also commonly referred to as a rotate.) For example, a right cyclic shift of 10010111 a distance 3 would give you 11110010. Use the OR and shift operators to perform the cyclic shift. Hint: Shift one copy of x to the right and shift another copy of x to the left, using the fact that an integer has 32 bits, and then use the OR operator to combine them. Demonstrate your method using the BitOut class from Try This 5-3 to display the results. 32. Suppose a SimpleStack is created with the name stack and then the follow- ing sequence of statements is executed. When it is done, what characters are left on the stack and in what order? stack.push('a'); stack.push('b'); stack.pop(); stack.push('c'); stack.push('d'); stack.pop(); stack.push('e'); stack.pop(); stack.pop(); ChApter A Closer look at Methods and Classes key skills & concepts j Control access to members j Pass objects to a method j Return objects from a method j Overload methods j Overload constructors j Use recursion j Apply static j Use inner classes j Use varargs This chapter resumes our examination of classes and methods. It begins by explain- ing how to control access to the members of a class. It then discusses the passing and returning of objects, method overloading, recursion, and use of the keyword static. Also described are nested classes and variable-length arguments. Controlling ACCess to ClAss MeMbers In its support for encapsulation, the class provides two major benefits. First, it links data with the code that manipulates it. You have been taking advantage of this aspect of the class since Chapter 4. Second, it provides the means by which access to mem- bers can be controlled. It is this feature that is examined here. Although Java’s approach is a bit more sophisticated, in essence, there are two basic types of class members: public and private. A public member can be freely accessed by code defined outside of its class. This is the type of class member that we have been using up to this point. A private member can be accessed only by other methods defined by its class. It is through the use of private members that access is controlled. 205 6 206 chapter 6 A Closer look at Methods and Classes Restricting access to a class’s members is a fundamental part of object-oriented programming because it helps prevent the misuse of an object. By allowing access to private data only through a well-defined set of methods, you can prevent improper values from being assigned to that data—by performing a range check, for example. It is not possible for code outside the class to set the value of a private member directly. You can also control precisely how and when the data within an object is used. Thus, when correctly implemented, a class creates a “black box” that can be used, but its inner workings are not open to tampering. Up to this point, you haven’t had to worry about access control because Java provides a default access setting in which, for the programs seen so far, the members of a class are freely available to the other code in your program. (Thus, for these programs, the default access setting is essentially public.) Although convenient for simple classes (and example programs in books such as this one), this default setting is inadequate for many real-world situations. Here you will see how to use Java’s other access control features. Java’s Access Modifiers Member access control is achieved through the use of three access modifiers: public, private, and protected. As explained, if no access modifier is used, the default access setting is assumed. In this chapter we will be concerned with public and private. The protected modifier is useful only when inheritance is involved; it is described in Chapter 9. When a member of a class is modified by the public modifier, that member can be accessed by any other code in your program. This includes methods defined inside other classes. When a member of a class is specified as private, that member can be accessed only by other members of its class. Thus, methods in other classes cannot access a private member of another class. The default access setting (in which no access modifier is used) is the same as public unless two or more packages are involved. A package is, essentially, a group- ing of classes. Packages are both an organizational and an access control feature, but a discussion of packages must wait until Chapter 9. For the types of programs shown in this and the preceding chapters, public access is the same as default access. An access modifier precedes the rest of a member’s type specification. That is, it must begin a member’s declaration statement. Here are some examples: public String errMsg; private accountBalance bal; private boolean isError(byte status) { // ... To understand the effects of public and private, consider the following program: // Public vs private access. class MyClass { private int alpha; // private access public int beta; // public access int gamma; // default access /* Methods to access alpha. It is OK for a member of a class to access a private member of the same class. */ void setAlpha(int a) { alpha = a; } int getAlpha() { return alpha; } } class AccessDemo { public static void main(String[] args) { Java programming 207 MyClass ob = new MyClass(); /* Access to alpha is allowed only through its accessor methods. */ ob.setAlpha(-99); System.out.println("ob.alpha is " + ob.getAlpha()); // You cannot access alpha like this: ob.alpha = 10; // Wrong! alpha is private! // These are OK because beta and gamma are accessible. ob.beta = 88; OK because these are accessible. ob.gamma = 99; } } Wrong—alpha is private! // As you can see, inside the MyClass class, alpha is specified as private, beta is explicitly specified as public, and gamma uses the default access, which for this example is, essentially, the same as specifying public. Because alpha is private, it cannot be accessed by code outside of its class. Therefore, inside the AccessDemo class, alpha cannot be used directly. It must be accessed through its public accessor methods: setAlpha( ) and getAlpha( ). If you were to remove the comment symbol from the beginning of the following line, // ob.alpha = 10; // Wrong! alpha is private! you would not be able to compile this program because of the access violation. Although access to alpha by code outside of MyClass is not allowed, methods defined within MyClass can freely access it, as the setAlpha( ) and getAlpha( ) methods show. The key point is this: a private member can be used freely by other members of its class, but it cannot be accessed by code outside its class. To see how access control can be applied to a more practical example, consider the following program that implements a “fail-soft” int array, in which boundary errors are prevented, thus avoiding a run-time exception from being generated. This 208 chapter 6 A Closer look at Methods and Classes is accomplished by encapsulating the array as a private member of a class, allowing access to the array only through member methods. With this approach, any attempt to access the array beyond its boundaries can be prevented, with such an attempt failing gracefully (resulting in a “soft” landing rather than a “crash”). The fail-soft array is implemented by the FailSoftArray class, shown here: /* This class implements a "fail-soft" array which prevents runtime errors. */ class FailSoftArray { private int[] a; // reference to array private int errval; // value to return if get() fails public int length; // length is public /* Construct array given its size and the value to return if get() fails. */ public FailSoftArray(int size, int errv) { a = new int[size]; errval = errv; length = size; } // Return value at given index. public int get(int index) { if(ok(index)) return a[index]; return errval; } Trap an out-of-bounds index. // Put a value at an index. Return false on failure. public boolean put(int index, int val) { if(ok(index)) { a[index] = val; return true; } return false; } // Return true if index is within bounds. private boolean ok(int index) { if(index >= 0 & index < length) return true; return false; } } // Demonstrate the fail-soft array. class FSDemo { public static void main(String[] args) { FailSoftArray fs = new FailSoftArray(5, -1); int x; // show quiet failures System.out.println("Fail quietly."); for(int i=0; i < (fs.length * 2); i++) Java programming 209 Access to array must be through its accessor methods. fs.put(i, i*10); for(int i=0; i < (fs.length * 2); i++) { x = fs.get(i); if(x != -1) System.out.print(x + " "); } System.out.println(""); // now, handle failures System.out.println("\nFail with error reports."); for(int i=0; i < (fs.length * 2); i++) if(!fs.put(i, i*10)) System.out.println("Index " + i + " out-of-bounds"); for(int i=0; i < (fs.length * 2); i++) { x = fs.get(i); if(x != -1) System.out.print(x + " "); else System.out.println("Index " + i + " out-of-bounds"); } } } The output from the program is shown here: Fail quietly. 0 10 20 30 40 Fail with error reports. Index 5 out-of-bounds Index 6 out-of-bounds Index 7 out-of-bounds Index 8 out-of-bounds Index 9 out-of-bounds 0 10 20 30 40 Index 5 out-of-bounds Index 6 out-of-bounds Index 7 out-of-bounds Index 8 out-of-bounds Index 9 out-of-bounds Let’s look closely at this example. Inside FailSoftArray are defined three private members. The first is a, which stores a reference to the array that will actually hold information. The second is errval, which is the value that will be returned when a call to get( ) fails. The third is the private method ok( ), which determines whether an index is within bounds. Thus, these three members can be used only by other members of the FailSoftArray class. Specifically, a and errval can be used only by other meth- ods in the class, and ok( ) can be called only by other members of FailSoftArray. The rest of the class members are public and can be called by any other code in a program that uses FailSoftArray. 210 chapter 6 A Closer look at Methods and Classes When a FailSoftArray object is constructed, you must specify the size of the array and the value that you want to return if a call to get( ) fails. The error value must be a value that would otherwise not be stored in the array. Once constructed, the actual array referred to by a and the error value stored in errval cannot be accessed by users of the FailSoftArray object. Thus, they are not open to misuse. For example, the user cannot try to index a directly, possibly exceeding its bounds. Access is available only through the get( ) and put( ) methods. The ok( ) method is private mostly for the sake of illustration. It would be harm- less to make it public because it does not modify the object. However, since it is used internally by the FailSoftArray class, it can be private. Notice that the length instance variable is public. This is in keeping with the way Java implements arrays. To obtain the length of a FailSoftArray, simply use its length member. It is important to point out, however, that because length is public, it is open to misuse. For example, it could be set to an improper value. In Chapter 7, you will see another feature of Java that can be used to prevent such misuse. To use a FailSoftArray array, call put( ) to store a value at the specified index. Call get( ) to retrieve a value from a specified index. If the index is out-of-bounds, put( ) returns false and get( ) returns errval. For the sake of convenience, the majority of the examples in this book will con- tinue to use default access for most members. Remember, however, that in the real world, restricting access to members—especially instance variables—is an important part of successful object-oriented programming. As you will see in Chapter 7, access control is even more vital when inheritance is involved. 1. Name Java’s access modifiers. 2. Explain what private does. progress Check Try This 6-1 Improving simplestack SimpleStack.java You can use the private modifier to make a rather important improvement to the SimpleStack class developed in Try This 5-2 in the previous chapter. In that ver- sion, all members of SimpleStack use the default access. This means that it would be possible for a program that uses a SimpleStack to directly access the underlying array, possibly using its elements out of turn. Since the entire point of a stack Answers: 1. private, public, and protected. A default access is also available. 2. When a member is specified as private, it can be accessed only by other members of its class. pAss obJeCts to Methods Up to this point, the examples in this book have been using primitive types, such as int, as parameters to methods. However, it is both correct and common to pass objects to methods. For example, the following program defines a class called block that stores the dimensions of a three-dimensional block: // Objects can be passed to methods. class Block { int a, b, c; int volume; Block(int i, int j, int k) { a = i; Java programming 211 is to provide a last-in, first-out list, allowing out-of-order access is not desirable. Furthermore, the values in the underlying array could be changed directly, bypass- ing the use of push( ) and pop( ), thus corrupting the stack. It would also be possible for a malicious programmer to alter the value stored in the tos variable. This too would corrupt the stack. Fortunately, these types of problems are easy to prevent by applying the private specifier. Step-by-Step 1. Begin with the original SimpleStack class in Try This 5-2. 2. In SimpleStack, add the private modifier to the data array and the tos vari- able, as shown here: private char[] data; // this array holds the stack private int tos; // index of top of stack 3. Changing data and tos from default access to private access has no effect on a program that properly uses SimpleStack. For example, it still works fine with the SimpleStackDemo class from Try This 5-2. However, the use of private prevents the improper use of a SimpleStack. For example, given SimpleStack myStack = new SimpleStack(10); the following types of statements are illegal: myStack.data[0] = 'X'; // wrong! myStack.tos = -100; // won't work! 4. Now that tos and data are private, the SimpleStack class strictly enforces the last-in, first-out attribute of a stack. It also prevents the stack from being either maliciously or accidentally corrupted by the improper use of data or tos. The simple addition of private to these two fields is one of the easiest, yet most effective, ways to improve the robustness of SimpleStack. b = j; 212 chapter 6 A Closer look at Methods and Classes c = k; volume = a * b * c; } // Return true if ob defines same block. boolean sameBlock(Block ob) { Use object type for parameter. if((ob.a == a) & (ob.b == b) & (ob.c == c)) return true; else return false; } // Return true if ob has same volume. boolean sameVolume(Block ob) { if(ob.volume == volume) return true; else return false; } } class PassOb { public static void main(String[] args) { Block ob1 = new Block(10, 2, 5); Block ob2 = new Block(10, 2, 5); Block ob3 = new Block(4, 5, 5); System.out.println("ob1 same dimensions as ob2: " + ob1.sameBlock(ob2)); System.out.println("ob1 same dimensions as ob3: " + ob1.sameBlock(ob3)); System.out.println("ob1 same volume as ob3: " + ob1.sameVolume(ob3)); } } This program generates the following output: ob1 same dimensions as ob2: true ob1 same dimensions as ob3: false ob1 same volume as ob3: true The sameblock( ) and sameVolume( ) methods compare the block object passed as a parameter to the invoking object. For sameblock( ), the dimensions of the objects are compared, and true is returned only if the two blocks are the identical. For sameVolume( ), the two blocks are compared only to determine whether they have the same volume. In both cases, notice that the parameter ob specifies block as its type. Although block is a class type created by the program, it is used in the same way as Java’s built-in types. how ArguMents Are pAssed As the preceding example demonstrated, passing an object to a method is a straightfor- ward task. However, there are some nuances of passing an object that are not shown in the example. In certain cases, the effects of passing an object will be different from Pass an object. Java programming 213 those experienced when passing non-object arguments. To see why, it’s helpful to begin by describing in general two of the ways in which a computer language can pass an argument to a subroutine. The first way is call-by-value. This approach copies the value of an argument into the formal parameter of the subroutine. Therefore, changes made to the parameter of the subroutine have no effect on the argument in the call. The second way an argu- ment can be passed is call-by-reference. In this approach, a reference to an argument (not the value of the argument) is passed to the parameter. Inside the subroutine, this reference is used to access the actual argument specified in the call. This means that changes made to the parameter will affect the argument used to call the subroutine. As you will see, although Java uses call-by-value to pass arguments, the precise effect differs between whether a primitive type or a reference type is passed. When you pass a primitive type, such as int or double, to a method, its value is passed to the parameter. Thus, a copy of the argument is made, and what occurs to the parameter that receives the argument has no effect outside the method. For example, consider the following program: // Primitive types are passed by value. class Test { /* This method causes no change to the arguments used in the call. */ void noChange(int i, int j) { i = i + j; j = -j; } } class CallByValue { public static void main(String[] args) { Test ob = new Test(); int a = 15, b = 20; System.out.println("a and b before call: " + a + " " + b); ob.noChange(a, b); System.out.println("a and b after call: " + a + " " + b); } } The output from this program is shown here: a and b before call: 15 20 a and b after call: 15 20 As you can see, the operations that occur inside noChange( ) have no effect on the values of a and b used in the call. 214 chapter 6 A Closer look at Methods and Classes When you pass an object to a method, the situation changes dramatically. First, recall that when you create a variable of a class type, you are creating a reference. When you pass an object as an argument, you are, in reality, not passing the object itself, but only the reference that refers to that object. This means that when you pass an object reference to a method, the parameter that receives it will refer to the same object as that referred to by the argument. Therefore, objects are passed to methods by what is effectively call-by-reference (since only a reference is passed). Changes to the object inside the method do affect the object used as an argument. For example, consider the following program: // Objects are passed through their references. class Test { int a, b; Test(int i, int j) { a = i; b = j; } /* Pass an object. Now, ob.a and ob.b in object used in the call will be changed. */ void change(Test ob) { ob.a = ob.a + ob.b; ob.b = -ob.b; } } class PassObjRef { public static void main(String[] args) { Test ob = new Test(15, 20); System.out.println("ob.a and ob.b before call: " + ob.a + " " + ob.b); ob.change(ob); System.out.println("ob.a and ob.b after call: " + ob.a + " " + ob.b); } } This program generates the following output: ob.a and ob.b before call: 15 20 ob.a and ob.b after call: 35 -20 As you can see, in this case, the actions inside change( ) have affected the object passed to the method. To review: When an object reference is passed to a method, the reference itself is passed by use of call-by-value. Therefore, the parameter receives a copy of the refer- ence used as the argument. As a result, a change to the parameter (such as making it refer to a different object) will not affect the reference used as an argument. However, Java programming 215 since the parameter and the argument both refer to the same object, a change through the parameter will affect the object referred to by the argument. Ask the expert QAIs there any way that I can pass a primitive type by reference? Not directly. However, Java defines a set of classes that wrap the primitive types in objects. These are Double, Float, byte, Short, Integer, Long, and Character. In addition to allowing a primitive type to be passed by reference, these wrapper classes define several methods that enable you to manipulate their values. For example, the numeric type wrappers include methods that convert a numeric value from its binary form into its human-readable String form, and vice versa. progress Check 1. What is the difference between call-by-value and call-by-reference? 2. How does Java pass primitive types? How does it pass objects? returning obJeCts A method can return any type of data, including class types. For example, the class errorMsg shown here could be used to report errors. Its method, geterrorMsg( ), returns a reference to a String object that contains a description of an error based on the error code that it is passed. // Return a String object. class ErrorMsg { String[] msgs = { "Output Error", "Input Error", "Disk Full", "Index Out-Of-Bounds" }; // Return the error message. String getErrorMsg(int i) { Return an object of type String. if(i >=0 & i < msgs.length) Answers: 1. In call-by-value, a copy of the argument is passed to a subroutine. In call-by- reference, a reference to the argument is passed. 2. Java passes primitive types by value. An object is passed through its refer- ence. (The reference itself is passed by value.). 216 chapter 6 A Closer look at Methods and Classes return msgs[i]; else return "Invalid Error Code"; } } class ErrMsgDemo { public static void main(String[] args) { ErrorMsg err = new ErrorMsg(); System.out.println(err.getErrorMsg(2)); System.out.println(err.getErrorMsg(19)); } } Its output is shown here: Disk Full Invalid Error Code You can, of course, also return objects of classes that you create. For example, here is a reworked version of the preceding program that creates two error classes. One is called err, and it encapsulates an error message along with a severity code. The sec- ond is called errorInfo. It defines a method called geterrorInfo( ), which returns a reference to an err object. // Return a programmer-defined object. class Err { String msg; // error message int severity; // code indicating severity of error Err(String m, int s) { msg = m; severity = s; } } class ErrorInfo { String[] msgs = { "Output Error", "Input Error", "Disk Full", "Index Out-Of-Bounds" }; int[] howbad = { 3, 3, 2, 4 }; Err getErrorInfo(int i) { if(i >= 0 & i < msgs.length) Return an object of type err. return new Err(msgs[i], howbad[i]); else return new Err("Invalid Error Code", 0); } } class ErrInfoDemo { public static void main(String[] args) { ErrorInfo err = new ErrorInfo(); Err e; e = err.getErrorInfo(2); System.out.println(e.msg + " severity: " + e.severity); e = err.getErrorInfo(19); System.out.println(e.msg + " severity: " + e.severity); } } Here is the output: Disk Full severity: 2 Invalid Error Code severity: 0 Each time geterrorInfo( ) is invoked, a new err object is created, and a reference to it is returned to the calling routine. This object is then used within main( ) to display the error message and severity code. When an object is returned by a method, it remains in existence until there are no more references to it. At that point it is subject to garbage collection. Thus, an object won’t be destroyed just because the method that created it terminates. Method overloAding In this section, you will learn about an exciting feature of Java: method overloading. In Java, two or more methods within the same class can share the same name, as long as their parameter declarations are different. When this is the case, the methods are said to be overloaded, and the process is referred to as method overloading. Method overloading is one of the ways that Java implements polymorphism. In general, to overload a method, simply declare different versions of it. The com- piler takes care of the rest. You must observe one important restriction: the type and/ or number of the parameters of each overloaded method must differ. It is not sufficient for two methods to differ only in their return types. (Return types do not provide suffi- cient information in all cases for Java to decide which method to use.) Of course, over- loaded methods may differ in their return types, too. When an overloaded method is called, the version of the method whose parameters match the arguments is executed. Here is a simple example that illustrates method overloading: // Demonstrate method overloading. class Overload { Java programming 217 void ovlDemo() { System.out.println("No parameters"); } First version 218 chapter 6 A Closer look at Methods and Classes // Overload ovlDemo for one integer parameter. void ovlDemo(int a) { Second version System.out.println("One parameter: " + a); } // Overload ovlDemo for two integer parameters. int ovlDemo(int a, int b) { Third version Fourth version System.out.println("Two parameters: " + a + " " + b); return a + b; } // Overload ovlDemo for two double parameters. double ovlDemo(double a, double b) { System.out.println("Two double parameters: " + a + " " + b); return a + b; } } class OverloadDemo { public static void main(String[] args) { Overload ob = new Overload(); int resI; double resD; // call all versions of ovlDemo() ob.ovlDemo(); System.out.println(); ob.ovlDemo(2); System.out.println(); resI = ob.ovlDemo(4, 6); System.out.println("Result of ob.ovlDemo(4, 6): " + resI); System.out.println(); resD = ob.ovlDemo(1.1, 2.32); System.out.println("Result of ob.ovlDemo(1.1, 2.32): " + resD); } } This program generates the following output: No parameters One parameter: 2 Two parameters: 4 6 Result of ob.ovlDemo(4, 6): 10 Java programming 219 Two double parameters: 1.1 2.32 Result of ob.ovlDemo(1.1, 2.32): 3.42 As you can see, ovlDemo( ) is overloaded four times. The first version takes no parameters, the second takes one integer parameter, the third takes two integer param- eters, and the fourth takes two double parameters. Notice that the first two versions of ovlDemo( ) return void, and the second two return a value. This is perfectly valid, but as explained, overloading is not affected one way or the other by the return type of a method. Thus, attempting to use the following two versions of ovlDemo( ) will cause an error: // One ovlDemo(int) is OK. void ovlDemo(int a) { Return types cannot be used to System.out.println("One parameter: " + a); differentiate overloaded methods. } /* Error! Two ovlDemo(int)s are not OK even though return types differ. */ int ovlDemo(int a) { System.out.println("One parameter: " + a); return a * a; } As the comments suggest, the difference in their return types is insufficient for the purposes of overloading. As you will recall from Chapter 2, Java provides certain automatic type con- versions. These conversions also apply to parameters of overloaded methods. For example, consider the following: /* Automatic type conversions can affect overloaded method resolution. */ class Overload2 { void f(int x) { System.out.println("Inside f(int): " + x); } void f(double x) { System.out.println("Inside f(double): " + x); } } class TypeConv { public static void main(String[] args) { Overload2 ob = new Overload2(); int i = 10; double d = 10.1; 220 chapter 6 A Closer look at Methods and Classes byte b = 99; short s = 10; float f = 11.5F; ob.f(i); // calls ob.f(int) ob.f(d); // calls ob.f(double) ob.f(b); // calls ob.f(int) – type conversion ob.f(s); // calls ob.f(int) – type conversion ob.f(f); // calls ob.f(double) – type conversion } } The output from the program is shown here: Inside f(int): 10 Inside f(double): 10.1 Inside f(int): 99 Inside f(int): 10 Inside f(double): 11.5 In this example, only two versions of f( ) are defined: one that has an int parameter and one that has a double parameter. However, it is possible to pass f( ) a byte, short, or float value. In the case of byte and short, Java automatically converts them to int. Thus, f(int) is invoked. In the case of float, the value is converted to double and f(double) is called. It is important to understand, however, that the automatic conversions apply only if there is no direct match between a parameter and an argument. For example, here is the preceding program with the addition of a version of f( ) that specifies a byte parameter: // Add f(byte). class Overload2 { void f(byte x) { System.out.println("Inside f(byte): " + x); } void f(int x) { System.out.println("Inside f(int): " + x); } void f(double x) { System.out.println("Inside f(double): " + x); } } class TypeConv { public static void main(String[] args) { Overload2 ob = new Overload2(); int i = 10; double d = 10.1; byte b = 99; short s = 10; float f = 11.5F; ob.f(i); // calls ob.f(int) ob.f(d); // calls ob.f(double) ob.f(b); // calls ob.f(byte) – now, no type conversion ob.f(s); // calls ob.f(int) – type conversion ob.f(f); // calls ob.f(double) – type conversion } } Now when the program is run, the following output is produced: Inside f(int): 10 Inside f(double): 10.1 Inside f(byte): 99 Inside f(int): 10 Inside f(double): 11.5 In this version, since there is a version of f( ) that takes a byte argument, when f( ) is called with a byte argument, f(byte) is invoked and the automatic conversion to int does not occur. Method overloading supports polymorphism because it is one way that Java imple- ments the “one interface, multiple methods” paradigm. To understand how, consider the following: In languages that do not support method overloading, each method must be given a unique name. The trouble is that, often, you will want to implement a set of related methods, such as when each method differs from the next only in terms of the data being acted upon. Consider the method that returns the absolute value of its argument. In languages that do not support overloading, there are usually three or more versions of this method, each with a slightly different name. For instance, in the C language (which does not support method overloading), the method abs( ) returns the absolute value of an integer, labs( ) returns the absolute value of a long integer, and fabs( ) returns the absolute value of a floating-point value. Since C does not sup- port overloading, each method must have its own name, even though all three methods do essentially the same thing. Of course, the use of three names makes the situation more complex, conceptually, than it actually is. Although the underlying concept of each method is the same (return the absolute value), you still have three names to remember. This situation does not occur in Java because each absolute value method can use the same name. Indeed, Java’s standard class library includes an absolute value method, called abs( ). This method is overloaded by Java’s Math class to handle all of the numeric types. Java determines which version of abs( ) to call based on the type of argument. The value of overloading is that it allows related methods to be accessed by use of a common name. Thus, the name abs represents the general action that is being performed. It is left to the compiler to choose the correct specific version for a par- ticular circumstance. You, the programmer, need be concerned with only the general Java programming 221 222 chapter 6 A Closer look at Methods and Classes operation. Through the application of polymorphism, several names have been reduced to one. Although this example is fairly simple, if you expand the concept, you can see how overloading can help manage greater complexity. When you overload a method, each version of that method can perform any activity you desire. There is no rule stating that overloaded methods must relate to one another. However, from a stylistic point of view, method overloading implies a relationship. Thus, while you can use the same name to overload unrelated methods, you should not. For example, you could use the name sqr to create methods that return the square of an integer and the square root of a floating-point value. But these two operations are fundamentally different. Applying method overloading in this manner defeats its original purpose. In practice, you should overload only closely related operations. Ask the expert Q I’ve heard the term signature used by Java programmers. What is it? AAs it applies to Java, a signature is the name of a method plus its parameter list. Thus, for the purposes of overloading, no two methods within the same class can have the same signature. Notice that a signature does not include the return type, since it is not used by Java for overload resolution. overloAding ConstruCtors Like methods, constructors can also be overloaded. Doing so allows you to construct objects in a variety of ways. For example, consider the following program: // Demonstrate an overloaded constructor. class MyClass { int x; MyClass() { System.out.println("Inside MyClass()."); x = 0; } Construct objects in a variety of ways. MyClass(int i) { System.out.println("Inside MyClass(int)."); x = i; } MyClass(double d) { System.out.println("Inside MyClass(double)."); x = (int) d; } MyClass(int i, int j) { System.out.println("Inside MyClass(int, int)."); x = i * j; } } class OverloadConsDemo { public static void main(String[] args) { MyClass t1 = new MyClass(); MyClass t2 = new MyClass(88); MyClass t3 = new MyClass(17.23); MyClass t4 = new MyClass(2, 4); System.out.println("t1.x: " + t1.x); System.out.println("t2.x: " + t2.x); System.out.println("t3.x: " + t3.x); System.out.println("t4.x: " + t4.x); } } The output from the program is shown here: Inside MyClass(). Inside MyClass(int). Inside MyClass(double). Inside MyClass(int, int). t1.x: 0 t2.x: 88 t3.x: 17 t4.x: 8 MyClass( ) is overloaded four ways, each constructing an object differently. The proper constructor is called based on the parameters specified when new is executed. By overloading a class’s constructor, you give the user of your class flexibility in the way objects are constructed. One reason that constructors are overloaded is to allow one object to initialize another. For example, consider this program that uses the Summation class to com- pute the summation of an integer value. // Initialize one object with another. class Summation { int sum; // Construct from an int. Summation(int num) { sum = 0; for(int i=1; i <= num; i++) sum += i; } // Construct from another object. Summation(Summation ob) { sum = ob.sum; } Construct one object from another. Java programming 223 } 224 chapter 6 A Closer look at Methods and Classes class SumDemo { public static void main(String[] args) { Summation s1 = new Summation(5); Summation s2 = new Summation(s1); System.out.println("s1.sum: " + s1.sum); System.out.println("s2.sum: " + s2.sum); } } The output is shown here: s1.sum: 15 s2.sum: 15 Often, as this example shows, an advantage of providing a constructor that uses one object to initialize another is efficiency. In this case, when s2 is constructed, it is not necessary to recompute the summation. Of course, even in cases when efficiency is not an issue, it is often useful to provide a constructor that makes a copy of an object. 1. Can a constructor take an object of its own class as a parameter? 2. Why might you want to provide overloaded constructors? progress Check Try This 6-2 Overloading the simplestack Constructor SimpleStackDemo2.java In this project you will enhance the SimpleStack class by giving it two additional constructors. The first will construct a new stack from another stack. The second will construct a stack, giving it initial values. As you will see, adding these con- structors enhances the usability of SimpleStack. Step-by-Step 1. Create a file called SimpleStackDemo2.java and copy the updated SimpleStack class you created in Try This 6-1 into it. 2. Add the following constructor, which constructs a stack from a stack. Answers: 1. Yes. 2. To provide convenience and flexibility to the user of your class. Java programming 225 // Construct a stack from a stack. SimpleStack(SimpleStack otherStack) { // size of new stack equals that of otherStack data = new char[otherStack.data.length]; // set tos to the same position tos = otherStack.tos; // copy the contents for(int i = 0; i < tos; i++) data[i] = otherStack.data[i]; } Look closely at this constructor. It initializes tos to the value contained in the otherStack.tos parameter. It also allocates a new array to hold the stack and copies the elements from otherStack into that array. Once constructed, the new stack will be an identical copy of the original, but both will be completely separate objects. 3. Add the constructor that initializes the stack from a character array, as shown here: // Construct a stack with initial values. SimpleStack(char[] chrs) { // create the array to hold the initial values data = new char[chrs.length]; tos = 0; // initialize the stack by pushing the contents // of chrs onto it for(char ch : chrs) push(ch); } This constructor creates a stack large enough to hold the characters in chrs and then stores those characters in the stack by calling push( ). 4. Here is the complete updated SimpleStack along with a SimpleStackDemo2 class, which demonstrates it. Notice that this version includes the addition of private to data and tos as described in Try This 6-1. /* Try This 6-2 Add overloaded constructors to SimpleStack. */ class SimpleStack { // the following members are now private private char[] data; // this array holds the stack 226 chapter 6 A Closer look at Methods and Classes private int tos; // index of top of stack // Construct an empty stack given its size. SimpleStack(int size) { data = new char[size]; // create the array to hold the stack tos = 0; } // Construct a stack from a stack. SimpleStack(SimpleStack otherStack) { // size of new stack equals that of otherStack data = new char[otherStack.data.length]; // set tos to the same position tos = otherStack.tos; // copy the contents for(int i = 0; i < tos; i++) data[i] = otherStack.data[i]; } // Construct a stack with initial values. SimpleStack(char[] chrs) { // create the array to hold the initial values data = new char[chrs.length]; tos = 0; // initialize the stack by pushing the contents // of chrs onto it for(char ch : chrs) push(ch); } // Push a character onto the stack. void push(char ch) { if(isFull()) { System.out.println(" -- Stack is full."); return; } data[tos] = ch; tos++; } // Pop a character from the stack. char pop() { if(isEmpty()) { System.out.println(" -- Stack is empty."); return (char) 0; // a placeholder value Java programming 227 } tos--; return data[tos]; } // Return true if the stack is empty. boolean isEmpty() { return tos==0; } // Return true if the stack is full. boolean isFull() { return tos==data.length; } } // Demonstrate the overloaded SimpleStack class constructors. class SimpleStackDemo2 { public static void main(String[] args) { int i; char ch; char[] chrs = { 'A', 'B', 'C', 'D' }; // Initialize stack1 with chrs. SimpleStack stack1 = new SimpleStack(chrs); // Initialize stack2 with the contents of stack1. SimpleStack stack2 = new SimpleStack(stack1); System.out.print("Popping contents of stack1: "); while(!stack1.isEmpty()) { ch = stack1.pop(); System.out.print(ch); } System.out.print("\nPopping contents of stack2: "); while(!stack2.isEmpty()) { ch = stack2.pop(); System.out.print(ch); } } } The output from the program is shown here: Popping contents of stack1: DCBA Popping contents of stack2: DCBA 228 chapter 6 A Closer look at Methods and Classes reCursion In Java, a method can call itself. This process is called recursion, and a method that calls itself is said to be recursive. In general, recursion is the process of defining something in terms of itself and is somewhat similar to a circular definition. The key component of a recursive method is a statement that executes a call to that method. Recursion is a powerful control mechanism. Let’s begin with a very simple example that demonstrates the key elements of recursion. The following drawStars( ) method takes an integer parameter called n and then draws a row of n stars (actually, asterisks). It uses recursion to control the process. // Use recursion to draw a line of n stars. void drawStars(int n) { if(n == 1) System.out.print("*"); else { System.out.print("*"); drawStars(n-1); // a recursive call } } Notice that inside drawStars( ) a call to drawStars( ) is made. This is what is meant by a recursive call. Before we look closely at how drawStars( ) works, it will be helpful to describe the problem of drawing a line of stars in terms of its recursive solution. To begin, think of the act of drawing stars as a job. After the first star is drawn, what’s left to do? The answer: draw the remaining stars. In other words, the job of drawing N stars can be broken down into the job of drawing one star, followed by the job of drawing the remaining N−1 stars. Of course, the job of drawing N−1 stars is simply the process of drawing one star followed by the job of drawing the remaining N−2 stars. This process is then repeated until there are no more stars to draw. This general idea is the essence of recursion. Of course, the process must end at some point. In the case of drawing stars, it ends when N equals 1 and the final star is drawn. Now let’s look at how the process is implemented in Java code. First, drawStars ( ) is passed the number of stars to draw in its n parameter. Inside the method, if n equals 1, then drawStars( ) draws one star and returns. Thus, when n equals 1, the recursive call is not made. The point at which the recursive call is not made is called the base case. For all cases in which n is greater than 1, drawStars( ) draws one star and then recursively calls itself, passing n−1 as an argument. This process repeats until the value passed to n is 1 and the recursive calls begin returning. For example, a call to drawStars(3) displays one star and then calls drawStars(2), which displays one star and then calls drawStars(1). Since drawStars(1) is the base case, the star is displayed and the recursive calls begin to return. After the initial call to drawStars( ) returns, a line of n stars will have been drawn. There is one more important point that needs to be made about drawStars( ). The recursive calls stop when the base case is encountered. As explained, in drawStars( ), this is when n is passed 1. If the base case were not present to prevent the recursive call, then Java programming 229 drawStars( ) would simply call itself forever (until a run-time error occurred). This is why the base case is important and why every recursive method needs one. Here is a complete program that demonstrates the drawStars( ) method. class StarDrawer { void drawStars(int n) { if(n == 1) System.out.print("*"); else { System.out.print("*"); drawStars(n-1); // a recursive call } } } class StarDrawingDemo { public static void main(String[] args) { StarDrawer drawer = new StarDrawer(); drawer.drawStars(1); // just base case System.out.println(); drawer.drawStars(2); // one recursive call System.out.println(); drawer.drawStars(3); // two recursive calls System.out.println(); drawer.drawStars(10); // nine recursive calls System.out.println(); } } The output from this program is shown here: * ** *** ********** Let’s now look at a slightly more complicated example of recursion. As a general rule, a recursive method requires the use of a parameter that helps determine when a recur- sive call will take place. In the case of drawStars( ), this was n, and it was passed the number of stars to draw. However, sometimes the most natural form of a method does not have such a parameter. For example, consider a method called printArray( ) that takes an integer array as its parameter and displays the elements of the array. This method is easy to implement iteratively using a for loop, but how would you implement it recursively? To do so, you would need a base case to stop the recursive calls. What would the base case be? Since the array never changes, the parameter to the method never changes and so each recursive call to the method would use the same parameter, resulting in a never-ending succession of recursive calls. The only thing that changes during the printing of the array is the index of the next element to be printed. 230 chapter 6 A Closer look at Methods and Classes The solution to this type of problem is to use an auxiliary method that adds a parameter that controls the recursion. For example, in the case of printArray( ), the auxiliary method might be called printArrayAux( ). It would have the array as its first parameter and, as its second parameter, an integer giving the index of the element of the array to be printed next. This auxiliary method reaches the base case when the second parameter is one greater than the index of the last element of the array. Here is a complete program that shows an implementation of these methods and demonstrates how they work: class Printer { void printArray(int[] array) { printArrayAux(array, 0); // start at the 0th element System.out.println(); } void printArrayAux(int[] array, int index) { if(index == array.length) return; // we are done else { // there are more elements to print System.out.print(array[index] + " "); printArrayAux(array, index+1); } } } class PrinterDemo { public static void main(String[] args) { Printer printer = new Printer(); int[] array = { 3,1,4,2,5,7,6,8 }; printer.printArray(array); } } The output from this program is shown here: 31425768 So far, the examples of recursive methods have had a void return type. However, a recursive method can also return a value. A classic example of such a method is one that computes and returns the factorial of a number. The factorial of a number N is the product of all the whole numbers between 1 and N. For example, 3 factorial is 1 × 2 × 3, or 6. The following program shows a recursive way to compute the factorial of a number. For comparison purposes, a nonrecursive equivalent is also shown. // A simple example of recursion. class Factorial { // This is a recursive function. int factR(int n) { int result; if(n==1) return 1; result = factR(n-1) * n; return result; } Execute the recursive call to factR( ). Java programming 231 // This is an iterative equivalent. int factI(int n) { int t, result; result = 1; for(t=1; t <= n; t++) result *= t; return result; } } class Recursion { public static void main(String[] args) { Factorial f = new Factorial(); System.out.println("Factorials using recursive method."); System.out.println("Factorial of 3 is " + f.factR(3)); System.out.println("Factorial of 4 is " + f.factR(4)); System.out.println("Factorial of 5 is " + f.factR(5)); System.out.println(); System.out.println("Factorials using iterative method."); System.out.println("Factorial of 3 is System.out.println("Factorial of 4 is System.out.println("Factorial of 5 is The output from this program is shown here: Factorials using recursive method. Factorial of 3 is 6 Factorial of 4 is 24 Factorial of 5 is 120 Factorials using iterative method. Factorial of 3 is 6 Factorial of 4 is 24 Factorial of 5 is 120 " + f.factI(3)); " + f.factI(4)); " + f.factI(5)); } } The operation of the nonrecursive method factI( ) should be clear. It uses a loop starting at 1 and progressively multiplies each number by the moving product. The operation of the recursive factR( ) is a bit more complex. When factR( ) is called with an argument of 1, the method returns 1; otherwise, it returns the product of factR(n–1)*n. To evaluate this expression, factR( ) is called with n–1. This pro- cess repeats until n equals 1 and the calls to the method begin returning. For example, when the factorial of 2 is calculated, the first call to factR( ) will cause a second call 232 chapter 6 A Closer look at Methods and Classes to be made with an argument of 1. This call will return 1, which is then multiplied by 2 (the original value of n). The answer is then 2. You might find it interesting to insert println( ) statements into factR( ) that show at what level each call is, and what the intermediate results are. Although recursion can be quite useful, it is not without its costs. Each time you call a method, some overhead is added to your program. As a result, a recursive meth- od will incur this overhead each time the recursive call executes. In some cases, this may impact performance to such an extent that an iterative solution is better. A princi- pal advantage to recursion is that some types of algorithms can be implemented more clearly and simply recursively than they can be iteratively. For example, the quicksort sorting algorithm is quite difficult to implement in an iterative way. Furthermore, in some cases, the use of recursion provides the most natural way to approach a problem. When writing recursive methods, it is important to remember one thing: you must have a conditional statement, such as an if, somewhere that causes the method to return without the recursive call being executed. (In other words, you must establish a base case.) If you don’t do this, once you call the method, it will never return. This will result in a run-time error. Runaway recursion is very common when you first begin to develop recursive methods. Use println( ) statements liberally so that you can watch what is going on and cancel execution if you see that you have made a mistake. Ask the expert Q Recursion is fascinating, but I don’t understand how Java can keep all the recursive calls straight. Won’t the values of the parameters and variables get Amixed up from one call to the next? Although the details on how recursion is handled by a compiler is the subject of a more advanced programming course, here is a brief description. Each time a method is called, storage for its parameters and local variables is created, with the parameters being assigned the values of the arguments. Thus, each invoca- tion of a method begins with its own set of parameters and local variables. When a method calls itself, the same process occurs. For each recursive call, a new set of parameters and local variables is allocated storage, and then the method code is executed from the top. A recursive call does not make a new copy of the method. Only the parameters and local variables are new. As each recursive call returns, its local variables and parameters are removed from storage, and execution resumes at the point of the recursive call inside the method. Recursive methods could be said to “telescope” out and back. understAnding static You can define a class member that will be used independently of any object of that class. As you know, normally a class member must be accessed through an object of its class, but it is possible to create a member that can be used without reference to a Java programming 233 specific instance. Such a member can be thought of as applying to the class as a whole. To create this type of a member, precede its declaration with the keyword static. When a member is declared static, it can be accessed before any objects of its class are created and without reference to any object. You can declare both methods and variables to be static. The most common example of a static member is main( ). main( ) is declared as static because it must be called by the JVM when your program begins. Outside the class, to use a static member, you need only specify the name of its class followed by the dot operator. No object needs to be created. For example, if you want to assign the value 10 to a static variable called count that is part of a class called Mytimer, use this line: MyTimer.count = 10; This format is similar to that used to access normal instance variables through an object, except that the class name is used. A static method can be called in the same way—by use of the dot operator on the name of the class. static variables Variables declared static are, essentially, global variables. When an object is created, no copy of a static variable is made. Instead, all instances of the class share the same static variable. Here is an example that shows the differences between a static vari- able and an instance variable: // Use a static variable. class StaticDemo { int x; // a normal instance variable static int y; // a static variable // Return the sum of the instance variable x // and the static variable y. int sum() { return x + y; } } class SDemo { public static void main(String[] args) { StaticDemo ob1 = new StaticDemo(); StaticDemo ob2 = new StaticDemo(); There is one copy of y for all objects to share. // Each object has its own copy of an instance variable. ob1.x = 10; ob2.x = 20; System.out.println("Of course, ob1.x and ob2.x " + "are independent."); System.out.println("ob1.x: " + ob1.x + "\nob2.x: " + ob2.x); System.out.println(); // Each object shares one copy of a static variable. 234 chapter 6 A Closer look at Methods and Classes System.out.println("The static variable y is shared."); StaticDemo.y = 19; System.out.println("Set StaticDemo.y to 19."); System.out.println("ob1.sum(): " + ob1.sum()); System.out.println("ob2.sum(): " + ob2.sum()); System.out.println(); StaticDemo.y = 100; System.out.println("Change StaticDemo.y to 100"); System.out.println("ob1.sum(): " + ob1.sum()); System.out.println("ob2.sum(): " + ob2.sum()); System.out.println(); } } The output from the program is shown here: Of course, ob1.x and ob2.x are independent. ob1.x: 10 ob2.x: 20 The static variable y is shared. Set StaticDemo.y to 19. ob1.sum(): 29 ob2.sum(): 39 Change StaticDemo.y to 100 ob1.sum(): 110 ob2.sum(): 120 As the output shows, the static variable y is shared by both ob1 and ob2. Thus, sum( ) adds the same value of y to each object’s x. Furthermore, changing y affects all objects (that is, the entire class), not just a specific instance. Pay special attention to how y is accessed through its class name, as shown here: StaticDemo.y = 19; Since y is shared by all objects, it is accessed via its class name, not an object reference. Because static variables are independent of any specific object, they are useful when you need to maintain information that is applicable to an entire class. Here is a simple example. It uses a static member called count to keep a count of the number of MyClass objects that have been created. // Count instances. class MyClass { // This static variable will be incremented each // time a MyClass object is made. static int count = 0; MyClass() { count++; // increment the count } } class UseStatic { public static void main(String[] args) { for(int i=0; i < 3; i++) { MyClass obj = new MyClass(); System.out.println("Number of objects created: " + MyClass.count); } } } The output is shown here: Number of objects created: 1 Number of objects created: 2 Number of objects created: 3 Each time that a MyClass object is created, the count variable is incremented. Because it is static, it is used by all instances of MyClass. As a result, it stores a run- ning count of the number of MyClass objects that have been instantiated. There is no way that this can be accomplished using an instance variable because each object has its own copy of each instance variable. A static variable applies to the entire class. static Methods Methods declared static are, essentially, global methods. They are called independently of any object. Instead, a static method is called through its class name. Here is an example that creates a static method. Notice how it is called inside main( ). // Use a static method. class StaticMeth { static int val = 1024; // a static variable // A static method. static int valDiv2() { return val/2; } } class SDemo2 { public static void main(String[] args) { System.out.println("val is " + StaticMeth.val); System.out.println("StaticMeth.valDiv2(): " + StaticMeth.valDiv2()); StaticMeth.val = 4; System.out.println("val is " + StaticMeth.val); System.out.println("StaticMeth.valDiv2(): " + Java programming 235 } } StaticMeth.valDiv2()); 236 chapter 6 A Closer look at Methods and Classes The output is shown here: val is 1024 StaticMeth.valDiv2(): 512 val is 4 StaticMeth.valDiv2(): 2 As the program shows, because valDiv2( ) is declared static, it can be called without any instances of its class, StaticMeth, being created. Static methods are particularly useful for creating utility methods that perform useful functions not related to a specific object. Several examples are found in the standard Math class. It defines a large number of static methods that perform vari- ous mathematical computations. You have seen an example of this already: the sqrt( ) method. Others include trigonometric functions such as cos( ), sin( ), and tan( ), the abs( ) method, which returns the absolute value, and log( ), which returns the natural logarithm of a value. Later in this course, you will encounter other examples of static methods from the Java library. Methods declared as static have several restrictions: j They can directly call only other static methods. j They can directly access only static data. j They do not have a this reference. For example, in the following class, the static method valDivDenom( ) is illegal. class StaticError { int denom = 3; // a normal instance variable static int val = 1024; // a static variable /* Error! Can't access a non-static variable from within a static method. */ static int valDivDenom() { return val/denom; // won't compile! } } Here, denom is a normal instance variable that cannot be accessed within a static method. static blocks Sometimes a class will require some type of initialization before it is ready to create objects. For example, it might need to establish a connection to a remote site. It also might need to initialize certain static variables before any of the class’s static methods are used. To handle these types of situations, Java allows you to declare a static block. A static block is executed when the class is first loaded. Thus, it is executed before the class can be used for any other purpose. Here is an example of a static block: // Use a static block class StaticBlock { static double rootOf2; static double rootOf3; static { System.out.println("Inside static block."); rootOf2 = Math.sqrt(2.0); rootOf3 = Math.sqrt(3.0); } StaticBlock(String msg) { System.out.println(msg); } } class SDemo3 { public static void main(String[] args) { This block is executed when the class is loaded. StaticBlock ob = new StaticBlock("Inside Constructor"); System.out.println("Square root of 2 is " + StaticBlock.rootOf2); System.out.println("Square root of 3 is " + StaticBlock.rootOf3); } } The output is shown here: Inside static block. Inside Constructor Square root of 2 is 1.4142135623730951 Square root of 3 is 1.7320508075688772 As you can see, the static block is executed before any objects are constructed. 1. Define recursion. 2. Explain the difference between static variables and instance variables. 3. When is a static block executed? Answers: 1. Recursion is the process of a method calling itself. 2. Each object of a class has its own copy of the instance variables defined by the class. Each object of a class shares one copy of a static variable. 3. A static block is executed when its class is first loaded, before its first use. Java programming 237 progress Check 238 chapter 6 A Closer look at Methods and Classes Try This 6-3 The Quicksort QSDemo.java In Chapter 5 you were shown a simple sorting method called the bubble sort. It was mentioned at the time that substantially better sorts exist. Here you will develop a version of one of the best: the quicksort, invented by C.A.R. Hoare. The reason it could not be shown in Chapter 5 is that the cleanest implementations of the quick- sort rely on recursion. The version we will develop sorts a character array, but the logic can be adapted to sort any type of object you like. The quicksort is built on the idea of partitions. The general procedure is to select a value, called the comparand, and then to partition the array into two sec- tions. All elements greater than or equal to the comparand are put on one side, and those less than the comparand are put on the other. This process is then repeated for each remaining section until the array is sorted. For example, given the array fedacb and using the value d as the comparand, the first pass of the quicksort would rearrange the array as follows: This process is then repeated for each section—that is, bca and def. As you can see, the process is essentially recursive in nature, which is why the cleanest implemen- tation of quicksort is recursive. You can select the comparand value in a variety of ways. Here are two. You can choose it at random, or you can select it by averaging a small set of values taken from the array. For optimal sorting, you should select a value that is precisely in the middle of the range of values. However, this is not easy to do for most sets of data. In the worst case, the value chosen is at one extremity. Even in this case, however, quicksort still performs correctly. The version of quicksort that we will develop selects the middle element of the array as the comparand. Step-by-Step 1. Create a file called QSDemo.java. 2. First, create the Quicksort class shown here: // Try This 6-3: A simple version of the quicksort. class Quicksort { // Set up a call to the actual quicksort method. static void qsort(char[] items) { qs(items, 0, items.length-1); } // A recursive version of quicksort for characters. Initial f ed acb Pass1 b cad ef Java programming 239 private static void qs(char[] items, int left, int right) { int i, j; char x, y; i = left; j = right; x = items[(left+right)/2]; do { while((items[i] < x) && (i < right)) i++; while((x < items[j]) && (j > left)) j–;
if(i <= j) { y = items[i]; items[i] = items[j]; items[j] = y; i++; j--; } } while(i <= j); if(left < j) qs(items, left, j); if(i < right) qs(items, i, right); } } To keep the interface to the quicksort simple, the Quicksort class provides the qsort( ) method, which sets up a call to the actual quicksort method, qs( ). This enables the quicksort to be called with just the name of the array to be sorted, without having to provide an initial partition. Since qs( ) is only used internally, it is specified as private. 3. To use the Quicksort, simply call Quicksort.qsort( ). Since qsort( ) is specified as static, it can be called through its class rather than on an object. Thus, there is no need to create a Quicksort object. After the call returns, the array will be sorted. Remember, this version works only for character arrays, but you can adapt the logic to sort any type of arrays you want. 4. Here is a program that demonstrates Quicksort: // Try This 6-3: A simple version of the quicksort. class Quicksort { // Set up a call to the actual quicksort method. static void qsort(char[] items) { qs(items, 0, items.length-1); } // A recursive version of quicksort for characters. private static void qs(char[] items, int left, int right) { 240 chapter 6 A Closer look at Methods and Classes int i, j; char x, y; i = left; j = right; x = items[(left+right)/2]; do { while((items[i] < x) && (i < right)) i++; while((x < items[j]) && (j > left)) j–;
if(i <= j) { y = items[i]; items[i] = items[j]; items[j] = y; i++; j--; } } while(i <= j); if(left < j) qs(items, left, j); if(i < right) qs(items, i, right); } } class QSDemo { public static void main(String[] args) { char[] a = { 'd', 'x', 'a', 'r', 'p', 'j', 'i' }; int i; System.out.print("Original array: "); for(i=0; i < a.length; i++) System.out.print(a[i]); System.out.println(); // now, sort the array Quicksort.qsort(a); System.out.print("Sorted array: "); for(i=0; i < a.length; i++) System.out.print(a[i]); } } introduCing nested And inner ClAsses In Java you can define a nested class. This is a class that is declared within another class. A nested class does not exist independently of its enclosing class. Thus, the scope of a nested class is bounded by its outer class. A nested class that is declared Java programming 241 directly within its enclosing class scope is a member of its enclosing class. It is also possible to declare a nested class that is local to a block. There are two general types of nested classes: those that are preceded by the static modifier and those that are not. The only type that we are concerned about in this book is the non-static variety. This type of nested class is also called an inner class. It has access to all of the variables and methods of its outer class and may refer to them directly in the same way that other non-static members of the outer class do. Sometimes an inner class is used to provide a set of services that are used only by its enclosing class. Here is an example that uses an inner class to compute various values for its enclosing class: // Use an inner class. class Outer { int[] nums; Outer(int[] n) { nums = n; } void analyze() { Inner inOb = new Inner(); System.out.println("Minimum: " + inOb.min()); System.out.println("Maximum: " + inOb.max()); System.out.println("Average: " + inOb.avg()); } // This is an inner class. class Inner { An inner class for(int i=1; i < nums.length; i++) if(nums[i] < m) m = nums[i]; return m; } // Return the maximum value. int max() { int m = nums[0]; for(int i=1; i < nums.length; i++) if(nums[i] > m) m = nums[i];
return m; }
// Return the average. int avg() {
// Return the minimum value. int min() {
int m = nums[0];

242 chapter 6 A Closer look at Methods and Classes
int a = 0;
for(int i=0; i < nums.length; i++) a += nums[i]; return a / nums.length; } } } class NestedClassDemo { public static void main(String[] args) { int[] x = { 3, 2, 1, 5, 6, 9, 7, 8 }; Outer outOb = new Outer(x); outOb.analyze(); } } The output from the program is shown here: Minimum: 1 Maximum: 9 Average: 5 In this example, the inner class Inner computes various values from the array nums, which is a member of Outer. As explained, an inner class has access to the members of its enclosing class, so it is perfectly acceptable for Inner to access the nums array directly. The opposite, however, is not true. For example, it would not be possible for analyze( ) to invoke the min( ) method directly, without creating an Inner object. As mentioned, it is possible to nest a class within a block scope. Doing so simply creates a localized class that is not known outside its block. The following example adapts the bitOut class developed in Try This 5-3 for use as a local class. // Use BitOut as a local class. class LocalClassDemo { public static void main(String[] args) { // An inner class version of BitOut. class BitOut { A local class nested within a method int numBits; BitOut(int n) { if(n < 1) n = 1; if(n > 64) n = 64; numBits = n;
}

void show(long val) { long mask = 1;
// left-shift a 1 into the proper position mask <<= numBits-1; int spacer = 8 - (numBits % 8); for(; mask != 0; mask >>>= 1) {
if((val & mask) != 0) System.out.print(“1”); else System.out.print(“0″);
spacer++;
if((spacer % 8) == 0) {
System.out.print(” “);
spacer = 0; }
}
System.out.println(); }
}
for(byte b = 0; b < 10; b++) { BitOut byteval = new BitOut(8); System.out.print(b + " in binary: "); byteval.show(b); } } } The output from this version of the program is shown here: 0 in binary: 00000000 1 in binary: 00000001 2 in binary: 00000010 3 in binary: 00000011 4 in binary: 00000100 5 in binary: 00000101 6 in binary: 00000110 7 in binary: 00000111 8 in binary: 00001000 9 in binary: 00001001 In this example, the bitOut class is not known outside of main( ), and any attempt to access it by any method other than main( ) will result in an error. One last point: you can create an inner class that does not have a name. This is called an anonymous inner class. An object of an anonymous inner class is instantiated when the class is declared, using new. Anonymous inner classes are discussed further in Part Two of this book, when Swing event handling is described. Java programming 243 244 chapter 6 A Closer look at Methods and Classes Ask the expert Q What makes a static nested class different from a non-static one? AA static nested class is one that has the static modifier applied. Because it is static, it can access only other static members of the enclosing class directly. It must access other members of its outer class through an object reference. progress Check 1. An inner class has access to the other members of its enclosing class. True or False? 2. A nested class does not exist independently of its enclosing class. True or False? vArArgs: vAriAble-length ArguMents Sometimes you will want to create a method that takes a variable number of argu- ments, based on its precise usage. For example, a method that opens an Internet con- nection might take a user name, password, file name, protocol, and so on, but supply defaults if some of this information is not provided. In this situation, it would be convenient to pass only the arguments to which the defaults did not apply. To create such a method implies that there must be some way to create a list of arguments that is variable in length, rather than fixed. In the past, methods that required a variable-length argument list could be handled in two ways, neither of which was particularly pleasing. First, if the maximum num- ber of arguments was small and known, then you could create overloaded versions of the method, one for each way the method could be called. Although this works and is suitable for some situations, it applies to only a narrow class of situations. In cases where the maximum number of potential arguments is larger, or unknowable, a second approach was used in which the arguments were put into an array, and then the array was passed to the method. Frankly, both of these approaches often resulted in clumsy solutions, and it was widely acknowledged that a better approach was needed. Beginning with JDK 5, this need was addressed by the inclusion of a feature that simplified the creation of methods that require a variable number of arguments. This feature is called varargs, and it is short for variable-length arguments. A method that takes a variable number of arguments is called a variable-arity method, or simply a varargs method. The parameter list for a varargs method is not fixed, but rather vari- able in length. Thus, a varargs method can take a variable number of arguments. Answers: 1. True. 2. True. Java programming 245 A variable-length argument is specified by three periods (...). For example, here is how to write a method called vatest( ) that takes a variable number of arguments: // vaTest() uses a vararg. Declare a variable-length argument list. static void vaTest(int ... v) { System.out.println("Number of args: " + v.length); System.out.println("Contents: "); for(int i=0; i < v.length; i++) System.out.println(" arg " + i + ": " + v[i]); System.out.println(); } Notice that v is declared as shown here: int ... v This syntax tells the compiler that vatest( ) can be called with zero or more argu- ments. Furthermore, it causes v to be implicitly declared as an array of type int[ ]. Thus, inside vatest( ), v is accessed using the normal array syntax. Here is a complete program that demonstrates vatest( ): // Demonstrate variable-length arguments. class VarArgs { // vaTest() uses a vararg. static void vaTest(int ... v) { System.out.println("Number of args: " + v.length); System.out.println("Contents: "); for(int i=0; i < v.length; i++) System.out.println(" arg " + i + ": " + v[i]); System.out.println(); } public static void main(String[] args) { // Notice how vaTest() can be called with a // variable number of arguments. varargs basics vaTest(10); // 1 arg vaTest(1, 2, 3); // 3 args vaTest(); // no args } } Call with different numbers of arguments. 246 chapter 6 A Closer look at Methods and Classes The output from the program is shown here: Number of args: 1 Contents: arg 0: 10 Number of args: 3 Contents: arg 0: 1 arg 1: 2 arg 2: 3 Number of args: 0 Contents: There are two important things to notice about this program. First, as explained, inside vatest( ), v is operated on as an array. This is because v is an array. The ... syntax simply tells the compiler that a variable number of arguments will be used and that these arguments will be stored in the array referred to by v. Second, in main( ), vatest( ) is called with different numbers of arguments, including no arguments at all. The arguments are automatically put in an array and passed to v. In the case of no arguments, the length of the array is zero. A method can have “normal” parameters along with a variable-length parameter. However, the variable-length parameter must be the last parameter declared by the method. For example, this method declaration is perfectly acceptable: int doIt(int a, int b, double c, int ... vals) { In this case, the first three arguments used in a call to doIt( ) are matched to the first three parameters. Then, any remaining arguments are assumed to belong to vals. Here is a reworked version of the vatest( ) method that takes a regular argument and a variable-length argument: // Use varargs with standard arguments. class VarArgs2 { // Here, msg is a normal parameter and v is a // varargs parameter. static void vaTest(String msg, int ... v) { System.out.println(msg + v.length); System.out.println("Contents: "); for(int i=0; i < v.length; i++) System.out.println(" arg " + i + ": " + v[i]); System.out.println(); } public static void main(String[] args) { A “normal” and vararg parameter vaTest("One vararg: ", 10); vaTest("Three varargs: ", 1, 2, 3); vaTest("No varargs: "); } } The output from this program is shown here: One vararg: 1 Contents: arg 0: 10 Three varargs: 3 Contents: arg 0: 1 arg 1: 2 arg 2: 3 No varargs: 0 Contents: Remember, the varargs parameter must be last. For example, the following declaration is incorrect: int doIt(int a, int b, double c, int ... vals, boolean stopFlag) { // Error! Here, there is an attempt to declare a regular parameter after the varargs parameter, which is illegal. There is one more restriction to be aware of: there must be only one varargs parameter. For example, this declaration is also invalid: int doIt(int a, int b, double c, int ... vals, double ... morevals) { // Error! The attempt to declare the second varargs parameter is illegal. 1. Show how to declare a method called sum( ) that takes a variable number of int arguments. (Use a return type of int.) 2. Given this declaration, void m(double ... x) the parameter x is implicitly declared as a/an ______. overloading varargs Methods You can overload a method that takes a variable-length argument. For example, the following program overloads vatest( ) three times: Answers: 1. int sum(int ... n) 2. array of double Java programming 247 progress Check 248 chapter 6 A Closer look at Methods and Classes // Varargs and overloading. class VarArgs3 { First version of vatest( ) "Number of args: " + v.length); static void vaTest(int ... v) { System.out.println("vaTest(int ...): " + System.out.println("Contents: "); for(int i=0; i < v.length; i++) System.out.println(" arg " + i + ": " + v[i]); System.out.println(); } Second version of vatest( ) static void vaTest(boolean ... v) { System.out.println("vaTest(boolean ...): " + "Number of args: " + v.length); System.out.println("Contents: "); for(int i=0; i < v.length; i++) System.out.println(" arg " + i + ": " + v[i]); System.out.println(); } static void vaTest(String msg, int ... v) { System.out.println("vaTest(String, int ...): " + msg + v.length); System.out.println("Contents: "); Third version of vatest( ) for(int i=0; i < v.length; i++) System.out.println(" arg " + i + ": " + v[i]); System.out.println(); } public static void main(String[] args) { vaTest(1, 2, 3); vaTest("Testing: ", 10, 20); vaTest(true, false, false); } } The output produced by this program is shown here: vaTest(int ...): Number of args: 3 Contents: arg 0: 1 arg 1: 2 arg 2: 3 vaTest(String, int ...): Testing: 2 Contents: arg 0: 10 arg 1: 20 vaTest(boolean ...): Number of args: 3 Contents: arg 0: true arg 1: false arg 2: false This program illustrates both ways that a varargs method can be overloaded. First, the types of its vararg parameter can differ. This is the case for vatest(int ...) and vatest(boolean ...). Remember, the ... causes the parameter to be treated as an array of the specified type. Therefore, just as you can overload methods by using different types of array parameters, you can overload varargs methods by using different types of varargs. In this case, Java uses the type difference to determine which overloaded method to call. The second way to overload a varargs method is to add one or more normal param- eters. This is what was done with vatest(String, int ...). In this case, Java uses both the number of arguments and the type of the arguments to determine which method to call. varargs and Ambiguity Somewhat unexpected errors can result when overloading a method that takes a variable-length argument. These errors involve ambiguity because it is possible to create an ambiguous call to an overloaded varargs method. For example, consider the following program: // Varargs, overloading, and ambiguity. // // This program contains an error and will not compile! class VarArgs4 { // Use an int vararg parameter. static void vaTest(int ... v) { An int vararg // ... } // Use a boolean vararg parameter. static void vaTest(boolean ... v) { A boolean vararg // ... } public static void main(String[] args) { vaTest(1, 2, 3); // OK vaTest(true, false, false); // OK vaTest(); // Error: Ambiguous! Ambiguous! } Java programming 249 } 250 chapter 6 A Closer look at Methods and Classes In this program, the overloading of vatest( ) is perfectly correct. However, this pro- gram will not compile because of the following call: vaTest(); // Error: Ambiguous! Because the vararg parameter can be empty, this call could be translated into a call to vatest(int ...) or to vatest(boolean ...). Both are equally valid. Thus, the call is inherently ambiguous. Here is another example of ambiguity. The following overloaded versions of vatest( ) are inherently ambiguous even though one takes a normal parameter: static void vaTest(int ... v) { // ... static void vaTest(int n, int ... v) { // ... Although the parameter lists of vatest( ) differ, there is no way for the compiler to resolve the following call: vaTest(1) Does this translate into a call to vatest(int ...), with one varargs argument, or into a call to vatest(int, int ...) with no varargs arguments? There is no way for the compiler to answer this question. Thus, the situation is ambiguous. Because of ambiguity errors like those just shown, sometimes you will need to forego overloading and simply use two different method names. Also, in some cases, ambiguity errors expose a conceptual flaw in your code, which you can remedy by more carefully crafting a solution. exerCises 1. Given this fragment, class X { private int count; is the following fragment correct? class Y { public static void main(String[] args) { X ob = new X(); ob.count = 10; 2. An access modifier must __________ a member’s declaration. 3. Given this class, class Test { int a; Test(int i) { a = i; } } Java programming 251 write a method called swap( ) that exchanges the contents of the objects re- ferred to by two test object references. 4. Is the following fragment correct? class X { int meth(int a, int b) { ... } String meth(int a, int b) { ... } 5. Write a recursive method that displays the contents of a string backwards. 6. If all objects of a class need to share the same variable, how must you declare that variable? 7. Why might you need to use a static block? 8. What is an inner class? 9. To make a member accessible by only other members of its class, what access modifier must be used? 10. The name of a method plus its parameter list constitutes the method’s _______________. 11. An int argument is passed to a method by using call-by-_______________. 12. Create a varargs method called sum( ) that sums the int values passed to it. Have it return the result. Demonstrate its use. 13. Can a varargs method be overloaded? 14. Show an example of an overloaded varargs method that is ambiguous. 15. Modify the showbits( ) method in the bitOut class in Try This 5-3 in Chapter 5 so that it doesn’t print the bits and instead it returns a String containing the bits that would otherwise have been printed. Also modify the main( ) method in the ShowbitsDemo class so that it tests the new showbits( ) method. 16. Implementastring2charArray()methodthattakesaStringasitsparameter. It creates and returns a char array containing the same characters in the same order as in the string. 17. ImplementacharArray2string()methodthattakesachararrayasitsparam- eter. It creates and returns a String that contains the same characters in the same order as in the array. 18. ImplementamethodreadString()thatusesSystem.in.read()toreadinaline of characters. It then combines the characters into a String which it returns. The string that is returned should include the end of line character '\n'. 19. The method hasDuplicateValues( ) shown below is supposed to return true if the array contains any repeated integers and return false if all integers in the array are unique. However, it doesn’t work correctly. Explain why it is wrong and then fix it. boolean hasDuplicateValues(int[] data) { for(int i = 0; i < data.length; i++) for(int j = 0; j < data.length; j++) if(data[i] == data[j]) return true; return false; } 252 chapter 6 A Closer look at Methods and Classes 20. Implement a method addAtend( ) that takes an integer array data and an integer x as its parameters. It creates a new array whose length is one greater than data’s length. It then copies all of data’s elements into the new array and lastly adds the value of x into the last element of the array. It returns the new array. 21. Implement a method insert( ) that takes an integer array data, an integer x, and an integer idx as its parameters. It creates a new array whose length is one greater than data’s length. It then copies all of data’s elements and x into the new array. The value of x is inserted into the new array at the index idx, and the values of data are added to the new array to fill the other elements around x in the order they are in data. It returns the new array. 22. Implement a method remove( ) that takes an integer array data and an integer idx as its parameters. It creates a new array whose length is one less than data’s length. It then copies all of data’s elements into the new array except for the value at the index idx. It returns the new array. 23. Suppose you have a method that takes as its parameters two integer arrays data1 and data2 of the same length and it copies all the data from data1 to data2 and then clears data1 (that is, it sets all the values in data1 to 0). What would happen if someone invoked this method and passed in the same array for both arguments rather than passing in two distinct arrays? 24. Suppose that a class has an overloaded method named add with the following two implementations: double add(int x, double y) { return x + y; } double add(double x, int y) { return x + y + 1; } What, if anything, will be returned by the following method calls? a. add(3, 3.14) b. (3.14, 3) c. add(3, 3) d. add(3.14, 3.14) 25. The drawStars( ) method described in the section on recursion draws one star and then recursively calls itself to draw the remaining n-1 stars. Could it also do things in the opposite order? That is, could it recursively call itself to draw n-1 of the stars and then draw the last star? 26. What would happen if the drawStars( ) method described in the section on recursion were invoked using as its argument the integer −1? Modify the method so that if a negative integer is passed in as its argument, nothing is printed. 27. Write a recursive method countDown( ) that takes an integer n as its param- eter. It prints the integers from n down to 0, one per line, and then it prints "Blast off!". 28. Write a recursive method add1toN( ) that takes an integer n as its parameter. It returns the sum 1 + 2 + 3 + ... + n. Java programming 253 29. Here is the code for a recursive method named mystery. What is printed when mystery(1, 2) is called? How many recursive calls were made? void mystery(int a, int b) { if(a == 0 && b == 0) System.out.println(0); else if(a == 0) { System.out.println(b); mystery(a, b-1); } else { mystery(a-1, b); System.out.println(b); } } 30. Implement an equalArrays( ) method that takes two integer arrays as param- eters and returns true if both arrays are the same length and have equal values at corresponding indices. Implement it two ways: A. iteratively b. recursively (Hint: Create an auxiliary function with an extra parameter.) 31. Write a method reverse( ) that takes an integer array as its parameter and reverses the order of the elements in the array. Implement it two ways: A. iteratively b. recursively (Hint: Create an auxiliary function with an extra parameter.) 32. Implement a numtimes( ) method that takes two parameters: an integer array called data and an integer called x. It returns the number of times that x appears in the array. Implement it two ways: A. iteratively b. recursively (Hint: Create an auxiliary function with an extra parameter.) 33. The following code will not compile. Explain what is wrong. class Oops { int x = 3; static void changeX() { x = 4; } } 34. In Try This 6-3, a quicksort method qsort( ) is implemented and demon- strated. It calls a recursive method qs( ). How many times is qs( ) called altogether if qsort( ) is called to sort each of the following arrays? To answer the question, create a counter variable and add a statement that increments counter at the beginning of the body of qs( ) so that it keeps track of the number of times qs( ) is called. A. {'a', 'b', 'c', 'd', 'e', 'f', 'g'} // an already sorted array b. {'g', 'f', 'e', 'd', 'c', 'b', 'a'} // a reverse sorted array 254 chapter 6 A Closer look at Methods and Classes C. {'a', 'c', 'e', 'g', 'i', 'k', 'm', 'o', 'q', 's', 'u', 'w', 'y', 'b', 'd', 'f', 'h', 'j', 'l', 'n', 'p', 'r', 't', 'v', 'x', 'z'} 35. In Try This 6-3, the recursive quicksort method qs ( ) selects the middle value of the array as the comparand. Modify the method so that it selects the first element of the array as the comparand, and then answer the same questions as in the preceding exercise. 36. If an inner class has an instance variable named x and the outer class also has an instance variable named x, which variable is being referred to when x is used in a method in the inner class? Why? 37. What is the difference between the following two methods? More precisely, the bodies of the methods are the same, but the parameters aren’t. What does the vararg version addUp1 allow us to do differently than the array version addUp2? int addUp1(int ... v) { int sum = 0; for(int x : v) sum += x; return sum; } int addUp2(int[] v) { int sum = 0; for(int x : v) sum += x; return sum; } 38. In Try This 6-2, a new SimpleStack constructor was implemented that takes another stack as its argument and creates a copy of it. Here is the code: // Construct a stack from a stack. SimpleStack(SimpleStack otherStack) { // size of new stack equals that of otherStack data = new char[otherStack.data.length]; // set tos to the same position tos = otherStack.tos; // copy the contents for(int i = 0; i < tos; i++) data[i] = otherStack.data[i]; } Java programming 255 What is wrong with implementing the constructor the following way, which is much simpler? // Construct a stack from a stack. SimpleStack(SimpleStack otherStack) { // set data & tos to otherStack's data & tos data = otherStack.data; tos = otherStack.tos; } chapter Inheritance key skills & concepts j Understand inheritance basics j Call superclass constructors j Use super to access superclass members j Create a multilevel class hierarchy j Know when constructors are executed j Understand superclass references to subclass objects j Override methods j Use overridden methods to support polymorphism j Use abstract classes j Use final j Know the Object class Inheritance is one of the three foundational principles of object-oriented programming because it allows the creation of hierarchical classifications. Using inheritance, you can create a general class that defines traits common to a set of related items. This class can then be inherited by other, more specific classes, each adding those things that are unique to it. In the language of Java, a class that is inherited is called a superclass. The class that does the inheriting is called a subclass. Therefore, a subclass is a specialized version of a superclass. It inherits all of the variables and methods defined by the superclass and adds its own, unique elements. InherItance BasIcs Java supports inheritance by allowing one class to incorporate another class into its dec- laration. This is done by using the extends keyword. Thus, the subclass adds to (extends) the superclass. 257 7 258 chapter 7 Inheritance Let’s begin with a short example that illustrates several of the key features of inheritance. The following program creates a superclass called TwoDShape, which stores the width and height of a two-dimensional object, and a subclass called Triangle. Notice how the keyword extends is used to create a subclass. // A simple class hierarchy. // A class for two-dimensional objects. class TwoDShape { double width; double height; void showDim() { System.out.println("Width and height are " + width + " and " + height); } } // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { String style; Triangle inherits TwoDShape. return width * height / 2; Triangle can refer to the members of } TwoDShape as if they were part of Triangle. void showStyle() { System.out.println("Triangle is " + style); } } class Shapes { public static void main(String[] args) { double area() { Triangle t1 = new Triangle(); Triangle t2 = new Triangle(); t1.width = 4.0; t1.height = 4.0; t1.style = "filled"; t2.width = 8.0; t2.height = 12.0; t2.style = "outlined"; All members of Triangle are available to Triangle objects, even those inherited from TwoDShape. System.out.println("Info for t1: "); t1.showStyle(); t1.showDim(); System.out.println("Area is " + t1.area()); System.out.println(); System.out.println("Info for t2: "); t2.showStyle(); t2.showDim(); System.out.println("Area is " + t2.area()); } } The output from this program is shown here: Info for t1: Triangle is filled Width and height are 4.0 and 4.0 Area is 8.0 Info for t2: Triangle is outlined Width and height are 8.0 and 12.0 Area is 48.0 Here, TwoDShape defines the attributes of a “generic” two-dimensional shape, such as a square, rectangle, or triangle. The Triangle class creates a specific type of TwoDShape, in this case, a triangle. The Triangle class includes all of TwoDShape and adds the field style, the method area( ), and the method showStyle( ). The tri- angle’s style is stored in style. This can be any string that describes the triangle, such as "filled", "outlined", "transparent", or even something like "warning symbol", "isosceles", or "rounded". The area( ) method computes and returns the area of the triangle, and showStyle( ) displays the triangle style. Because Triangle includes all of the members of its superclass, TwoDShape, it can access width and height inside area( ). Also, inside main( ), objects t1 and t2 can refer to width and height directly, as if they were part of Triangle. Figure 7-1 depicts conceptually how TwoDShape is incorporated into Triangle. Even though TwoDShape is a superclass for Triangle, it is also a completely independent, stand-alone class. Being a superclass for a subclass does not mean that the superclass cannot be used by itself. For example, the following is perfectly valid. TwoDShape Triangle FIgure 7-1: a conceptual depiction of the Triangle class Java programming 259 width height showDim( ) style area( ) showStyle( ) 260 chapter 7 Inheritance TwoDShape shape = new TwoDShape(); shape.width = 10; shape.height = 20; shape.showDim(); Of course, an object of TwoDShape has no knowledge of or access to any subclasses of TwoDShape. The general form of a class declaration that inherits a superclass is shown here: class subclass-name extends superclass-name { // body of class } You can specify only one superclass for any subclass that you create. Java does not support the inheritance of multiple superclasses into a single subclass. You can, how- ever, create a hierarchy of inheritance in which a subclass becomes a superclass of another subclass. Of course, no class can be a superclass of itself. A major advantage of inheritance is that once you have created a superclass that defines the attributes common to a set of objects, it can be used to create any number of more specific subclasses. Each subclass can precisely tailor its own classification. For example, here is another subclass of TwoDShape that encapsulates rectangles. // A subclass of TwoDShape for rectangles. class Rectangle extends TwoDShape { boolean isSquare() { if(width == height) return true; return false; } double area() { return width * height; } } The Rectangle class includes TwoDShape and adds the methods isSquare( ), which determines if the rectangle is square, and area( ), which computes the area of a rect- angle. Notice that Rectangle does not have a style field or a showStyle( ) method. Although Triangle adds those members, it does not mean that Rectangle (or any other subclass of TwoDShape) must also add them. Except for sharing a common superclass, each subclass is independent. Of course, subclasses can provide similar members, as is the case with the area( ) method. Although it is implemented differently, both Triangle and Rectangle provide this method. MeMBer access and InherItance As you learned in Chapter 6, often an instance variable of a class will be declared private to prevent its unauthorized use or tampering. Inheriting a class does not over- rule the private access restriction. Thus, even though a subclass includes all of the Java programming 261 members of its superclass, it cannot access those members of the superclass that have been declared private. For example, if, as shown here, width and height are made private in TwoDShape, then Triangle will not be able to access them. // Private members of a superclass are not accessible by a subclass. // This example will not compile. // A class for two-dimensional objects. class TwoDShape { private double width; // these are private double height; // now private void showDim() { System.out.println("Width and height are " + width + " and " + height); } } // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { String style; double area() { return width * height / 2; // Error! can't access } void showStyle() { System.out.println("Triangle is " + style); } } Can’t access a private member of a superclass. The Triangle class will not compile because the reference to width and height inside the area( ) method causes an access violation. Since width and height are now declared private in TwoDShape, they are accessible only by other members of TwoDShape. Subclasses have no access to them. Remember that a class member that has been declared private will remain private to its class. It is not accessible by any code outside its class, including subclasses. At first, you might think that the fact that subclasses do not have access to the private members of superclasses is a serious restriction that would prevent the use of private members in many situations. However, this is not true. As explained in Chapter 6, Java programmers typically use accessor methods to provide access to the private instance variables of a class. Here is a rewrite of the TwoDShape and Triangle classes that uses methods to access the private instance variables width and height. // Use accessor methods to set and get private members. // A class for two-dimensional objects. class TwoDShape { private double width; // these are private double height; // now private 262 chapter 7 Inheritance // Accessor methods for width and height. double getWidth() { return width; } double getHeight() { return height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; } void showDim() { System.out.println("Width and height are " + width + " and " + height); } } // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { Accessor methods for width and height String style; Use accessor methods provided by superclass. double area() { return getWidth() * getHeight() / 2; } void showStyle() { System.out.println("Triangle is " + style); } } class Shapes2 { public static void main(String[] args) { Triangle t1 = new Triangle(); Triangle t2 = new Triangle(); t1.setWidth(4.0); t1.setHeight(4.0); t1.style = "filled"; t2.setWidth(8.0); t2.setHeight(12.0); t2.style = "outlined"; System.out.println("Info for t1: "); t1.showStyle(); t1.showDim(); System.out.println("Area is " + t1.area()); System.out.println(); System.out.println("Info for t2: "); t2.showStyle(); t2.showDim(); System.out.println("Area is " + t2.area()); } } Java programming 263 ask the expert QAWhen should I make an instance variable private? There are no hard and fast rules that fit every situation, but here are two gen- eral principles. If an instance variable is to be used only by methods defined within its class, then it should be made private. If an instance variable must be within certain bounds, then it should be private and made available only through accessor methods. This way, you can prevent invalid values from being assigned. Furthermore, using accessor methods to access data lets you more easily change your class’s implementation without affecting the users of your class. progress check 1. When creating a subclass, what keyword is used to include a superclass? 2. Does a subclass include the members of its superclass? 3. Does a subclass have access to the private members of its superclass? constructors and InherItance In a hierarchy, it is possible for both superclasses and subclasses to have their own constructors. This raises an important question: what constructor is responsible for building an object of the subclass—the one in the superclass, the one in the subclass, or both? The answer is this: the constructor for the superclass constructs the superclass portion of the object, and the constructor for the subclass constructs the subclass part. This makes sense because the superclass has no knowledge of or access to any ele- ment in a subclass. Thus, their construction must be separate. The preceding examples have relied on the default constructors created automatically by Java, so this was not an issue. However, in practice, most classes will have explicit constructors. Here you will see how to handle this situation. When only the subclass defines a constructor, the process is straightforward: sim- ply construct the subclass object. The superclass portion of the object is constructed automatically using its default constructor. For example, here is a reworked version of Triangle that defines a constructor. It also makes style private, since it is now set by the constructor. Answers: 1. extends 2. Yes. 3. No. 264 chapter 7 Inheritance // Add a constructor to Triangle. // A class for two-dimensional objects. class TwoDShape { private double width; // these are private double height; // now private // Accessor methods for width and height. double getWidth() { return width; } double getHeight() { return height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; } void showDim() { System.out.println("Width and height are " + width + " and " + height); } } // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { private String style; // Constructor Triangle(String s, double w, double h) { setWidth(w); setHeight(h); style = s; } Initialize TwoDShape portion of object. double area() { return getWidth() * getHeight() / 2; } void showStyle() { System.out.println("Triangle is " + style); } } class Shapes3 { public static void main(String[] args) { Triangle t1 = new Triangle("filled", 4.0, 4.0); Triangle t2 = new Triangle("outlined", 8.0, 12.0); System.out.println("Info for t1: "); t1.showStyle(); t1.showDim(); System.out.println("Area is " + t1.area()); System.out.println(); System.out.println("Info for t2: "); t2.showStyle(); t2.showDim(); System.out.println("Area is " + t2.area()); } } Here, Triangle’s constructor initializes the members of TwoDClass that it inherits along with its own style field. When both the superclass and the subclass define constructors, the process is a bit more complicated because both the superclass and subclass constructors must be executed. In this case you must use another of Java’s keywords, super, which has two general forms. The first calls a superclass constructor. The second is used to access a member of the superclass that has been hidden by a member of a subclass. Here, we will look at its first use. usIng super to call superclass constructors A subclass can call a constructor defined by its superclass by use of the following form of super: super(parameter-list); Here, parameter-list specifies any parameters needed by the constructor in the super- class. super( ) must always be the first statement executed inside a subclass construc- tor. To see how super( ) is used, consider the version of TwoDShape in the following program. It defines a constructor that initializes width and height. Java programming 265 // Add constructors to TwoDShape. class TwoDShape { private double width; private double height; // Parameterized constructor. TwoDShape(double w, double h) { width = w; height = h; } // Accessor methods for width and height. double getWidth() { return width; } double getHeight() { return height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; } A constructor for TwoDShape void showDim() { System.out.println("Width and height are " + width + " and " + height); } 266 chapter 7 Inheritance } // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { private String style; Triangle(String s, double w, double h) { super(w, h); // call superclass constructor style = s; } Use super( ) to execute the TwoDShape constructor. double area() { return getWidth() * getHeight() / 2; } void showStyle() { System.out.println("Triangle is " + style); } } class Shapes4 { public static void main(String[] args) { Triangle t1 = new Triangle("filled", 4.0, 4.0); Triangle t2 = new Triangle("outlined", 8.0, 12.0); System.out.println("Info for t1: "); t1.showStyle(); t1.showDim(); System.out.println("Area is " + t1.area()); System.out.println(); System.out.println("Info for t2: "); t2.showStyle(); t2.showDim(); System.out.println("Area is " + t2.area()); } } Here, Triangle( ) calls super( ) with the parameters w and h. This causes the TwoDShape( ) constructor to be called, which initializes width and height using these values. Triangle no longer initializes these values itself. It need only initialize the value unique to it: style. This leaves TwoDShape free to construct its portion in any manner that it so chooses. Furthermore, TwoDShape can add functionality about which existing subclasses have no knowledge, thus preventing existing code from breaking. Any form of constructor defined by the superclass can be called by super( ). The constructor executed will be the one that matches the arguments. For example, here are expanded versions of both TwoDShape and Triangle that include default con- structors and constructors that take one argument. // Add more constructors to TwoDShape. class TwoDShape { private double width; private double height; // A default constructor. TwoDShape() { width = height = 0.0; } // Parameterized constructor. TwoDShape(double w, double h) { width = w; height = h; } // Construct object with equal width and height. TwoDShape(double x) { width = height = x; } // Accessor methods for width and height. double getWidth() { return width; } double getHeight() { return height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; } void showDim() { System.out.println("Width and height are " + width + " and " + height); } } // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { private String style; // A default constructor. Triangle() { super(); style = "none"; } // Constructor Triangle(String s, double w, double h) { super(w, h); // call superclass constructor style = s; } // One argument constructor. Triangle(double x) { Use super( ) to call the various forms of the TwoDShape constructor. Java programming 267 super(x); // call superclass constructor 268 chapter 7 Inheritance // default style to filled style = "filled"; } double area() { return getWidth() * getHeight() / 2; } void showStyle() { System.out.println("Triangle is " + style); } } class Shapes5 { public static Triangle t1 Triangle t2 Triangle t3 void main(String[] args) { = new Triangle(); = new Triangle("outlined", 8.0, = new Triangle(4.0); 12.0); t1 = t2; System.out.println("Info for t1: "); t1.showStyle(); t1.showDim(); System.out.println("Area is " + t1.area()); System.out.println(); System.out.println("Info for t2: "); t2.showStyle(); t2.showDim(); System.out.println("Area is " + t2.area()); System.out.println(); System.out.println("Info for t3: "); t3.showStyle(); t3.showDim(); System.out.println("Area is " + t3.area()); System.out.println(); } } Here is the output from this version. Info for t1: Triangle is outlined Width and height are 8.0 and 12.0 Area is 48.0 Info for t2: Triangle is outlined Width and height are 8.0 and 12.0 Area is 48.0 Info for t3: Triangle is filled Width and height are 4.0 and 4.0 Area is 8.0 Let’s review the key concepts behind super( ). When a subclass calls super( ), it is calling the constructor of its immediate superclass. Thus, super( ) always refers to the superclass immediately above the calling class. This is true even in a multilevel hierarchy. Also, super( ) must always be the first statement executed inside a subclass constructor. 1. How does a subclass execute its superclass’s constructor? 2. Can parameters be passed via super( )? 3. Can a call to super( ) go anywhere within a subclass’s constructor? usIng super to access superclass MeMBers There is a second form of super that acts somewhat like this, except that it always refers to the superclass of the subclass in which it is used. This usage has the follow- ing general form: super.member Here, member can be either a method or an instance variable. This form of super is most applicable to situations in which member names of a subclass hide members by the same name in the superclass. Consider this simple class hierarchy: // Using super to overcome name hiding. class A { int i; } // Create a subclass by extending class A. class B extends A { int i; // this i hides the i in A Answers: 1. It calls super( ). 2. Yes. 3. No, it must be the first statement executed. Java programming 269 progress check 270 chapter 7 Inheritance B(int a, int b) { super.i = a; // i in A Here, super.i refers to the i in A. i = b; // i in B } void show() { System.out.println("i in superclass: " + super.i); System.out.println("i in subclass: " + i); } } class UseSuper { public static void main(String[] args) { B subOb = new B(1, 2); subOb.show(); } } This program displays the following: i in superclass: 1 i in subclass: 2 Although the instance variable i in B hides the i in A, super allows access to the i defined in the superclass. super can also be used to call methods that are hidden by a subclass. Try This 7-1 Extending the Vehicle Class TruckDemo.java To illustrate the power of inheritance, we will extend the Vehicle class first devel- oped in Chapter 4. As you should recall, Vehicle encapsulates information about vehicles, including the number of passengers they can carry, their fuel capacity, and their fuel consumption rate. We can use the Vehicle class as a starting point from which more specialized classes are developed. For example, one type of vehicle is a truck. An important attribute of a truck is its cargo capacity. Thus, to create a Truck class, you can extend Vehicle, adding an instance variable that stores the carrying capacity. This project shows how. In the process, the instance variables in Vehicle will be made private, and accessor methods are provided to get and set their values. STep-By-STep 1. Create a file called TruckDemo.java and copy the last implementation of Vehicle from Chapter 4 into the file. Java programming 271 2. Create the Truck class as shown here. // Extend Vehicle to create a Truck specialization. class Truck extends Vehicle { private int cargoCap; // cargo capacity in pounds // This is a constructor for Truck. Truck(int p, int f, int m, int c) { /* Initialize Vehicle members using Vehicle's constructor. */ super(p, f, m); cargoCap = c; } // Accessor methods for cargoCap. int getCargo() { return cargoCap; } void putCargo(int c) { cargoCap = c; } } Here, Truck inherits Vehicle, adding cargoCap, getCargo( ), and putCargo( ). Thus, Truck includes all of the general vehicle attributes defined by Vehicle. It need add only those items that are unique to its own class. 3. Next, make the instance variables of Vehicle private, as shown here. private int passengers; // number of passengers private int fuelCap; // fuel capacity in gallons private int mpg; // fuel consumption in miles per gallon 4. Because the instance variables of Vehicle are now private, you will need the following accessor methods to set or get their values. int getPassengers() { return passengers; } void setPassengers(int p) { passengers = p; } int getFuelCap() { return fuelCap; } void setFuelCap(int f) { fuelCap = f; } int getMpg() { return mpg; } void setMpg(int m) { mpg = m; } 5. Here is an entire program that demonstrates the Truck class and the changes to Vehicle. // Try This 7-1 // // Build a subclass of Vehicle for trucks. class Vehicle { private int passengers; // number of passengers private int fuelCap; // fuel capacity in gallons private int mpg; // fuel consumption in miles per gallon 272 chapter 7 Inheritance // This is a constructor for Vehicle. Vehicle(int p, int f, int m) { passengers = p; fuelCap = f; mpg = m; } // Return the range. int range() { return mpg * fuelCap; } // Compute fuel needed for a given distance. double fuelNeeded(int miles) { return (double) miles / mpg; } // Accessor methods for instance variables. int getPassengers() { return passengers; } void setPassengers(int p) { passengers = p; } int getFuelCap() { return fuelCap; } void setFuelCap(int f) { fuelCap = f; } int getMpg() { return mpg; } void setMpg(int m) { mpg = m; } } // Extend Vehicle to create a Truck specialization. class Truck extends Vehicle { private int cargoCap; // cargo capacity in pounds // This is a constructor for Truck. Truck(int p, int f, int m, int c) { /* Initialize Vehicle members using Vehicle’s constructor. */ super(p, f, m); cargoCap = c; } // Accessor methods for cargoCap. int getCargo() { return cargoCap; } void putCargo(int c) { cargoCap = c; } } class TruckDemo { public static void main(String[] args) { Java programming 273 // construct some trucks Truck semi = new Truck(2, 200, 7, 44000); Truck pickup = new Truck(3, 28, 15, 2000); double gallons; int dist = 252; gallons = semi.fuelNeeded(dist); System.out.println("Semi can carry " + semi.getCargo() + " pounds."); System.out.println("To go " + dist + " miles semi needs " + gallons + " gallons of fuel.\n"); gallons = pickup.fuelNeeded(dist); System.out.println("Pickup can carry " + pickup.getCargo() + " pounds."); System.out.println("To go " + dist + " miles pickup needs " + gallons + " gallons of fuel."); } } 6. The output from this program is shown here: Semi can carry 44000 pounds. To go 252 miles semi needs 36.0 gallons of fuel. Pickup can carry 2000 pounds. To go 252 miles pickup needs 16.8 gallons of fuel. 7. Many other types of classes can be derived from Vehicle. For example, the following skeleton creates an off-road class that stores the ground clearance of the vehicle. // Create an off-road vehicle class class OffRoad extends Vehicle { private int groundClearance; // ground clearance in inches // ... } The key point is that once you have created a superclass that defines the general aspects of an object, that superclass can be inherited to form special- ized classes. Each subclass simply adds its own, unique attributes. This is the essence of inheritance. creatIng a MultIleVel hIerarchy Up to this point, we have been using simple class hierarchies that consist of only a superclass and a subclass. However, you can build hierarchies that contain as many layers of inheritance as you like. As mentioned, it is perfectly acceptable to use a 274 chapter 7 Inheritance subclass as a superclass of another. For example, given three classes called A, B, and C, C can be a subclass of B, which is a subclass of A. When this type of situation occurs, each subclass inherits all of the traits found in all of its superclasses. In this case, C inherits all aspects of B and A. To see how a multilevel hierarchy can be useful, consider the following pro- gram. In it, the subclass Triangle is used as a superclass to create the subclass called ColorTriangle. ColorTriangle inherits all of the traits of Triangle and TwoDShape and adds a field called color, which holds the color of the triangle. // A multilevel hierarchy. class TwoDShape { private double width; private double height; // A default constructor. TwoDShape() { width = height = 0.0; } // Parameterized constructor. TwoDShape(double w, double h) { width = w; height = h; } // Construct object with equal width and height. TwoDShape(double x) { width = height = x; } // Accessor methods for width and height. double getWidth() { return width; } double getHeight() { return height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; } void showDim() { System.out.println("Width and height are " + width + " and " + height); } } // Extend TwoDShape. class Triangle extends TwoDShape { private String style; // A default constructor. Triangle() { super(); style = "none"; } Triangle(String s, double w, double h) { super(w, h); // call superclass constructor style = s; } // One argument constructor. Triangle(double x) { super(x); // call superclass constructor // default style to filled style = "filled"; } double area() { return getWidth() * getHeight() / 2; } void showStyle() { System.out.println("Triangle is " + style); } } // Extend Triangle. class ColorTriangle extends Triangle { private String color; ColorTriangle(String c, String s, double w, double h) { super(s, w, h); color = c; } String getColor() { return color; } Java programming 275 ColorTriangle inherits Triangle, which is descended from TwoDShape, so ColorTriangle includes all members of Triangle and TwoDShape. void showColor() { System.out.println("Color is " + color); } } class Shapes6 { public static void main(String[] args) { ColorTriangle t1 = new ColorTriangle("Blue", "outlined", 8.0, 12.0); ColorTriangle t2 = new ColorTriangle("Red", "filled", 2.0, 2.0); 276 chapter 7 Inheritance System.out.println("Info for t1: "); t1.showStyle(); t1.showDim(); t1.showColor(); System.out.println("Area is " + t1.area()); System.out.println(); System.out.println("Info for t2: "); t2.showColor(); System.out.println("Area is " + t2.area()); } t2.showStyle(); A ColorTriangle object can call methods t2.showDim(); defined by itself and its superclasses. } The output of this program is shown here: Info for t1: Triangle is outlined Width and height are 8.0 and 12.0 Color is Blue Area is 48.0 Info for t2: Triangle is filled Width and height are 2.0 and 2.0 Color is Red Area is 2.0 Because of inheritance, ColorTriangle can make use of the previously defined classes of Triangle and TwoDShape, adding only the extra information it needs for its own, specific application. This is part of the value of inheritance; it allows the reuse of code. This example illustrates one other important point: super( ) always refers to the constructor in the closest superclass. The super( ) in ColorTriangle calls the con- structor in Triangle. The super( ) in Triangle calls the constructor in TwoDShape. In a class hierarchy, if a superclass constructor requires parameters, then all subclasses must pass those parameters “up the line.” This is true whether or not a subclass needs parameters of its own. When are constructors eXecuted? In the foregoing discussion of inheritance and class hierarchies, an important question may have occurred to you: When a subclass object is created, whose constructor is executed first, the one in the subclass or the one defined by the superclass? For exam- ple, given a subclass called B and a superclass called A, is A’s constructor executed before B’s, or vice versa? The answer is that in a class hierarchy, constructors com- plete their execution in order of derivation, from superclass to subclass. Further, since super( ) must be the first statement executed in a subclass’s constructor, this order is the same whether or not super( ) is used. If super( ) is not used, then the default Java programming 277 (parameterless) constructor of each superclass will be executed. The following pro- gram illustrates when constructors are executed: // Demonstrate when constructors are executed. // Create a super class. class A { A() { System.out.println("Constructing A."); } } // Create a subclass by extending class A. class B extends A { B() { System.out.println("Constructing B."); } } // Create another subclass by extending B. class C extends B { C() { System.out.println("Constructing C."); } } class OrderOfConstruction { public static void main(String[] args) { C c = new C(); The output from this program is shown here: Constructing A. Constructing B. Constructing C. Construct a C object. } } As you can see, the constructors are executed in order of derivation. If you think about it, it makes sense that constructors are executed in order of derivation. Because a superclass has no knowledge of any subclass, any initialization it needs to perform is separate from and possibly prerequisite to any initialization performed by the subclass. Therefore, it must complete its execution first. superclass reFerences and suBclass oBJects As you know, Java is a strongly typed language. Aside from the standard conver- sions and automatic promotions that apply to its primitive types, type compatibil- ity is strictly enforced. Therefore, a reference variable for one class type cannot 278 chapter 7 Inheritance normally refer to an object of another class type. For example, consider the follow- ing program. // This will not compile. class X { int a; X(int i) { a = i; } } class Y { int a; Y(int i) { a = i; } } class IncompatibleRef { public static void main(String[] args) { X x = new X(10); X x2; Y y = new Y(5); x2 = x; // OK, both of same type x2 = y; // Error, not of same type } } $eol Here, even though class X and class y are physically the same, it is not possible to assign to an X variable a reference to a y object because they have different types. In general, an object reference variable can refer only to objects of its type. There is, however, an important exception to Java’s strict type enforcement. A reference variable of a superclass can be assigned a reference to an object of any sub- class derived from that superclass. In other words, a superclass reference can refer to a subclass object. Here is an example: // A superclass reference can refer to a subclass object. class X { int a; X(int i) { a = i; } } class Y extends X { int b; Y(int i, int j) { super(j); b = i; } } Java programming 279 class SupSubRef { public static void main(String[] args) { X x = new X(10); X x2; Y y = new Y(5, 6); x2 = x; // OK, both of same type System.out.println("x2.a: " + x2.a); x2 = y; // still OK because Y is derived from X System.out.println("x2.a: " + x2.a); // X references know only about X members x2.a = 19; // OK // x2.b = 27; // Error, X doesn't have a b member } } OK because y is a subclass of X; thus x2 can refer to y. Here, y is now derived from X; thus it is permissible for x2 to be assigned a reference to a y object. It is important to understand that it is the type of the reference variable—not the type of the object that it refers to—that determines what members can be accessed. That is, when a reference to a subclass object is assigned to a superclass reference variable, you will have access only to those parts of the object defined by the super- class. This is why x2 can’t access b even when it refers to a y object. If you think about it, this makes sense, because the superclass has no knowledge of what a subclass adds to it. This is why the last line of code in the program is commented out. Although the preceding discussion may seem a bit esoteric, it has some important practical applications. One is described here. The other is discussed later in this chap- ter, when method overriding is covered. An important place where subclass references are assigned to superclass variables is when constructors are called in a class hierarchy. As you know, it is common for a class to define a constructor that takes an object of the class as a parameter. This allows the class to construct a copy of an object. Subclasses of such a class can take advantage of this feature. For example, consider the following versions of TwoDShape and Triangle. Both add constructors that take an object as a parameter. class TwoDShape { private double width; private double height; // A default constructor. TwoDShape() { width = height = 0.0; } // Parameterized constructor. TwoDShape(double w, double h) { 280 chapter 7 Inheritance width = w; height = h; } // Construct an object with equal width and height. TwoDShape(double x) { width = height = x; } // Construct an object from an object. TwoDShape(TwoDShape ob) { Construct object from an object. width = ob.width; height = ob.height; } // Accessor methods for width and height. double getWidth() { return width; } double getHeight() { return height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; } void showDim() { System.out.println("Width and height are " + width + " and " + height); } } // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { private String style; // A default constructor. Triangle() { super(); style = "none"; } // Constructor for Triangle. Triangle(String s, double w, double h) { super(w, h); // call superclass constructor style = s; } // One argument constructor. Triangle(double x) { super(x); // call superclass constructor // default style to filled style = "filled"; } // Construct an object from an object. Triangle(Triangle ob) { super(ob); // pass object to TwoDShape constructor style = ob.style; } double area() { return getWidth() * getHeight() / 2; } Pass a Triangle reference to TwoDShape’s constructor. Java programming 281 void showStyle() { System.out.println("Triangle is " + style); } } class Shapes7 { public static void main(String[] args) { Triangle t1 = new Triangle("outlined", 8.0, 12.0); // make a copy of t1 Triangle t2 = new Triangle(t1); System.out.println("Info for t1: "); t1.showStyle(); t1.showDim(); System.out.println("Area is " + t1.area()); System.out.println(); System.out.println("Info for t2: "); t2.showStyle(); t2.showDim(); System.out.println("Area is " + t2.area()); } } In this program, t2 is constructed from t1 and is, thus, identical. The output is shown here. Info for t1: Triangle is outlined Width and height are 8.0 and 12.0 Area is 48.0 Info for t2: Triangle is outlined Width and height are 8.0 and 12.0 Area is 48.0 282 chapter 7 Inheritance Pay special attention to this Triangle constructor: // Construct an object from an object. Triangle(Triangle ob) { super(ob); // pass object to TwoDShape constructor style = ob.style; } It receives an object of type Triangle, and it passes that object (through super) to this TwoDShape constructor: // Construct an object from an object. TwoDShape(TwoDShape ob) { width = ob.width; height = ob.height; } The key point is that TwoDshape( ) is expecting a TwoDShape object. However, Triangle( ) passes it a Triangle object. The reason this works is because, as explained, a superclass reference can refer to a subclass object. Thus it is perfectly acceptable to pass TwoDShape( ) a reference to an object of a class derived from TwoDShape. Because the TwoDShape( ) constructor is initializing only those portions of the sub- class object that are members of TwoDShape, it doesn’t matter that the object might also contain other members added by derived classes. 1. Can a subclass be used as a superclass for another subclass? 2. In a class hierarchy, in what order are the constructors called? 3. Given that Jet extends Airplane, can an Airplane reference refer to a Jet object? Method oVerrIdIng In a class hierarchy, when a method in a subclass has the same return type and sig- nature as a method in its superclass, then the method in the subclass is said to over- ride the method in the superclass. When an overridden method is called from within a subclass, it will always refer to the version of that method defined by that subclass. Answers: 1. Yes. 2. Constructors are called in order of derivation. 3. Yes. In all cases, a superclass reference can refer to a subclass object, but not vice versa. progress check Java programming 283 The version of the method defined by the superclass will be hidden. Consider the fol- lowing: // Method overriding. class A { int i, j; A(int a, int b) { i = a; j = b; } // display i and j void show() { System.out.println("i and j: " + i + " " + j); } } class B extends A { int k; B(int a, int b, int c) { super(a, b); k = c; } // display k – this overrides show() in A void show() { This show( ) in B overrides the one defined by A. System.out.println("k: " + k); } } class Override { public static void main(String[] args) { B subOb = new B(1, 2, 3); subOb.show(); // this calls show() in B } } The output produced by this program is shown here: k: 3 When show( ) is invoked on an object of type B, the version of show( ) defined within B is used. That is, the version of show( ) inside B overrides the version declared in A. If you want to access the superclass version of an overridden method, you can do so by using super. For example, in this version of B, the superclass version of show( ) is invoked within the subclass’s version. This allows all instance variables to be displayed. 284 chapter 7 Inheritance class B extends A { int k; B(int a, int b, int c) { super(a, b); k = c; } void show() { super.show(); // this calls A′s show() System.out.println("k: " + k); } } Use super to call the version of show( ) defined by superclass A. If you substitute this version of show( ) into the previous program, you will see the following output: i and j: 1 2 k: 3 Here, super.show( ) calls the superclass version of show( ). Method overriding occurs only when the signatures of the two methods are identi- cal. If they are not, then the two methods are simply overloaded. For example, con- sider this modified version of the preceding example: /* Methods with differing signatures are overloaded and not overridden. */ class A { int i, j; A(int a, int b) { i = a; j = b; } // display i and j void show() { System.out.println("i and j: " + i + " " + j); } } // Create a subclass by extending class A. class B extends A { int k; B(int a, int b, int c) { super(a, b); k = c; } // overload show() void show(String msg) { Because signatures differ, this show( ) simply overloads show( ) in superclass A. System.out.println(msg + k); } } class Overload { public static void main(String[] args) { B subOb = new B(1, 2, 3); subOb.show("This is k: "); // this calls show() in B subOb.show(); // this calls show() in A } } The output produced by this program is shown here: This is k: 3 i and j: 1 2 The version of show( ) in B takes a string parameter. This makes its signature differ- ent from the one in A, which takes no parameters. Therefore, no overriding (or name hiding) takes place. oVerrIdden Methods support polyMorphIsM While the examples in the preceding section demonstrate the mechanics of method overriding, they do not show its power. Indeed, if there were nothing more to method overriding than a name space convention, then it would be, at best, an interesting curiosity but of little real value. However, this is not the case. Method overriding forms the basis for one of Java’s most powerful concepts: dynamic method dispatch. Dynamic method dispatch is the mechanism by which a call to an overridden method is resolved at run time rather than compile time. Dynamic method dispatch is important because this is how Java implements run-time polymorphism. Let’s begin by restating an important principle: a superclass reference variable can refer to a subclass object. Java uses this fact to resolve calls to overridden methods at run time. Here’s how. When an overridden method is called through a superclass reference, Java determines which version of that method to execute based on the type of the object being referred to at the time the call occurs. Thus, this determination is made at run time. When different types of objects are referred to, different versions of an overridden method will be called. In other words, it is the type of the object being referred to (not the type of the reference variable) that determines which version of an overridden method will be executed. Therefore, if a superclass contains a method that is overridden by a subclass, then when different types of subclass objects are referred to through a superclass reference variable, different versions of the method are executed. Java programming 285 286 chapter 7 Inheritance Here is an example that illustrates dynamic method dispatch: // Demonstrate dynamic method dispatch. class Sup { void who() { System.out.println("who() in Sup"); } } class Sub1 extends Sup { void who() { System.out.println("who() in Sub1"); } } class Sub2 extends Sup { void who() { System.out.println("who() in Sub2"); } } class DynDispDemo { public static Sup superOb Sub1 subOb1 Sub2 subOb2 Sup supRef; supRef = superOb; supRef.who(); supRef = subOb1; supRef.who(); supRef = subOb2; supRef.who(); } } void main(String[] args) { = new Sup(); = new Sub1(); = new Sub2(); In each case, the version of who( ) to call is determined at run time by the type of object being referred to. The output from the program is shown here: who() in Sup who() in Sub1 who() in Sub2 This program creates a superclass called Sup and two subclasses of it, called Sub1 and Sub2. Sup declares a method called who( ), and the subclasses override it. Inside the main( ) method, objects of type Sup, Sub1, and Sub2 are declared. Also, a reference of type Sup, called supRef, is declared. The program then assigns a reference to each type of object to supRef and uses that reference to call who( ). As the output shows, Java programming 287 the version of who( ) executed is determined by the type of object being referred to at the time of the call, not by the class type of supRef. ask the expert Q Are there any other object-oriented programming languages that support method overriding? Or is it unique to Java? AMethod overriding is not unique to Java. For example, both C++ and C# sup- port method overriding. In C++, it is through the use of virtual functions. In C#, it is through the use of virtual methods. However, in both, the effect is similar to that found in Java. Why oVerrIdden Methods? As stated earlier, overridden methods allow Java to support run-time polymorphism. Polymorphism is essential to object-oriented programming for one reason: it allows a general class to specify methods that will be common to all of its derivatives, while allowing subclasses to define the specific implementation of some or all of those methods. Overridden methods are another way that Java implements the “one interface, multiple methods” aspect of polymorphism. Part of the key to successfully applying polymorphism is understanding that the superclasses and subclasses form a hierarchy that moves from lesser to greater specialization. Used correctly, the super- class provides all elements that a subclass can use directly. It also specifies those methods that the derived class must implement on its own. This allows the subclass the flexibility to define its own methods, yet still enforces a consistent interface. Thus, by combining inheritance with overridden methods, a superclass can define the gen- eral form of the methods that will be used by all of its subclasses. applying Method overriding to twodshape To better understand the power of method overriding, we will apply it to the TwoDShape class. In the preceding examples, each class derived from TwoDShape defines a method called area( ). This suggests that it might be better to make area( ) part of the TwoDShape class, allowing each subclass to override it, defining how the area is calculated for the type of shape that the class encapsulates. The following program does this. For convenience, it also adds a name field to TwoDShape. (This makes it easier to write demonstration programs.) // Use dynamic method dispatch. class TwoDShape { private double width; private double height; private String name; // A default constructor. TwoDShape() { 288 chapter 7 Inheritance width = height = 0.0; name = "none"; } // Parameterized constructor. TwoDShape(double w, double h, String n) { width = w; height = h; name = n; } // Construct object with equal width and height. TwoDShape(double x, String n) { width = height = x; name = n; } // Construct an object from an object. TwoDShape(TwoDShape ob) { width = ob.width; height = ob.height; name = ob.name; } // Accessor methods for width and height. double getWidth() { return width; } double getHeight() { return height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; } String getName() { return name; } void showDim() { System.out.println("Width and height are " + } width + " and " + height); The area( ) method defined by TwoDShape double area() { System.out.println("area() must be overridden"); return 0.0; } } // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { private String style; // A default constructor. Triangle() { super(); style = "none"; } // Constructor for Triangle. Triangle(String s, double w, double h) { super(w, h, "triangle"); style = s; } // One argument constructor. Triangle(double x) { super(x, "triangle"); // call superclass constructor // default style to filled style = "filled"; } // Construct an object from an object. Triangle(Triangle ob) { super(ob); // pass object to TwoDShape constructor style = ob.style; } // Override area() for Triangle. double area() { Override area( ) for Triangle. return getWidth() * getHeight() / 2; } void showStyle() { System.out.println("Triangle is " + style); } } // A subclass of TwoDShape for rectangles. class Rectangle extends TwoDShape { // A default constructor. Rectangle() { super(); } // Constructor for Rectangle. Rectangle(double w, double h) { super(w, h, "rectangle"); // call superclass constructor } // Construct a square. Rectangle(double x) { super(x, "rectangle"); // call superclass constructor } Java programming 289 290 chapter 7 Inheritance // Construct an object from an object. Rectangle(Rectangle ob) { super(ob); // pass object to TwoDShape constructor } boolean isSquare() { if(getWidth() == getHeight()) return true; return false; } // Override area() for Rectangle. double area() { Override area( ) for Rectangle. return getWidth() * getHeight(); } } class DynShapes { public static void main(String[] args) { TwoDShape[] shapes = new TwoDShape[5]; shapes[0] = new Triangle("outlined", 8.0, 12.0); shapes[1] = new Rectangle(10); shapes[2] = new Rectangle(10, 4); shapes[3] = new Triangle(7.0); shapes[4] = new TwoDShape(10, 20, "generic"); The proper version of area( ) is called for each shape. for(TwoDShape shape : shapes) { System.out.println("object is " + shape.getName()); System.out.println("Area is " + shape.area()); System.out.println(); } } } The output from the program is shown here: object is triangle Area is 48.0 object is rectangle Area is 100.0 object is rectangle Area is 40.0 object is triangle Area is 24.5 object is generic area() must be overridden Area is 0.0 Java programming 291 Let’s examine this program closely. First, as explained, area( ) is now part of the TwoDShape class and is overridden by Triangle and Rectangle. Inside TwoDShape, area( ) is given a placeholder implementation that simply informs the user that this method must be overridden by a subclass. Each override of area( ) supplies an imple- mentation that is suitable for the type of object encapsulated by the subclass. Thus, if you were to implement an ellipse class, for example, then area( ) would need to compute the area of an ellipse. There is one other important feature in the preceding program. Notice in main( ) that shapes is declared as an array of TwoDShape objects. However, the elements of this array are assigned Triangle, Rectangle, and TwoDShape references. This is valid because, as explained, a superclass reference can refer to a subclass object. The program then cycles through the array, displaying information about each object. Although quite simple, this illustrates the power of both inheritance and method overriding. The type of object referred to by a superclass reference variable is deter- mined at run time and acted on accordingly. If an object is derived from TwoDShape, then its area can be obtained by calling area( ). The interface to this operation is the same no matter what type of shape is being used. 1. What is method overriding? 2. Why is method overriding important? 3. When an overridden method is called through a superclass reference, which version of the method is executed? usIng aBstract classes Sometimes you will want to create a superclass that defines only a generalized form that will be shared by all of its subclasses, leaving it to each subclass to fill in the details. Such a class determines the nature of the methods that the subclasses must implement but does not itself provide an implementation of one or more of these methods. One way this situation can occur is when a superclass is unable to cre- ate a meaningful implementation for a method. This is the case with the version of TwoDShape used in the preceding example. The definition of area( ) is simply a placeholder. It will not compute and display the area of any type of object. Answers: 1. Method overriding occurs when a subclass defines a method that has the same signature and return type as a method in its superclass. 2. Overridden methods allow Java to support run-time polymorphism. 3. The version of an overridden method that is executed is determined by the type of the object being referred to at the time of the call. Thus, this determi- nation is made at run time. progress check 292 chapter 7 Inheritance As you will see as you create your own class hierarchies, it is not uncommon for a method to have no meaningful definition in the context of its superclass. You can handle this situation in two ways. One way, as shown in the previous example, is to simply have it report a warning message. While this approach can be useful in certain situations—such as debugging—it is not usually appropriate. You may have methods that must be overridden by the subclass in order for the subclass to have any meaning. Consider the class Triangle. It is incomplete if area( ) is not defined. In this case, you want some way to ensure that a subclass does indeed override all necessary methods. Java’s solution to this problem is the abstract method. An abstract method is created by specifying the abstract type modifier. An abstract method contains no body and is, therefore, not implemented by the super- class. Thus, a subclass must override it—it cannot simply use the version defined in the superclass. To declare an abstract method, use this general form: abstract type name(parameter-list); As you can see, no method body is present. The abstract modifier can be used only on normal methods. It cannot be applied to static methods or to constructors. A class that contains one or more abstract methods must also be declared as abstract by preceding its class declaration with the abstract specifier. Since an abstract class does not define a complete implementation, there can be no objects of an abstract class. Thus, attempting to create an object of an abstract class by using new will result in a compile-time error. When a subclass inherits an abstract class, it must implement all of the abstract methods in the superclass. If it doesn’t, then the subclass must also be specified as abstract. Thus, the abstract attribute is inherited until such time as a complete imple- mentation is achieved. Using an abstract class, you can improve the TwoDShape class. Since there is no meaningful concept of area for an undefined two-dimensional figure, the following version of the preceding program declares area( ) as abstract inside TwoDShape and TwoDShape as abstract. This, of course, means that all classes derived from TwoDShape must override area( ). // Create an abstract class. abstract class TwoDShape { private double width; private double height; private String name; // A default constructor. TwoDShape() { width = height = 0.0; name = "none"; } TwoDShape is now abstract. // Parameterized constructor. TwoDShape(double w, double h, String n) { width = w; height = h; name = n; } // Construct object with equal width and height. TwoDShape(double x, String n) { width = height = x; name = n; } // Construct an object from an object. TwoDShape(TwoDShape ob) { width = ob.width; height = ob.height; name = ob.name; } // Accessor methods for width and height. double getWidth() { return width; } double getHeight() { return height; } void setWidth(double w) { width = w; } void setHeight(double h) { height = h; } String getName() { return name; } void showDim() { System.out.println("Width and height are " + } // Now, area() is abstract. abstract double area(); } Make area( ) into an abstract method. Java programming 293 width + " and " + height); // A subclass of TwoDShape for triangles. class Triangle extends TwoDShape { private String style; // A default constructor. Triangle() { super(); style = "none"; } // Constructor for Triangle. Triangle(String s, double w, double h) { super(w, h, "triangle"); style = s; } // One argument constructor. 294 chapter 7 Inheritance Triangle(double x) { super(x, "triangle"); // call superclass constructor // default style to filled style = "filled"; } // Construct an object from an object. Triangle(Triangle ob) { super(ob); // pass object to TwoDShape constructor style = ob.style; } double area() { return getWidth() * getHeight() / 2; } void showStyle() { System.out.println("Triangle is " + style); } } // A subclass of TwoDShape for rectangles. class Rectangle extends TwoDShape { // A default constructor. Rectangle() { super(); } // Constructor for Rectangle. Rectangle(double w, double h) { super(w, h, "rectangle"); // call superclass constructor } // Construct a square. Rectangle(double x) { super(x, "rectangle"); // call superclass constructor } // Construct an object from an object. Rectangle(Rectangle ob) { super(ob); // pass object to TwoDShape constructor } boolean isSquare() { if(getWidth() == getHeight()) return true; return false; } double area() { return getWidth() * getHeight(); Java programming 295 } } class AbsShape { public static void main(String[] args) { TwoDShape[] shapes = new TwoDShape[4]; shapes[0] = new Triangle("outlined", 8.0, 12.0); shapes[1] = new Rectangle(10); shapes[2] = new Rectangle(10, 4); shapes[3] = new Triangle(7.0); for(TwoDShape shape : shapes) { System.out.println("object is " + shape.getName()); System.out.println("Area is " + shape.area()); System.out.println(); } } } As the program illustrates, all subclasses of TwoDShape must override area( ). To prove this to yourself, try creating a subclass that does not override area( ). You will receive a compile-time error. Of course, it is still possible to create an object reference of type TwoDShape, which the program does. However, it is no longer possible to declare objects of type TwoDShape. Because of this, in main( ) the shapes array has been shortened to 4, and a TwoDShape object is no longer created. One last point: notice that TwoDShape still includes the showDim( ) and getName( ) methods and that these are not modified by abstract. It is perfectly acceptable—indeed, quite common—for an abstract class to contain concrete methods that a subclass is free to use as is. Only those methods declared as abstract need be overridden by subclasses. 1. What is an abstract method? How is one created? 2. When must a class be declared abstract? 3. Can an object of an abstract class be instantiated? Answers: 1. An abstract method is a method without a body. Thus it consists of a return type, name, and parameter list and is preceded by the keyword abstract. 2. When it contains at least one abstract method. 3. No. progress check 296 chapter 7 Inheritance usIng final As powerful and useful as method overriding and inheritance are, sometimes you will want to prevent them. For example, you might have a class that encapsulates control of some hardware device. Further, this class might offer the user the ability to initial- ize the device, making use of private, proprietary information. In this case, you don’t want users of your class to be able to override the initialization method. Whatever the reason, in Java it is easy to prevent a method from being overridden or a class from being inherited by using the keyword final. final prevents overriding To prevent a method from being overridden, specify final as a modifier at the start of its declaration. Methods declared as final cannot be overridden. The following frag- ment illustrates final: class A { final void meth() { System.out.println("This is a final method."); } } class B extends A { void meth() { // ERROR! Can't override. System.out.println("Illegal!"); } } Because meth( ) is declared as final, it cannot be overridden in B. If you attempt to do so, a compile-time error will result. final prevents Inheritance You can prevent a class from being inherited by preceding its declaration with final. Declaring a class as final implicitly declares all of its methods as final, too. As you might expect, it is illegal to declare a class as both abstract and final since an abstract class is incomplete by itself and relies on its subclasses to provide complete imple- mentations. Here is an example of a final class: final class A { // ... } // The following class is illegal. class B extends A { // ERROR! Can't subclass A // ... } As the comments imply, it is illegal for B to inherit A since A is declared as final. using final with data Members In addition to the uses of final just shown, final can also be applied to member variables to create what amounts to named constants. If you precede a class vari- able’s name with final, its value cannot be changed throughout the lifetime of your program. You can, of course, give that variable an initial value. For example, in Chapter 6 a simple error-management class called errorMsg was shown. That class mapped a human-readable string to an error code. Here, that original class is improved by the addition of final constants that stand for the errors. Now, instead of passing geterrorMsg( ) a number such as 2, you can pass the named integer constant DISKeRR. // Return a String object. class ErrorMsg { // Error codes. final int OUTERR = 0; final int INERR = 1; Declare final constants. final int DISKERR = 2; final int INDEXERR = 3; String[] msgs = { "Output Error", "Input Error", "Disk Full", "Index Out-Of-Bounds" }; // Return the error message. String getErrorMsg(int i) { if(i >=0 & i < msgs.length) return msgs[i]; else return "Invalid Error Code"; } } class FinalD { public static void main(String[] args) { ErrorMsg err = new ErrorMsg(); System.out.println(err.getErrorMsg(err.OUTERR)); System.out.println(err.getErrorMsg(err.DISKERR)); } } Use final constants. Java programming 297 Notice how the final constants are used in main( ). Since they are members of the errorMsg class, they must be accessed via an object of that class. (See the following Ask the Expert for an alternative approach.) Of course, they can also be inherited by subclasses and accessed directly inside those subclasses. As a point of style, many Java programmers use uppercase identifiers for final constants, as does the preceding example. But this is not a hard and fast rule. 298 chapter 7 Inheritance ask the expert Q Can final member variables be made static? Can final be used on method parameters and local variables? AThe answer to both is Yes. Making a final member variable static lets you refer to the constant through its class name rather than through an object. For example, if the constants in errorMsg were modified by static, then the println( ) statements in main( ) could look like this: System.out.println(err.getErrorMsg(ErrorMsg.OUTERR)); System.out.println(err.getErrorMsg(ErrorMsg.DISKERR)); The use of a static final variable is often a better approach for these types of constants, and it is the approach that you will typically see. Declaring a parameter final prevents it from being changed within the method. Declaring a local variable final prevents it from being assigned a value more than once. progress check 1. How do you prevent a method from being overridden? 2. If a class is declared as final, can it be inherited? the object class Java defines one special class called Object that is an implicit superclass of all other classes. In other words, all other classes are subclasses of Object. This means that a reference variable of type Object can refer to an object of any other class. Also, since arrays are implemented as classes, a variable of type Object can also refer to any array. Object defines the following methods, which means that they are available in every object. Answers: 1. Precede its declaration with the keyword final. 2. No. The methods getClass( ), notify( ), notifyAll( ), and wait( ) are declared as final. You can override the others. Several of these methods are described later in this book. However, notice two methods now: equals( ) and toString( ). The equals( ) method compares two objects. It returns true if the objects are equivalent, and false otherwise. The Object implementation of equals( ) simply checks if the invoking reference refers to the same object as the one passed as an argument. However, equals( ) is frequently overridden to determine if two objects are equal in their contents. The toString( ) method returns a string that contains a description of the object on which it is called. Also, this method is automatically called when an object is output using println( ). Many classes override this method. Doing so allows them to tailor a description specifi- cally for the types of objects that they create. One last point: notice the unusual syntax in the return type for getClass( ). This relates to Java’s generics feature. Generics allow the type of data used by a class or method to be specified as a parameter. Generic types are discussed in Chapter 14. eXercIses 1. Does a superclass have access to the members of a subclass? Does a subclass have access to the members of a superclass? 2. Create a subclass of TwoDShape called Circle. Include an area( ) method that computes the area of the circle and a constructor that uses super to initialize the TwoDShape portion. 3. How do you prevent a subclass from having access to a member of a superclass? 4. Describe the purpose and use of both versions of super. Java programming 299 Method purpose Object clone( ) Creates a new object that is the same as the object being cloned. boolean equals(Object object) Determines whether one object is equal to another. void finalize( ) Called before an unused object is recycled. Class getClass( )
Obtains the class of an object at run time.
int hashCode( )
Returns the hash code associated with the invoking object.
void notify( )
Resumes execution of a thread waiting on the invoking object.
void notifyAll( )
Resumes execution of all threads waiting on the invoking object.
String toString( )
Returns a string that describes the object.
void wait( )
void wait(long milliseconds) void wait(long milliseconds,
int nanoseconds)
Waits on another thread of execution.

300 chapter 7 Inheritance
5. Given the following hierarchy:
class Alpha { …
class Beta extends Alpha { … Class Gamma extends Beta { …
In what order are the constructors for these classes executed when a Gamma
object is instantiated?
6. A superclass reference can refer to a subclass object. Explain why this is
important as it relates to method overriding.
7. What is an abstract class?
8. How do you prevent a method from being overridden? How do you prevent a
class from being inherited?
9. Explain how inheritance, method overriding, and abstract classes are used to
support polymorphism.
10. What class is a superclass of every other class?
11. A class that contains at least one abstract method must itself be declared
abstract. True or False?
12. What keyword is used to create a named constant?
13. Suppose a class A has methods m1( ), m2( ), and m3( ) and a subclass B has
methods m4( ) and m5( ).
A. Which of the five methods are accessible by objects of class A?
B. Which of the five methods are accessible by objects of class B?
C. Which of the five methods can be called using a variable of type A that
refers to an object of type B?
D. Suppose m1( ) is declared private. Which of the five methods are now
accessible by objects of class B?
14. Create a person class with private instance variables for the person’s name and birth date. Add appropriate accessor methods for these variables. Then create a subclass CollegeGraduate with private instance variables for the student’s GPA and year of graduation and appropriate accessors for these variables. Don’t forget to include appropriate constructors for your classes. Then create a class with a main( ) method that demonstrates your classes.
15. Standardpracticeinmanysituationsistodeclareallnonfinalinstance variables to be private and then provide appropriate accessor methods for accessing the variables. For some instance variables it is appropriate to have a “getter” method for getting the value of the variable but no “setter” method for changing the value of the variable. Think of an example of a class and an instance variable where this situation occurs and explain why it is not appro- priate to have a “setter” method for the variable.
16. In Chapter 6, a FailSoftArray class was created to prevent boundary errors from occurring when the array was accessed. However, the class is not totally fail-soft due to the fact that the length instance variable is public. If you were

Java programming 301
to purposely misuse the class by assigning length a value greater than the size of the underlying array, an attempt to access the array beyond its bounds would not be prevented. What should be done to the length variable to prevent this type of misuse from occurring? Remember: length needs to remain public so that users can determine the length of the array.
17. Override the inherited toString( ) method of the FailSoftArray class from Chapter 6 so that it returns a string displaying the contents of the array. For example, if the array contains 1,2,3, and 4, then the toString( ) method should return the string “{1, 2, 3, 4}”. (For more information about overriding toString( ), see Chapter 22.)
18. Suppose we were to enhance our modeling of vehicles by creating Tire objects to represent the tires of the vehicle. How should the Tire class be related to the Vehicle class? Should it be a subclass of Vehicle? Why or why not?
19. Suppose you have classes Boat, House, HouseBoat, and BoatHouse for representing boats, houses, houseboats (a floating house), and boathouses (a building for storing boats), respectively. Should any of the classes be subclasses of any of the other classes? Why or why not?
20. Is the following code segment legal in Java? Why or why not? int[] array = {1,2,3};
Object[] data = {“hello”, new Object(), array};
21. Suppose you are writing a Java program that does a lot of mathematical calculations involving π. If you only need 2 decimal places of accuracy, you could use 3.14 everywhere π is needed in your code (for example, in formulas such as area = 3.14*r*r), or you could declare a constant pI equal to 3.14 and then use pI instead of 3.14 everywhere π is needed (and so use formulas such as area = PI*r*r).
A. Show what the declaration of such a constant pI would look like in Java. B. Give at least two reasons why using the declared constant pI is better than
using 3.14.
22. One of the uses of inheritance is to eliminate code duplication. For example, suppose you have two classes A and B and both have identical getData( ) methods that extract data from files, but both classes do different things with the data once they’ve extracted it. Describe one way that inheritance can be used to avoid the duplicate code.
23. Suppose a class A declares an equals( ) method that takes a parameter of type A. Such a class will also inherit the equals( ) method from the Object class. Does the equals( ) method in class A override the inherited equals( ) method, or is the equals( ) method overloaded in class A?

chapter
key skills & concepts
j Understand interface fundamentals
j Know the general form of an interface j Implement an interface
j Apply interface references
j Use interface constants
j Extend interfaces
j Nest interfaces
In object-oriented programming, it is sometimes helpful to define what a class must do but not how it will do it. You have already seen one way to accomplish this: the abstract method. An abstract method defines the signature for a method but provides no implementation. A subclass must provide its own implementation of each abstract method defined by its superclass. Thus, an abstract method specifies the interface to the method but not the implementation. While abstract classes and methods are useful, it is possible to take this concept a step further. In Java, you can fully separate a class’s interface from its implementation by using the keyword interface, and that is the subject of this chapter.
Interface fundamentals
In Java, an interface defines a set of methods that will be implemented by a class. Syntactically, interfaces are similar to abstract classes, except that no method can include a body. This means that an interface provides no implementation whatsoever of the methods it defines. Therefore, an interface simply specifies what must be done, but not how. Put more formally, an interface is a construct that describes functionality without specifying implementation.
Once an interface is defined, any number of classes can implement it. This makes it possible for two or more classes to provide the same functionality even though they might do so in different ways. Furthermore, one class can implement any number
Interfaces
303
8

304 chapter 8 Interfaces
of interfaces. This makes it possible for a single class to provide a wide range of well- defined functionality.
To implement an interface, a class must provide bodies (implementations) for the methods described by the interface. Each class is free to determine the details of its own implementation. Two classes might implement the methods defined by an inter- face differently, but each class still supports the same set of methods. Thus, code that has knowledge of the interface can use objects of either class since the interface to those objects is the same. By providing the interface, Java allows you to fully utilize the “one interface, multiple methods” aspect of polymorphism.
An interface is declared by use of the interface keyword. Here is a simplified general form of an interface declaration:
access interface name {
ret-type method-name1( param-list); ret-type method-name2( param-list); // …
ret-type method-nameN(param-list);
}
Here, access is either public or not used. When no access modifier is included, then default access results. Although default access is proper for many applications, inter- faces are often declared public because it makes them accessible to the widest range of code. (When an interface is declared public, it must be in a file of the same name.) The name of the interface is specified by name, and it can be any valid identifier.
In an interface, methods are declared using only their return type and signature. They are, essentially, abstract methods. As explained, in an interface, no method can have an implementation. It is the responsibility of each class that includes an interface to provide the implementations. In an interface, methods are implicitly public.
creatIng an Interface
As just explained, the core purpose of an interface is to specify what must be done, but not how it will do it. This is a powerful concept in programming. To understand why, let’s work through a simple example. Assume you want to create a set of classes that generate different types of number series. These series might be the even num- bers beginning with 2, random numbers, or the set of prime numbers, to name a few. However, in all cases, you want the classes to work the same way, with each having methods that obtain the next number in the series, reset the series to its start, and specify a starting value. This way, the code that uses one number series generator can easily be changed to use a different one. This type of situation is ideal for an interface, because the interface can declare the methods that each number series generator will support, but each class can implement its own specific number series.
Putting the preceding example into concrete terms, here is an example of a simple interface definition. It specifies an interface called Series that describes the methods used to generate a series of numbers.

public interface Series {
int getNext(); // return next number in series void reset(); // restart
void setStart(int x); // set starting value
}
Notice that Series defines three methods. The first is getNext( ), which will obtain the next number in the series. The second is reset( ), which will reset the series to its starting point. The last one is setStart( ), which is used to set the starting point. All classes that implement Series must provide these three methods. Because of this, all classes that implement Series can be used in the same way, by calling the same set of methods. One other point: Here, Series is declared public, so it must be held in a file called Series.java.
ImplementIng an Interface
Once an interface has been defined, one or more classes can implement the interface. To implement an interface, follow these two steps:
1. In a class declaration, include an implements clause that specifies the inter- face being implemented.
2. Inside the class, implement the methods defined by the interface.
The implements clause specifies the name of an interface that a class will implement.
The general form of a class that includes the implements clause looks like this:
class classname extends superclass implements interface { // class-body
}
To implement more than one interface, the interfaces are separated with a comma. Of course, the extends clause is optional, but using it enables you to inherit a class and implement one or more interfaces at the same time.
Inside the class, you must define each of the methods specified by the interface being implemented. The methods that implement an interface must be declared public. Also, the return type and signature of the implementing method must match exactly the return type and signature specified in the interface declaration.
Here is an example that shows an implementation of the Series interface shown earlier. It creates a class called ByTwos, which generates a series of numbers, each two greater than the previous one. Notice the use of the implements clause.
// Implement Series.
class ByTwos implements Series {
Java programming 305
int start;
int val;
ByTwos() {
start = 0;
Implement the Series interface.

306 chapter 8 Interfaces val = 0;
}
// Implement the methods specified by Series.
public int getNext() {
val += 2;
return val; }
public void reset() {
val = start;
}
public void setStart(int x) {
start = x;
val = x;
} }
Notice that the methods getNext( ), reset( ), and setStart( ) are declared public. As explained, this is necessary. Whenever you implement a method defined by an interface, it must be implemented as public because all methods specified by an interface are implic- itly public.
Here is a class that demonstrates ByTwos:
// Demonstrate the use of Series.
class SeriesDemo {
public static void main(String[] args) {
ByTwos ob = new ByTwos();
for(int i=0; i < 5; i++) System.out.println("Next value is " + ob.getNext()); System.out.println("\nResetting"); ob.reset(); for(int i=0; i < 5; i++) System.out.println("Next value is " + ob.getNext()); System.out.println("\nStarting at 100"); ob.setStart(100); for(int i=0; i < 5; i++) System.out.println("Next value is " + ob.getNext()); } } The output from this program is shown here. Next value is 2 Next value is 4 Next value is 6 Next value is 8 Next value is 10 Resetting Next value is 2 Next value is 4 Next value is 6 Next value is 8 Next value is 10 Starting at 100 Next value is 102 Next value is 104 Next value is 106 Next value is 108 Next value is 110 It is both permissible and common for classes that implement an interface to define additional members of their own. For example, the following version of ByTwos adds the method getPriorVal( ), which returns the previous value generated. // Implement Series and add getPriorVal(). class ByTwos implements Series { int start; int val; int priorVal; ByTwos() { start = 0; val = 0; priorVal = -2; } // Implement the methods specified by Series. public int getNext() { priorVal = val; val += 2; return val; } public void reset() { val = start; priorVal = start - 2; } public void setStart(int x) { start = x; val = x; priorVal = x - 2; } // Return the previous value. This method is not // defined by Series. int getPriorVal() { Add a method not defined by Series. Java programming 307 308 chapter 8 Interfaces return priorVal; } } Even though ByTwos adds the getPriorVal( ) method, it does not alter the fact that ByTwos implements Series. The key point is that the only obligation a class has when implementing an interface is to provide the methods defined by the interface. It is not limited to providing only those methods. The class can provide whatever additional functionality is desired. Thus, you can use the same SeriesDemo class with the new version of ByTwos. There is something else to notice in this version of ByTwos. The addition of getPriorVal( ) required a change to the implementations of the methods defined by Series. However, since the interface to those methods stays the same, the change is seamless and does not break preexisting code. This is one of the principal advantages of interfaces. Any number of classes can implement an interface. For example, here is a class called ByThrees that generates a series that consists of multiples of three. Thus, it implements a different series. // Implement Series a different way. class ByThrees implements Series { Implement Series a different way. int start; int val; ByThrees() { start = 0; val = 0; } // Implement the methods specified by Series. public int getNext() { val += 3; return val; } public void reset() { val = start; } public void setStart(int x) { start = x; val = x; } } Although the implementation of ByThrees differs from that of ByTwos, both imple- ment the same Series interface. This means that the two classes can be used in the same way. For example, in both cases, getNext( ) obtains the next element in the series. As a general rule, a class will define all of the methods specified by an interface that it is implementing. However, if a class implements an interface but does not Java programming 309 define every method, then that class must be declared as abstract. No objects of such a class can be created, but it can be used as an abstract superclass, allowing subclasses to provide the complete implementation. 1. What is an interface? What keyword is used to declare one? 2. What is implements for? usIng Interface references As you know, when you define a class, you are creating a new reference type. The same is true of interfaces. An interface declaration also creates a new reference type. When a class implements an interface, it is adding that interface’s type to its type. As a result, an instance of a class that implements an interface is also an instance of that interface type. For example, an instance of ByTwos is also an instance of Series. Because an interface defines a type, you can declare a reference variable of an interface type. In other words, you can create an interface reference variable. Such a variable has a very important property: It can refer to any object that implements the interface. (In other words, it can refer to any instance of its type.) When you call a method on an object through an interface reference, it is the version of the method implemented by the object that is executed. This process is similar to using a super- class reference to access a subclass object, as described in Chapter 7. The following example illustrates this process. The SeriesDemo2 class uses the same interface reference variable to call methods on objects of both ByTwos and ByThrees. progress check class SeriesDemo2 { public static void main(String[] args) { ByTwos twoOb = new ByTwos(); ByThrees threeOb = new ByThrees(); Series iRef; // an interface reference for(int i=0; i < 5; i++) { iRef = twoOb; // refers to a ByTwos object System.out.println("Next ByTwos value is " + iRef.getNext()); iRef = threeOb; // refers to a ByThrees object System.out.println("Next ByThrees value is " + iRef.getNext()); Answers: 1. An interface defines methods that a class must implement but defines no implementation of its own. It is declared by the keyword interface. 2. To implement an interface, include that interface in a class by using the implements keyword. Access an object via an interface reference. 310 chapter 8 Interfaces } } } The output is shown here: Next ByTwos value is 2 Next ByThrees value is 3 Next ByTwos value is 4 Next ByThrees value is 6 Next ByTwos value is 6 Next ByThrees value is 9 Next ByTwos value is 8 Next ByThrees value is 12 Next ByTwos value is 10 Next ByThrees value is 15 In main( ), iRef is declared to be a reference to the Series interface. This means that it can be used to store a reference to any object that implements Series. In this case, it is used to refer to twoOb and threeOb, which are objects of type ByTwos and ByThrees, respectively. This is possible because both implement Series. Each time one of the methods defined by Series is called through iRef, the version of the method implemented by the object being referred to is executed. One other point about this example: An interface reference variable has knowledge only of the methods declared by its interface declaration. Thus, iRef could not be used to access any other variables or methods that might be provided by an imple- menting class. For example, if ByTwos included the getPriorVal( ) method shown earlier, it could not have been accessed via iRef. Although the preceding example shows the mechanics of calling methods through an interface reference, it does not show one of its most important benefits. As you know, polymorphism is a key tenet of object-oriented programming. Its defining principle is that related functionality can be accessed through a common interface. Once you understand the interface, you can use any specific implementation of that interface. But perhaps more importantly, the implementation can change without affecting code that uses the interface. Calling interface methods through an interface reference helps you fully realize this benefit of the “one interface, multiple methods” philosophy. To understand why, consider a class that simulates some physical process, such as the movement of lines of customers at a bank or crop yield differences based on rainfall. To perform the simulation, the class might require the use of a number series generator. However, you might want to change the precise nature of the series so that you can observe different outcomes. You might create such a class as shown here. class Simulation { // numSeq refers to the number series generator // that will be used by the simulation. Series numSeq; // Pass the number series generator that will be used // by the instance of Simulation being constructed. Simulation(Series s) { numSeq = s; } // ... } Notice that the series generator is passed to Simulation, via its constructor, as a parameter of type Series. Also notice that a reference to that object is held in an instance variable called numSeq, which is also a reference of type Series. Because Simulation specifies the number generator by the interface type Series, rather than hard-coding a specific type of generator, you can easily change the specific type of number generator used. For example, both of these declarations are valid: Simulation sim = new Simulation(new ByTwos()); Simulation sim2 = new Simulation(new ByThrees()); In the first one, the number generator is a ByTwos instance. In the second, it is a ByThrees object. Of course, it could have been any type of object as long as it imple- mented Series. For example, if a series that reflected a normal (bell-shaped) distribu- tion is needed, you could create a class called NormalDist that implements Series, and then pass a NormalDist instance to Simulation. Since all implementations of Series are used in the same way, no changes to Simulation would be required. To summarize: By specifying the functionality of the number generator by its interface type (rather than a specific implementation class type), an interface makes it possible to design code that is easily adaptable. You can simply change the type of object passed to Simulation when an instance is constructed. No other changes are needed. The above example can be generalized. Specifying functionality by use of an interface reference lets you gracefully migrate code over time, without breaking it. As long as the interface remains unchanged, both the implementation of the interface and the code that uses it can evolve as required. Through the use of the interface, your code gains flexibility. ImplementIng multIple Interfaces As mentioned, a class can implement more than one interface. To do so, simply spec- ify each interface in a comma-separated list. The class must, of course, implement all of the methods specified by each interface. Here is a simple example: interface IfA { void doSomething(); } interface IfB { void doSomethingElse(); } // Implement both IfA and IfB. class MyClass implements IfA, IfB { Java programming 311 312 chapter 8 Interfaces public void doSomething() { System.out.println("Doing something."); } public void doSomethingElse() { System.out.println("Doing something else."); } } In this example, MyClass specifies both IfA and IfB in its implements clause. It then implements the method specified by each. In real-world applications, it is not uncommon for a class to implement more than one interface. Doing so enables a class to provide a variety of well-defined functional- ity without having to use class inheritance. As you know, one class can directly inherit only one other class. As a result, it can be difficult to specify additional functionality without resorting to top-heavy hierarchies. Interfaces address this problem, letting a class specify the additional functionality without impacting the inheritance hierarchy. ask the expert Q When implementing multiple interfaces, what happens if both interfaces declare the same method? For example, what if two interfaces both specify a method called doSomething( )? AIf a class implements two interfaces that declare the same method, then the same method implementation will be used for both interfaces. This means that only one version of the method is defined by the class. For example, consider this variation on the example just shown: // Both IfA and IfB declare the method doSomething(). interface IfA { void doSomething(); } interface IfB { void doSomething(); } // Implement both IfA and IfB class MyClass implements IfA, IfB { // This method implements both IfA and IfB. public void doSomething() { System.out.println("Doing something."); } } 1. Can an interface reference variable refer to an object that implements that interface? 2. A class can implement only one interface. True or False? Java programming 313 class MultiImpDemo { public static void main(String[] args) { IfA aRef; IfB bRef; MyClass obj = new MyClass(); // Both interfaces use the same doSomething(). aRef = obj; aRef.doSomething(); bRef = obj; bRef.doSomething(); } } The output is shown here: Doing something. Doing something. In this case, both IfA and IfB declare the same method, doSomething( ). When MyClass implements these interfaces, both will use the same doSomething( ). Thus, whether doSomething( ) is called through an IfA reference or an IfB reference, the same method is executed. progress check Try This 8-1 Create a Simple Stack Interface ISimpleStack.java FixedLengthStack.java DynamicStack.java ISimpleStackDemo.java To better understand the power of interfaces and the “one interface, multiple methods” principle of object-oriented programming, it is helpful to look at a practical example. In earlier chapters, you developed a class called SimpleStack that implemented a fixed-length stack for characters. However, there are other ways to implement a stack. Answers: 1. Yes. 2. False. 314 chapter 8 Interfaces For example, a stack can be dynamic, meaning that its size will be expanded when necessary to accommodate additional items. It is also possible to use a data struc- ture other than an array to hold the contents of a stack. No matter how the stack is implemented, the interface to the stack remains the same. In other words, methods such as push( ) and pop( ) define the interface to the stack independently of the details of the implementation. Therefore, once you have created a stack interface, all stacks that implement that interface can be used in the same way. Furthermore, they can be used through an interface reference, enabling you to change the specific implementation that you use without fear of breaking existing code. In this project, you will create an interface for a simple stack that is based on the functionality provided by the SimpleStack class first developed in Try This 5-2, and enhanced in Try This 6-1 and Try This 6-2. This interface will be called ISimpleStack. Then, two implementations of ISimpleStack are developed. The first is adapted from SimpleStack. Because it is a fixed-length stack, it will be called FixedLengthStack. The second implementation, called DynamicStack, will be a dynamic stack, which grows as necessary when its underlying array size is exceeded. STeP-By-STeP 1. Because an interface defines the functionality of an implementation, the first step is to create the interface that describes a simple stack. To do so, we take a lead from the methods defined by SimpleStack. Recall that it declares the four stack methods, push( ), pop( ), isFull( ), and isempty( ). These meth- ods are declared in ISimpleStack, shown here. Put this interface in a file called ISimpleStack.java. // An interface for a simple stack that stores characters. public interface ISimpleStack { // Push a character onto the stack. void push(char ch); // Pop a character from the stack. char pop(); // Return true if the stack is empty. boolean isEmpty(); // Return true if the stack is full. boolean isFull(); } This interface describes the operations of a simple stack. Each class that implements ISimpleStack will need to implement these methods. One point of interest before moving on: At this time, ISimpleStack specifies the interface for a stack of characters. In Chapter 14, you see how to adapt ISimpleStack so that it can specify a stack that holds any type of data. Java programming 315 2. You will now create two stacks that implement ISimpleStack. The first is adapted from the version of SimpleStack shown in Try This 6-2. Because SimpleStack already implements the methods specified by ISimpleStack, only three changes are necessary. First, the name must be changed to FixedLengthStack. Second, an implements ISimpleStack clause must be added to its declaration. Third, push( ), pop( ), isFull( ), and isempty( ) need to specified public since they now provide the implementations for ISimpleStack. For clarity, the entire FixedLengthStack is shown here. Put it in a file called FixedLengthStack.java: // A fixed-length stack for characters. class FixedLengthStack implements ISimpleStack { private char[] data; // this array holds the stack private int tos; // index of top of stack // Construct an empty stack given its size. FixedLengthStack(int size) { data = new char[size]; // create the array to hold the stack tos = 0; } // Construct a stack from a stack. FixedLengthStack(FixedLengthStack otherStack) { // size of new stack equals that of otherStack data = new char[otherStack.data.length]; // set tos to the same position tos = otherStack.tos; // copy the contents for(int i = 0; i < tos; i++) data[i] = otherStack.data[i]; } // Construct a stack with initial values. FixedLengthStack(char[] chrs) { // create the array to hold the initial values data = new char[chrs.length]; tos = 0; // initialize the stack by pushing the contents // of chrs onto it for(char ch : chrs) push(ch); } // Push a character onto the stack. public void push(char ch) { if(isFull()) { System.out.println(" -- Stack is full."); 316 chapter 8 Interfaces return; } data[tos] = ch; tos++; } // Pop a character from the stack. public char pop() { if(isEmpty()) { System.out.println(" -- Stack is empty."); return (char) 0; // a placeholder value } tos--; return data[tos]; } // Return true if the stack is empty. public boolean isEmpty() { return tos==0; } // Return true if the stack is full. public boolean isFull() { return tos==data.length; } } 3. Create the DynamicStack class shown next. It implements a “growable” stack that expands its size when space is exhausted. Put it in a file called DynamicStack.java. // A growable stack for characters. class DynamicStack implements ISimpleStack { private char[] data; // this array holds the stack private int tos; // index of top of stack // Construct an empty stack given its size. DynamicStack(int size) { data = new char[size]; // create the array to hold the stack tos = 0; } // Construct a stack from a stack. DynamicStack(DynamicStack otherStack) { // size of new stack equals that of otherStack data = new char[otherStack.data.length]; // set tos to the same position Java programming 317 tos = otherStack.tos; // copy the contents for(int i = 0; i < tos; i++) data[i] = otherStack.data[i]; } // Construct a stack with initial values. DynamicStack(char[] chrs) { // create the array to hold the initial values data = new char[chrs.length]; tos = 0; // initialize the stack by pushing the contents // of chrs onto it for(char ch : chrs) push(ch); } // Push a character onto the stack. public void push(char ch) { // if there is no more room in the array, // expand the size of the stack if(tos == data.length) { // double the size of the existing array char[] t = new char[data.length * 2]; // copy the contents of the stack into the larger array for(int i = 0; i < tos; i++) t[i] = data[i]; // set data to refer to the new array data = t; } data[tos] = ch; tos++; } // Pop a character from the stack. public char pop() { if(isEmpty()) { System.out.println(" -- Stack is empty."); return (char) 0; // a placeholder value } tos--; return data[tos]; } 318 chapter 8 Interfaces // Return true if the stack is empty. public boolean isEmpty() { return tos==0; } // Return true if the stack is full. For DynamicStack, // this method always returns false. public boolean isFull() { return false; } } In this implementation, when the limit of the data array has been reached, an attempt to store another element causes a new array to be allocated that is twice as large as the original. Then, the current contents of the stack are cop- ied into the new array. Finally, a reference to the new array is stored in data. There is one other thing to note in the dynamic stack implementation: the isFull( ) method always returns false. Since the stack size will be automati- cally increased as needed, the stack can never be full. (Of course, at some point in an extreme case, memory will be exhausted, resulting in a run-time error, but the handling of this type of error is beyond the scope of this discussion.) 4. To demonstrate the two ISimpleStack implementations, enter the following class into ISimpleStackDemo.java. It uses an ISimpleStack reference to access both stacks. // Demonstrate ISimpleStack. class ISimpleStackDemo { public static void main(String[] args) { int i; char ch; // create an ISimpleStack interface variable ISimpleStack iStack; // Now, construct a FixedLengthStack and a DynamicStack FixedLengthStack fixedStack = new FixedLengthStack(10); DynamicStack dynStack = new DynamicStack(5); // first, use fixedStack through iStack iStack = fixedStack; // push characters onto fixedStack for(i = 0; !iStack.isFull(); i++) iStack.push((char) ('A'+i)); // pop characters off fixedStack System.out.print("Contents of fixedStack: "); Java programming 319 while(!iStack.isEmpty()) { ch = iStack.pop(); System.out.print(ch); } System.out.println(); // next, use dynStack through iStack iStack = dynStack; // push A through Z onto dynStack // this will result in three increases in its size for(i = 0; i < 26; i++) iStack.push((char) ('A'+i)); // pop characters off dynStack System.out.print("Contents of dynStack: "); while(!iStack.isEmpty()) { ch = iStack.pop(); System.out.print(ch); } } } 5. Compile all of the files and then run ISimpleStackDemo. The output is shown here. Contents of fixedStack: JIHGFEDCBA Contents of dynStack: ZYXWVUTSRQPONMLKJIHGFEDCBA 6. Several other methods could be added to the ISimpleStack interface to enhance the functionality that it specifies. For example, you could add a reset( ) method that resets the stack and a peek( ) method that obtains, but does not remove, the top element on the stack. A size( ) method that returns the number of elements in the stack would also be a useful addition. The implementation of these methods is the subject of Exercise 12 at the end of this chapter. constants In Interfaces Although the primary purpose of an interface is to declare methods that provide a well- defined interface to functionality, an interface can also include “variables.” However, such “variables” are not instance variables. Instead, they are implicitly public, final, and static and must be initialized. Thus, they are essentially constants. At first glance, you might think that there would be very limited use for them, but the opposite is true. Large programs often make use of several constant values that describe such things as array size, various limits, and special values. Since a large program typically uses a number of separate classes, there needs to be a convenient way to make these constants available to each class. In Java, interface constants offer a solution. 320 chapter 8 Interfaces To define a set of shared constants, simply create an interface that contains only those constants, without any methods. Each class that needs access to the constants simply “implements” the interface. This brings the constants into view. Here is a simple example that gives you an idea of how the process works: // An interface that contains constants. interface IConst { int MIN = 0; int MAX = 10; String ERRORMSG = "Boundary Error"; } These are constants. // Gain access to the constants by implementing IConst. class IConstDemo implements IConst { public static void main(String[] args) { int[] nums = new int[MAX]; for(int i=MIN; i < (MAX + 1); i++) { if(i >= MAX) System.out.println(ERRORMSG);
else {
nums[i] = i;
System.out.print(nums[i] + ” “);
}
} }
}
In this example, the IConst interface defines three constants. MIN and MAX are of type int, and eRRORMSG is of type String. As required, they are given initial values. The IConstDemo class gains access to these constants by implementing IConst. This means that they can be used directly by IConstDemo, as if they had been defined by IConstDemo. Since IConst can be implemented by any number of classes, it can be used by any class that needs access to its constants.
ask the expert
Q Must an interface actually define any members? The reason I ask is that I was looking through Java’s API documentation and I noticed an interface called
Cloneable. It did not appear to have any members. Can you explain?
AIt is not necessary for an interface to define any members. Such an interface is sometimes called a “marker interface” because its sole purpose is to indicate that a class is capable of supporting some action. The marker interface becomes part of the implementing class’s type, even though it does nothing. As you will see later in this book, it is possible for an object’s type to be queried at run time, and the presence of the marker interface can be checked. In the case of Cloneable, it means that a bitwise, exact copy of an object of that class is legal. As you explore Java’s API library, you will find other examples of marker interfaces.

Interfaces can Be extended
One interface can inherit another by use of the keyword extends. The syntax is the same as for inheriting classes. When a class implements an interface that inherits another interface, it must provide implementations for all methods defined within the interface inheritance chain. Following is an example:
// One interface can extend another.
interface A {
void meth1();
void meth2();
}
// B inherits meth1() and meth2() – it adds meth3().
interface B extends A {
Java programming 321
}
B inherits A.
void meth3();
// This class must implement all of A and B.
class MyClass implements B {
public void meth1() {
System.out.println(“Implement meth1().”);
}
public void meth2() {
System.out.println(“Implement meth2().”);
}
public void meth3() {
System.out.println(“Implement meth3().”);
} }
class IFExtend {
public static void main(String[] args) {
MyClass ob = new MyClass();
ob.meth1();
ob.meth2();
ob.meth3();
} }
In this example, interface A is extended by interface B. Next, MyClass imple- ments B. This means that MyClass must implement all of the methods defined by both interfaces A and B, since A has been inherited by B. As an experiment, you might try removing the implementation for meth1( ) in MyClass. This will cause a compile-time error. Remember, any class that implements an interface must imple- ment all methods defined by that interface, including any that are inherited from other interfaces.

322 chapter 8 Interfaces
nested Interfaces
An interface can be declared a member of another interface or of a class. Such an interface is called a member interface or a nested interface. An interface nested in a class can use any access modifier. An interface nested in another interface is implicitly public. When a nested interface is used outside of its enclosing scope, it must be qualified by the name of the class or interface of which it is a member. Thus, outside of the interface or class in which a nested interface is declared, its name must be fully qualified.
Here is an example that demonstrates a nested interface:
// A nested interface example.
// This interface contains a nested interface.
interface A {
// this is a nested interface
public interface NestedIF {
boolean isNotNegative(int x);
}
void doSomething();
}
// This class implements the nested interface.
class B implements A.NestedIF {
public boolean isNotNegative(int x) {
return x < 0 ? false: true; } } class NestedIFDemo { public static void main(String[] args) { // use a nested interface reference A.NestedIF nif = new B(); if(nif.isNotNegative(10)) System.out.println("10 is not negative"); if(nif.isNotNegative(-12)) System.out.println("this won't be displayed"); } } A defines a member interface called NestedIF that is declared public. Next, B implements the nested interface by specifying implements A.NestedIF Notice that the name is fully qualified by the enclosing interface name. Inside the main( ) method, an A.NestedIF reference called nif is created, and it is assigned a reference to a B object. Because B implements A.NestedIF, this is legal. Java programming 323 One other point. In the program, notice that A also specifies a method, called doSomething( ). Because B implements only the nested interface NestedIF, it does not need to implement doSomething( ). 1. A “variable” declared in an interface creates a constant because it is implicitly __________, ____________, and ___________. 2. Must an interface constant be initialized? fInal thoughts on Interfaces Although the examples we show in this book do not make frequent use of interfaces, they are an important part of real-world Java programming. Furthermore, many inter- faces are found in the Java library, and many of the standard classes implement one or more of the standard interfaces. This enables a great deal of functionality to be shared among a wide range of classes. It is important, therefore, that you be comfortable with interface usage. exercIses 1. “One interface, multiple methods” is a key tenet of Java. What feature best exemplifies it? 2. How many classes can implement an interface? 3. How many interfaces can a class implement? 4. A class declares that it implements an interface by use of a/an ____________ __________. 5. Can interfaces be extended? 6. Create an interface for the Vehicle class from Chapter 7. Call the interface IVehicle. 7. Variables declared in an interface are implicitly static and final. What good are they? 8. Can one interface be a member of another? Answers: 1. public, static, and final 2. Yes. progress check 324 chapter 8 Interfaces 9. Given two interfaces called Alpha and Beta, show how a class called MyClass specifies that it implements each. 10. Create a new class Constants that implements the Series interface discussed at the beginning of this chapter. Its getNext( ) method repeatedly returns the last value passed in as an argument to the setStart( ) method. Until setStart( ) is called, it returns 0. 11. Consider the following class that claims to implement the ISimpleStack interface defined in Try This 8-1. Does it? Why or why not? class MockStack implements ISimpleStack { public char pop() { return ' '; } public void push(char c) { } public boolean isEmpty() { return false; } public boolean isFull() { return false; } } 12. Add the following methods to the ISimpleStack interface given in Try This 8-1. Then implement these methods in both of the classes FixedLengthStack and DynamicStack. A. void reset(); // empties the stack B. char peek(); // like pop() but the char remains on the stack C. int size(); // the number of chars currently on the stack 13. True or false: A class that implements an interface must A. use the same method names as those used by the interface. B. use the same method return types as those used by the interface. C. use the same parameter names as those used by the interface. D. make public all the methods that are specified by the interface. 14. A standard electrical outlet is extremely versatile in the sense that any electric appliance with a standard plug that fits the outlet can be run from the outlet, regardless of whether the appliance is, for example, a lamp, a toaster, an air conditioner, or a computer and regardless of the brand of appliance. A much less versatile outlet would be one that requires a special plug that only one brand of one kind of appliance used. How does this relate to the subject of this chapter? 15. True or false: A. An interface with an empty body can extend an interface with a non-empty body. B. An interface with a non-empty body can extend an interface with an empty body. Java programming 325 16. Suppose that a class Class1 extends a class Class2 and implements an interface Interface1 that extends an interface Interface2. Also assume Class1 has a no-argument constructor. Which of the following statements are legal? A. Class1 x = new Class1(); B. Class2 x = new Class1(); C. Interface1 x = new Class1(); D. Interface2 x = new Class1(); E. Object x = new Class1(); 17. True or false: If MyInterface is an interface, and x and y are variables declared to be of type MyInterface, then A. neither x nor y can have the value null. B. if x and y both refer to objects, then those objects must be instances of the same class. 18. In Try This 8-1, a FixedLengthStack class is created and tested using an ISimpleStackDemo class. The class declaration of FixedLengthStack included an implements clause: class FixedLengthStack implements ISimpleStack { Suppose the class implements all the methods of the ISimpleStack interface but the implements clause is omitted. A. Would the FixedLengthStack class still compile? B. Would the ISimpleStackDemo class still compile? chaPter key skills & concepts j Know the purpose of a package j Create a package j Understand how packages affect access j Apply the protected access modifier j Import packages j Import Java’s standard packages j Use static import This chapter examines another powerful Java feature: the package. A package is a group of related classes and interfaces. Packages help organize your code and provide another layer of encapsulation. Through the use of packages you gain greater control over the organization of your program. Package Fundamentals In programming, it is often helpful to group related pieces of a program together. In Java, this is accomplished by using a package. A package serves two purposes. First, it provides a mechanism by which related pieces of a program can be organized as a unit. For example, if you are developing an order-entry system for an online store, then you would very likely want to create a package that contains those classes and interfaces. Classes defined within a package must be accessed through their package name. Thus, a package provides a way to name a collection of classes. Second, a pack- age participates in Java’s access control mechanism. Classes defined within a package can be made private to that package and not accessible by outside code. Thus, the package provides a means by which classes can be encapsulated. Let’s examine each feature a bit more closely. In general, when you name a class, you are allocating a name from the namespace. A namespace defines a declarative region. In Java, no two classes can use the same Packages 327 9 328 chapter 9 Packages name from the same namespace. Thus, within a given namespace, each class name must be unique. The examples shown in the preceding chapters have all used the default or global namespace. While this is fine for short sample programs, it becomes a problem as programs grow and the default namespace becomes crowded. In large programs, finding unique names for each class can be difficult. Furthermore, you must avoid name collisions with code created by other programmers working on the same project, and with Java’s library. The solution to these problems is the package because it gives you a way to partition the namespace. When a class is defined within a pack- age, the name of that package is attached to the class, thus avoiding name collisions with other classes that have the same name but are in other packages. Since a package usually contains related classes, Java defines special access rights to code within a package. In a package, you can define code that is accessible by other code within the same package but not by code outside the package. This enables you to create self-contained groups of related classes that keep their opera- tion private. defining a Package All classes in Java belong to some package. When no package has been explicitly specified, the default (or global) package is used. Furthermore, the default package has no name, which makes the default package transparent. This is why you haven’t had to worry about packages before now. While the default package is fine for short, sample programs, it is inadequate for real applications. Most of the time, you will define one or more packages for your code. To create a package, you will use the package statement, which is located at the top of a Java source file. A class declared within that file will belong to the specified package. Since a package defines a namespace, the name of a class that you put into the package will be in that package’s namespace. This is the general form of the package statement: package pkg; Here, pkg is the name of the package. For example, the following statement creates a package called mypack. package mypack; Java uses the file system to manage packages, with each package stored in its own direc- tory. For example, the .class files for any classes you declare to be part of mypack must be stored in a directory called mypack. Like the rest of Java, package names are case sensitive. This means that the direc- tory in which a package is stored must be precisely the same as the package name. If you have trouble trying the examples in this chapter, remember to check your package and directory names carefully. Often, lowercase is used for package names. More than one file can include the same package statement. The package state- ment simply specifies to which package the file belongs. It does not exclude other classes in other files from being part of that same package. Most real-world packages are spread across many files. You can create a hierarchy of packages. To do so, simply separate each package name from the one above it by use of a period. The general form of a multileveled package statement is shown here: package pack1.pack2.pack3...packN; Of course, you must create directories that support the package hierarchy that you create. For example, package alpha.beta.gamma; must be stored in .../alpha/beta/gamma, where ... specifies the path to the specified directories. Finding Packages and classPath As just explained, packages are mirrored by directories. This raises an important question: How does the Java run-time system know where to look for packages that you create? The answer has three parts. First, by default, the run-time system uses the current working directory as its starting point. Therefore, if your package is in a sub- directory of the current directory, it will be found. Second, you can specify a directory path or paths by setting the CLASSPATH environmental variable. Third, you can use the -classpath option with java and javac to specify the path to your classes. For example, consider the following package specification: package mypack; In order for a program to find mypack, one of three things must be true: The program can be executed from a directory immediately above mypack, or CLASSPATH must be set to include the path to mypack, or the -classpath option must specify the path to mypack when the program is run via java. The easiest way to try the examples shown in this book is to create the package directories below your current development directory, put the .class files into the appropriate directories, and then execute the programs from the development direc- tory. This is the approach used by the following examples. One last point: To avoid problems, it is best to keep all .java and .class files asso- ciated with a package in that package’s directory. Also, compile each file from the directory above the package directory. a short Package example Keeping the preceding discussion in mind, try this short package example. It creates a simple book database that is contained within a package called bookpack. // A short package demonstration. package bookpack; This file is part of the bookpack package. class Book { Thus, Book is part of bookpack. private String title; private String author; private int pubDate; Java Programming 329 330 chapter 9 Packages Book(String t, String a, int d) { title = t; author = a; pubDate = d; } void show() { System.out.println(title); System.out.println(author); System.out.println(pubDate); } } class BookDemo { BookDemo is also part of bookpack. public static void main(String[] args) { Book[] books = new Book[5]; books[0] = new Book("The Art of Computer Programming, Vol 3", "Knuth", 1973); books[1] = new Book("Moby Dick", "Melville", 1851); books[2] = new Book("Thirteen at Dinner", "Christie", 1933); books[3] = new Book("Red Storm Rising", "Clancy", 1986); books[4] = new Book("On the Road", "Kerouac", 1955); for(int i=0; i < books.length; i++) { books[i].show(); System.out.println(); } } } Call this file BookDemo.java and put it in a directory called bookpack. Next, compile the file. You can do this by specifying javac bookpack/BookDemo.java from the directory directly above bookpack. Then try executing the class, using the following command line: java bookpack.BookDemo Remember, you will need to be in the directory above bookpack when you execute this command. (Or, use one of the other two options described in the preceding section to specify the path to bookpack.) As explained, BookDemo and Book are now part of the package bookpack. This means that BookDemo cannot be executed by itself. That is, you cannot use this com- mand line: java BookDemo Instead, BookDemo must be qualified with its package name. Java Programming 331 Progress check 1. What is a package? 2. Show how to declare a package called tools. 3. What is CLASSPATH? Packages and member access The preceding chapters have introduced the fundamentals of access control, including the private and public modifiers, but they have not told the entire story. The reason for this is that packages also participate in Java’s access control mechanism, and a complete discussion had to wait until packages were covered. The visibility of an element is determined by its access specification—private, public, protected, or default—and the package in which it resides. Thus, the visibility of an element is determined by its visibility within a class and its visibility within a package. This multilayered approach to access control supports a rich assortment of access privileges. Table 9-1 summarizes the various access levels. Let’s examine each access option individually. If a member of a class has no explicit access modifier, then it is visible within its package but not outside its package. Therefore, you will use the default access speci- fication for elements that you want to keep private to a package but public within that package. Members explicitly declared public are visible everywhere, including in different classes and different packages. There is no restriction on their use or access. A private member is accessible only to the other members of its class. A private member is unaffected by its membership in a package. A member specified as protected is acces- sible within its package and to all subclasses, including subclasses in other packages. Table 9-1 applies only to members of classes. A top-level class has only two pos- sible access levels: default and public. When a class is declared as public, it is acces- sible by any other code. If a class has default access, it can be accessed only by other code within its same package. The same is true of interfaces. Also, a class or interface that is declared public must reside in a file by the same name. Answers: 1. A package is a container for classes. It performs both an organization and an encapsulation role. 2. package tools; 3. CLASSPATH is the environmental variable that specifies the path to classes. 332 chapter 9 Packages Table 9-1: Class Member access Private Member Default Member Protected Member Public Member Visible within same class Yes Yes Yes Yes Visible within same package by subclass No Yes Yes Yes Visible within same package by non-subclass No Yes Yes Yes Visible within different package by subclass No No Yes Yes Visible within different package by non-subclass No No No Yes Progress check 1. If a class member has default access inside a package, is that member accessible by other packages? 2. What does protected do? 3. A private member can be accessed by subclasses within its packages. True or False? a Package access example In the package example shown earlier, both Book and BookDemo were in the same package, so there was no problem with BookDemo using Book because the default access privilege grants all members of the same package access. However, if Book were in one package and BookDemo were in another, the situation would be different. In this case, access to Book would be denied. To make Book available to other packages, you must make three changes. First, Book needs to be declared public. This makes Book visible outside of bookpack. Second, its constructor must be made public, and finally its show( ) method needs to be public. This allows them to be visible outside of bookpack, too. Thus, to make Book usable by other packages, it must be recoded as shown here. Answers: 1. No. 2. It allows a member to be accessible by other code in its package and by all subclasses, no matter what package the subclass is in. 3. False. // Book recoded for public access. package bookpack; public class Book { Book and its members must be public // Now public. public Book(String t, String a, int d) { title = t; author = a; pubDate = d; } // Now public. public void show() { System.out.println(title); System.out.println(author); System.out.println(pubDate); } } To use Book from another package, either you must use the import statement described later in this chapter, or you must fully qualify its name to include its full package specification. For example, here is a class called UseBook, which is con- tained in a different package, called mypack package. It fully qualifies Book in order to use it. // This class is in package mypack. package mypack; // Use the Book Class from bookpack. class UseBook { public static void main(String[] args) { bookpack.Book[] books = new bookpack.Book[5]; Qualify Book with its package name: bookpack. Java Programming 333 private String title; private String author; private int pubDate; in order to be used by other packages. books[0] = new bookpack.Book("The Art of Computer Programming, Vol 3", "Knuth", 1973); books[1] = new bookpack.Book("Moby Dick", "Melville", 1851); books[2] = new bookpack.Book("Thirteen at Dinner", "Christie", 1933); books[3] = new bookpack.Book("Red Storm Rising", "Clancy", 1986); books[4] = new bookpack.Book("On the Road", "Kerouac", 1955); for(int i=0; i < books.length; i++) { books[i].show(); System.out.println(); 334 chapter 9 Packages } } } Notice how every use of Book is preceded with the bookpack qualifier. Without this specification, Book would not be found when you tried to compile UseBook. understanding Protected members Newcomers to Java are sometimes confused by the meaning and use of protected. As explained, the protected modifier creates a member that is accessible within its package and to subclasses in other packages. Thus, a protected member is available for all subclasses to use but is still protected from arbitrary access by code outside its package. To better understand the effects of protected, let’s work through an example. First, change the Book class so that its instance variables are protected, as shown here. // Make the instance variables in Book protected. package bookpack; public class Book { // these are now protected protected String title; protected String author; protected int pubDate; These are now protected. public Book(String t, String a, int d) { title = t; author = a; pubDate = d; } public void show() { System.out.println(title); System.out.println(author); System.out.println(pubDate); } } Next, create a subclass of Book, called ExtBook, and a class called ProtectDemo that uses ExtBook. ExtBook adds a field that stores the book’s condition and sev- eral accessor methods. Both of these classes will be in their own package called bookpackext. They are shown here. // Demonstrate protected. package bookpackext; class ExtBook extends bookpack.Book { private String condition; public ExtBook(String t, String a, int d, String c) { super(t, a, d); condition = c; } public void show() { super.show(); System.out.print("Condition is " + condition); System.out.println(); } public String getCondition() { return condition; } public void setCondition(String c) { condition = c; } /* These are OK because subclass can access a protected member. */ public String getTitle() { return title; } public void setTitle(String t) { title = t; } public String getAuthor() { return author; } public void setAuthor(String a) { author = a; } public int getPubDate() { return pubDate; } public void setPubDate(int d) { pubDate = d; } } class ProtectDemo { public static void main(String[] args) { ExtBook[] books = new ExtBook[5]; // } books[0] = new ExtBook("The Art of Computer Programming, Vol 3", "Knuth", 1973, "well used"); books[1] = new ExtBook("Moby Dick", "Melville", 1851, "like new"); books[2] = new ExtBook("Thirteen at Dinner", "Christie", 1933, "fair"); books[3] = new ExtBook("Red Storm Rising", "Clancy", 1986, "good"); books[4] = new ExtBook("On the Road", "Kerouac", 1955, "fair"); for(int i=0; i < books.length; i++) { books[i].show(); System.out.println(); } // Find condition of Moby Dick. System.out.print("Condition of Moby Dick is "); for(int i=0; i < books.length; i++) if(books[i].getTitle() == "Moby Dick") System.out.println(books[i].getCondition()); books[0].title = "test title"; // Error – not accessible } Access to protected field not allowed by non-subclass. Java Programming 335 Access to Book’s members is allowed for subclasses. 336 chapter 9 Packages Look first at the code inside ExtBook. Because ExtBook extends Book, it has access to the protected members of Book even though ExtBook is in a different pack- age. Thus, it can access title, author, and pubDate directly, as it does in the accessor methods it creates for those variables. However, in ProtectDemo, access to these vari- ables is denied because ProtectDemo is not a subclass of Book. For example, if you remove the comment symbol from the following line, the program will not compile. // books[0].title = "test title"; // Error – not accessible ask the expert Q Are there any restrictions on the way that a subclass can access a protected member? AAs the ProtectDemo example shows, a subclass in a different package has access to a protected member of its superclass for the purposes of extending the superclass. However, a subclass in a different package does not have the ability to access a protected member of its superclass through an object of that superclass. For example, if the following method is added to ExtBook void wontWork() { bookpack.Book b = new bookpack.Book("sometitle", "someauthor", 1961); b.title = "newtitle"; // Error! } the attempt to access title through b will fail. If you think about it, this restriction makes sense. A subclass can use a protected member for the purpose of imple- menting the subclass, but not as a means of getting around the protected access limitation in general. ImPortIng Packages When you use a class from another package, you can fully qualify the name of the class with the name of its package, as the preceding examples have done. However, such an approach could easily become tiresome and awkward, especially if the classes you are qualifying are deeply nested in a package hierarchy. Since Java was invented by programmers for programmers—and programmers don’t like tedious constructs— it should come as no surprise that a more convenient method exists for using the contents of packages: the import statement. Using import, you can bring one or more members of a package into view. This allows you to use those members directly, with- out explicit package qualification. Here is the general form of the import statement: import pkg.classname; Here, pkg is the name of the package, which can include its full path, and class- name is the name of the class being imported. If you want to import the entire Java Programming 337 contents of a package, use an asterisk (*) for the class name. Here are examples of both forms: import mypack.MyClass; import mypack.*; In the first case, the MyClass class is imported from mypack. In the second, all of the classes in mypack are imported. In a Java source file, import statements occur imme- diately following the package statement (if it exists) and before any class definitions. You can use import to bring the bookpack package into view so that the Book class can be used without qualification. To do so, simply add this import statement to the top of any file that uses Book. import bookpack.*; For example, here is the UseBook class recoded to use import. // Demonstrate import. package mypack; import bookpack.*; Import bookpack. // Use the Book Class from bookpack. class UseBook { public static void main(String[] args) { Book[] books = new Book[5]; Now, you can refer to Book directly, without qualification. books[0] = new Book("The Art of Computer Programming, Vol 3", "Knuth", 1973); books[1] = new Book("Moby Dick", "Melville", 1851); books[2] = new Book("Thirteen at Dinner", "Christie", 1933); books[3] = new Book("Red Storm Rising", "Clancy", 1986); books[4] = new Book("On the Road", "Kerouac", 1955); for(int i=0; i < books.length; i++) { books[i].show(); System.out.println(); } } } Notice that you no longer need to qualify Book with its package name. Importing Java’s standard Packages As explained earlier in this book, Java defines a large number of standard classes that are available to all programs. This class library is often referred to as the Java API (Application Programming Interface). The Java API is stored in packages. At the top of the package hierarchy is java. Descending from java are several subpackages, including these: 338 chapter 9 Packages Subpackage Description java.lang Contains a large number of general-purpose classes java.io Contains the I/O classes java.net Contains those classes that support networking java.applet Contains classes for creating applets java.awt Contains classes that support the Abstract Window Toolkit java.util Contains various utility classes, plus the Collections Framework Since the beginning of this book, you have been using java.lang. It contains, among several others, the System class, which you have been using when perform- ing output using println( ). The java.lang package is unique because it is imported automatically into every Java program. This is why you did not have to import java. lang in the preceding sample programs. You must, however, explicitly import the other packages in the API. The standard packages are imported in the same way as those shown in the preceding examples. For example, to import all of java.net, use the following statement: import java.net.*; Later in this book, several packages in the Java API will be examined. As you will see, the API offers a vast assortment of predefined functionality that your program can access, simply by importing the relevant package. 1. How do you include another package in a source file? 2. Show how to include all of the classes in a package called toolpack. 3. Do you need to include java.lang explicitly? Progress check Try This 9-1 Moving a Class to Another Package Dog.java Owner.java DogOwnerDemo.java This project shows what is involved in moving a class to another package. As you can probably guess, it requires more than just changing the package statement at the beginning of the file containing the class. We will use three classes in this project: an Owner class, a Dog class, and a DogOwnerDemo class. Initially, the Owner and Dog classes will be in an owner package, and the DogOwnerDemo class will be in its own package. Then we will move the Dog class to a new dog package. Answers: 1. Use the import statement. 2. import toolpack.*; 3. No. Java Programming 339 STEP-By-STEP 1. Under your current working directory, create the following three directories: owner, dogownerdemo, and dog. 2. In the owner directory, create a file called Dog.java. Into Dog.java, add the following code. package owner; public class Dog { String name; public Dog(String n) { name = n; } public String toString() { return name; } } 3. In the owner directory, create a file called Owner.java. Into Owner.java, add the following code. package owner; public class Owner { String name; Dog dog; public Owner(String n, Dog d) { name = n; dog = d; } public String toString() { return name + " owns " + dog; } } 4. In the dogownerdemo directory, create a file called DogOwnerDemo.java. Into DogOwnerDemo.java, add the following program. package dogownerdemo; import owner.*; class DogOwnerDemo { public static void main(String[] args) { Owner owner = new Owner("Fred", new Dog("Sam")); System.out.println(owner); } } 340 chapter 9 Packages 5. Compile all the files from the current working directory using this sequence: javac owner/Dog.java javac owner/Owner.java javac dogownerdemo/DogOwnerDemo.java Then, use this line java dogownerdemo.DogOwnerDemo to run the DogOwnerDemo class to make sure everything is working prop- erly. You should get the following output. Fred owns Sam 6. Now we will move the Dog class to a new dog package. There are three steps. A. Change the first line of Dog.java to read package dog; instead of package owner;. B. Move Dog.java to the directory named dog. (Be sure to remove both its source file and class file from the owner directory.) C. Add the line import dog.*; to both of the other files, since they both use the Dog class. 7. Compile all files as just shown, except that now Dog.java is compiled using this line: javac dog/Dog.java Next, again run DogOwnerDemo as shown earlier. You should get the same output as before. 8. It is important to understand that it was relatively simple to move Dog from one package to another due to a variety of factors. First, the import state- ment made it easy for other classes to still access the Dog class, even though it was moved to a different package—only one new line of code needed to be added to those classes. Second, the fact that the Dog class and its method and constructor are public made it possible for the class to be moved and still be accessible by other classes. In contrast, if other classes in the owner package had directly accessed the Dog’s name instance variable, which is not public, then, after the move, they would no longer have been able do so. Thus, a change to their code would have been required. Similarly, if the Dog class had accessed any non-public member of a class in the owner package, it would no longer be able to do so after the move, and so its code would also have needed to be changed. In summary, moving a class to a new package can raise several issues. The key to preventing problems is to spend time up front, carefully designing your classes and packages to minimize the number of times that a package needs to be changed. statIc ImPort Java supports an expanded use of the import keyword. By following import with the keyword static, an import statement can be used to import the static members of a class or interface. This is called static import, and it was added to Java by JDK 5. When using static import, it is possible to refer to static members directly by their names, without having to qualify them with the name of their class. This simplifies and shortens the syntax required to use a static member. To understand the usefulness of static import, let’s begin with an example that does not use it. The following program computes the solutions to a quadratic equation, which has this form: ax2 + bx + c = 0 The program uses two static methods from Java’s built-in math class Math, which is part of java.lang. The first is Math.pow( ), which returns a value raised to a specified power. The second is Math.sqrt( ), which returns the square root of its argument. // Find the solutions to a quadratic equation. class Quadratic { public static void main(String[] args) { // a, b, and c represent the coefficients in the // quadratic equation: ax2 + bx + c = 0 double a, b, c, x; //Solve4x2 +x-3=0forx. a = 4; b = 1; c = -3; // Find first solution. x = (-b + Math.sqrt(Math.pow(b, 2) - 4 * a * c)) System.out.println("First solution: " + x); // Find second solution. x = (-b - Math.sqrt(Math.pow(b, 2) - 4 * a * c)) System.out.println("Second solution: " + x); } } / (2 * a); / (2 * a); Java Programming 341 Because pow( ) and sqrt( ) are static methods, they must be called through the use of their class’s name, Math. This results in a somewhat unwieldy expression: x = (-b + Math.sqrt(Math.pow(b, 2) - 4 * a * c)) / (2 * a); Furthermore, having to specify the class name each time pow( ) or sqrt( ) (or any of Java’s other math methods, such as sin( ), cos( ), and tan( )) are used can become tedious. You can eliminate the tedium of specifying the class name through the use of static import, as shown in the following version of the preceding program. 342 chapter 9 Packages // Use static import to bring sqrt() and pow() into view. import static java.lang.Math.sqrt; import static java.lang.Math.pow; class Quadratic { public static void main(String[] args) { Use static import to bring sqrt( ) and pow( ) into view. // a, b, and c represent the coefficients in the // quadratic equation: ax2 + bx + c = 0 double a, b, c, x; //Solve4x2 +x-3=0forx. a = 4; b = 1; c = -3; // Find first solution. x = (-b + sqrt(pow(b, 2) - 4 * a * c)) / (2 * a); System.out.println("First solution: " + x); // Find second solution. x = (-b - sqrt(pow(b, 2) - 4 * a * c)) / (2 * a); System.out.println("Second solution: " + x); } } In this version, the names sqrt and pow are brought into view by these static import statements: import static java.lang.Math.sqrt; import static java.lang.Math.pow; After these statements, it is no longer necessary to qualify sqrt( ) or pow( ) with its class name. Therefore, the expression can more conveniently be specified, as shown here: x = (-b + sqrt(pow(b, 2) - 4 * a * c)) / (2 * a); As you can see, this form is considerably shorter and easier to read. There are two general forms of the import static statement. The first, which is used by the preceding example, brings into view a single name. Its general form is shown here: import static pkg.type-name.static-member-name; Here, type-name is the name of a class or interface that contains the desired static member. Its full package name is specified by pkg. The name of the member is speci- fied by static-member-name. Java Programming 343 The second form of static import imports all static members. Its general form is shown here: import static pkg.type-name.*; If you will be using many static methods or fields defined by a class, then this form lets you bring them into view without having to specify each individually. Therefore, the preceding program could have used this single import statement to bring both pow( ) and sqrt( ) (and all other static members of Math) into view: import static java.lang.Math.*; Of course, static import is not limited just to the Math class or just to methods. For example, this brings the static field System.out into view: import static java.lang.System.out; After this statement, you can output to the console without having to qualify out with System, as shown here: out.println("After importing System.out, you can use out directly."); Whether importing System.out as just shown is a good idea is subject to debate. Although it does shorten the statement, it is no longer instantly clear to anyone reading the program that the out being referred to is System.out. As convenient as static import can be, it is important not to abuse it. Remember, one reason that Java organizes its libraries into packages is to avoid namespace col- lisions. When you import static members, you are bringing those members into the global namespace. Thus, you are increasing the potential for namespace conflicts and the inadvertent hiding of other names. If you are using a static member once or twice in the program, it’s best not to import it. Also, some static names, such as System.out, are so recognizable that you might not want to import them. Static import is designed for those situations in which you are using a static member repeatedly, such as when performing a series of mathematical computations. In essence, you should use, but not abuse, this feature. ask the expert Q Is static import only for use with classes in the Java library, or can I use static import with classes that I create? AYou can use static import to import the static members of classes and inter- faces you create. Doing so is especially convenient when you define several static members that are used frequently throughout a large program. For example, if a class defines a number of static final constants that specify various limits, then using static import to bring them into view will save you a lot of tedious typing. However, the same caution given earlier still applies: use, but don’t abuse, this feature. 344 chapter 9 Packages exercIses 1. Using the code from Try This 8-1, put the ISimpleStack interface and its two implementations into a package called stackpack. Keeping the stack demon- stration class ISimpleStackDemo in the default package, show how to import and use the classes in stackpack. 2. What is a namespace? Why is it important that Java allows you to partition the namespace? 3. Packages are stored in ______________. 4. Explain the difference between protected and default access. 5. Explain the two ways that the members of a package can be accessed by other packages. 6. A package is, in essence, a container for classes. True or False? 7. What standard Java package is automatically imported into a program? 8. In your own words, what does static import do? 9. What does this statement do? import static somepack.SomeClass.myMethod; 10. Is static import designed for special-case situations, or is it good practice to bring all static members of all classes into view? 11. It is fine for the Java library to divide classes and interfaces into packages, but why do you need to do so for your programs? What is wrong with just giving all your classes unique names so that there is never a name conflict? 12. True or false: A. If you don’t include a package statement in a Java source file, then all classes declared in the file do not belong to any package. B. If a class A is in one package pkg and a second class B is in a subpackage pkg.subpkg, then class A automatically has access to all members of class B that use the protected modifier. 13. Rank the three access modifiers public, private, and protected, and the default access in order from most restrictive to least restrictive. 14. Suppose a class A has four instance variables with four different access levels as follows: class A { private int x; public int y; protected int z; int w; } Java Programming 345 and suppose a class B attempts to access those four variables as follows: class B { public static void main(String[] args) { A a = new A(); System.out.println(a.x); System.out.println(a.y); System.out.println(a.z); System.out.println(a.w); } } Which of the four calls to println( ) in class B’s main( ) method are legal if: A. classes A and B are in the same package? B. classes A and B are in different packages? C. class B is a subclass of class A and in the same package? D. class B is a subclass of class A and in a different package? 15. Suppose an interface MyConstants is defined as follows: package mypackage; public interface MyConstants { public static final int ANSWER = 42; } There are two ways to bring the constant ANSWER into view for use in another class: (1) have your class implement the MyConstants interface and (2) use a static import statement. Demonstrate how to use each of these approaches to get the following code to compile: class MyClass { public static void main(String[] args) { System.out.println(ANSWER); } } 16. Suppose you have a file MyClass.java containing the declaration of the class MyClass and suppose you want to move MyClass into a different package. What are two changes that need to be made to MyClass.java? 17. When you import a class, you are adding the class name to the current namespace. What if there is already a class of that name? For example, suppose you define the following class. What will happen when you try to compile it? import java.util.Date; public class Date { public static String getDate() { return "Jan 1, 1970"; } } 346 chapter 9 Packages 18. Suppose a package pkg1 contains a class named MyClass and another package pkg2 contains a different class named MyClass. What happens when you import both classes? In particular, what would happen if you attempt to compile the following code? import pkg1.MyClass; import pkg2.MyClass; public class AnotherClass { public static void main(String[] args) { MyClass c = new MyClass(); } } 19. When you import a whole package instead of just one class or interface, you are adding all the class and interface names in that package to the current namespace. What if there is already a class or interface of one of the imported names? For example, suppose you define the following classes. What happens when you try to compile and run the Test class? Note that the java.util package already has a Date class. import java.util.*; public class Date { public static String getDate() { return "Jan 1, 1970"; } } class Test { public static void main(String[] args) { System.out.println(Date.getDate()); } } CHaptEr Exception Handling key skills & concepts j Know the exception hierarchy j Use try and catch j Understand the effects of an uncaught exception j Use multiple catch clauses j Catch subclass exceptions j Nest try blocks j Throw an exception j Know the members of Throwable j Use finally j Use throws j Know Java’s built-in exceptions j Create custom exception classes This chapter discusses exception handling. An exception is an error that occurs at run time. Using Java’s exception handling subsystem, you can, in a structured and controlled manner, handle run-time errors. A principal advantage of exception handling is that it automates much of the error handling code that previously had to be entered “by hand” into any large program. For example, in some older computer languages, error codes are returned when a method fails, and these values must be checked manually, each time the method is called. This approach is both tedious and error-prone. Exception handling streamlines error handling by allowing your program to define a block of code, called an exception handler, that is executed automatically when an error occurs. It is not neces- sary to manually check the success or failure of each specific operation or method call. If an error occurs, it will be processed by the exception handler. Another reason that exception handling is important is that Java defines standard exceptions for common program errors, such as divide-by-zero or an out-of-bounds array index. To respond to these errors, your program must watch for and handle these exceptions. Also, Java’s API library makes extensive use of exceptions. In general, to 347 10 348 chapter 10 Exception Handling be a successful Java programmer means that you are fully capable of navigating Java’s exception handling subsystem. tHE ExCEption HiErarCHy In Java, all exceptions are represented by classes. All exception classes are derived from a class called Throwable. Thus, when an exception occurs in a program, an object of some type of exception class is generated. There are two direct subclasses of Throwable: Exception and Error. Exceptions of type Error are related to errors that are beyond your control, such as those that occur in the Java virtual machine itself. Your program will not usually deal with them. Thus, these types of exceptions are not described here. Errors that result from program activity are represented by subclasses of Exception. For example, divide-by-zero, array boundary, and I/O errors fall into this category. In general, your program should handle exceptions of these types. An important subclass of Exception is RuntimeException, which is used to represent various common types of run-time errors. ExCEption Handling FundamEntals Java exception handling is managed via five keywords: try, catch, throw, throws, and finally. They form an interrelated subsystem in which the use of one implies the use of another. Throughout the course of this chapter, each keyword is examined in detail. However, it is useful at the outset to have a general understanding of the role each plays in exception handling. Briefly, here is how they work. Program statements that you want to monitor for exceptions are contained within a try block. If an exception occurs within the try block, it is thrown. Your code can catch this exception using catch and handle it in some rational manner. System- generated exceptions are automatically thrown by the Java run-time system. To manu- ally throw an exception, use the keyword throw. In some cases, an exception that is thrown out of a method must be specified as such by a throws clause. Any code that absolutely must be executed upon exiting from a try block is put in a finally block. ask the Expert Q Just to be sure, could you review the conditions that cause an exception to be generated? AExceptions are generated in three different ways. First, the JVM or the run- time support system can generate an exception in response to some internal error that is beyond your control. Normally, your program won’t handle these types of exceptions. Second, standard exceptions, such as those corresponding to divide- by-zero or array index out-of-bounds, are generated by errors in program code. You will often need to handle these exceptions. Third, you can manually generate an exception by using the throw statement. No matter how an exception is generated, it is caught in the same way. using try and catch At the core of exception handling are try and catch. These keywords work together; you can’t have a catch without a try. Here is the general form of the try/catch excep- tion handling blocks: try { // block of code to monitor for errors } catch (ExcepType1 exOb) { // handler for ExcepType1 } catch (ExcepType2 exOb) { // handler for ExcepType2 } . . . Here, ExcepType is the type of exception that has occurred. When an exception is thrown, it is caught by its corresponding catch clause, which then processes the exception. As the general form shows, there can be more than one catch clause asso- ciated with a try. The type of the exception determines which catch is executed. That is, if the exception type specified by a catch matches that of the exception, then that catch clause is executed (and all others are bypassed). When an exception is caught, exOb will receive its value. Here is an important point: If no exception is thrown, then a try block ends normally, and all of its catch clauses are bypassed. Execution resumes with the first statement fol- lowing the last catch. Thus, catch clauses are executed only if an exception is thrown. Note: JDK 7 adds a new form of the try statement that supports automatic resource management. This new form of try is called try-with-resources. It is described in Chapter 11, in the context of managing I/O streams (such as those connected to a file) because streams are some of the most commonly used resources. a simple Exception Example Here is a simple example that illustrates how to watch for and catch an exception. As you know, it is an error to attempt to index an array beyond its boundaries. When this occurs, the JVM throws an ArrayIndexOutOfBoundsException. The following program purposely generates such an exception and then catches it. // Demonstrate exception handling. class ExcDemo1 { public static void main(String[] args) { int[] nums = new int[4]; try { Create a try block. Java programming 349 350 chapter 10 Exception Handling System.out.println("Before exception is generated."); // generate an index out-of-bounds exception nums[7] = 10; System.out.println("this won't be displayed"); Attempt to index past nums boundary. } catch (ArrayIndexOutOfBoundsException exc) { Catch array boundary errors. // catch the exception System.out.println("Index out-of-bounds!"); } System.out.println("After catch."); } } This program displays the following output: Before exception is generated. Index out-of-bounds! After catch. Although quite short, the preceding program illustrates several key points about exception handling. First, the code that you want to monitor for errors is contained within a try block. Second, when an exception occurs (in this case, because of the attempt to index nums beyond its bounds), the exception is thrown out of the try block and caught by the catch. At this point, control passes to the catch, and the try block is terminated. That is, catch is not called. Rather, program execution is trans- ferred to it. This means that the println( ) statement following the out-of-bounds index will never execute. After the catch clause executes, program control continues with the statements following the catch. Thus, it is the job of your exception handler to remedy the problem that caused the exception (if possible) so that program execution can continue normally. If the problem can’t be remedied, then your exception handler must take some other appropriate action, such as informing the user and terminating the program. Remember, if no exception is thrown by a try block, no catch clauses will be executed and program control will resume after the catch. To confirm this, in the preceding program, change the line nums[7] = 10; to nums[0] = 10; Now, no exception is generated, and the catch block is not executed. It is important to understand that all code within a try block is monitored for exceptions. This includes exceptions that might be generated by a method called from within the try block. An exception thrown by a method called from within a try block can be caught by the catch clauses associated with that try block—assuming, of course, that the method did not catch the exception itself. For example, this is a valid program: /* An exception can be generated by one method and caught by another. */ class ExcTest { // Generate an exception. static void genException() { int[] nums = new int[4]; System.out.println("Before exception is generated."); // generate an index out-of-bounds exception nums[7] = 10; Exception generated here. Java programming 351 System.out.println("this won't be displayed"); } } class ExcDemo2 { public static void main(String[] args) { try { ExcTest.genException(); } catch (ArrayIndexOutOfBoundsException exc) { // catch the exception System.out.println("Index out-of-bounds!"); } System.out.println("After catch."); } } Exception caught here. This program produces the following output, which is the same as that produced by the first version of the program shown earlier. Before exception is generated. Index out-of-bounds! After catch. Since genException( ) is called from within a try block, the exception that it gener- ates (and does not catch) is caught by the catch in main( ). Understand, however, that if genException( ) had caught the exception itself, it never would have been passed back to main( ). 1. What is an exception? 2. Code monitored for exceptions must be part of what statement? 3. What does catch do? After a catch executes, what happens to the flow of execution? Answers: 1. An exception is a run-time error. 2. To monitor code for exceptions, it must be part of a try block. 3. The catch receives exceptions. A catch is not called; thus execution does not return to the point at which the exception was generated. Rather, execution con- tinues after the catch block. progress Check 352 chapter 10 Exception Handling tHE ConsEquEnCEs oF an unCaugHt ExCEption Catching one of Java’s standard exceptions, as the preceding program does, has a side benefit: It prevents abnormal program termination. When an exception is thrown, it must be caught by some piece of code, somewhere. In general, if your program does not catch an exception, then it will be caught by the JVM. The trouble is that the JVM’s default exception handler terminates execution and displays an error message followed by a list of the method calls that lead to the exception. (This list is commonly referred to as a stack trace.) For example, in this version of the preceding example, the program does not catch the index out-of-bounds exception. // Let JVM handle the error. class NotHandled { public static void main(String[] args) { int[] nums = new int[4]; System.out.println("Before exception is generated."); // generate an index out-of-bounds exception nums[7] = 10; } } When the array index error occurs, execution is halted, and the following error mes- sage is displayed. Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7 at NotHandled.main(NotHandled.java:9) Although such a message is useful for you while debugging, it would not be some- thing that you would want others to see, to say the least! This is why it is important for your program to handle exceptions itself, rather than rely on the JVM. As mentioned earlier, the type of the exception must match the type specified in a catch. If it doesn’t, the exception won’t be caught. For example, the following pro- gram tries to catch an array boundary error with a catch for an ArithmeticException (another of Java’s built-in exceptions). When the array boundary is overrun, an ArrayIndexOutOfBoundsException is generated, but it won’t be caught by the catch. This results in abnormal program termination. // This won't work! class ExcTypeMismatch { public static void main(String[] args) { int[] nums = new int[4]; This throws an ArrayIndexOutOfBoundsException. try { System.out.println("Before exception is generated."); //generate an index out-of-bounds exception nums[7] = 10; System.out.println("this won't be displayed"); } Java programming 353 /* Can't catch an array boundary error with an ArithmeticException. */ catch (ArithmeticException exc) { This tries to catch it with an ArithmeticException. System.out.println("Index out-of-bounds!"); } System.out.println("After catch."); } } The output is shown here. Before exception is generated. Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7 at ExcTypeMismatch.main(ExcTypeMismatch.java:10) As the output demonstrates, a catch for ArithmeticException won’t catch an ArrayIndexOutOfBoundsException. ExCEptions EnablE you to HandlE Errors graCEFully One of the key benefits of exception handling is that it enables your program to respond to an error in a graceful, rational way. In some cases, it may be possible to fix the problem and allow the program to continue running. For example, if the user attempts to open a file, but specifies an invalid file name, you could reprompt the user, asking for a new file name. In other cases, the error can’t be fixed, but program execution can continue. For example, a network connection might time-out, but a program using that connection may be performing other tasks that are not dependent on that connection. In such a case, you can inform the user about the problem, cancel the operation that caused the exception, but let the other parts of the program continue. Of course, in some cases, there is no way to fix or bypass a problem and program execution must be terminated. However, even in these cases, you should do an orderly shutdown. To give you a sense of how an exception handler can prevent abrupt program termination, consider the following example. It divides the elements of one array by the elements of another. If a division by zero occurs, an ArithmeticException is generated. In the program, this exception is handled by reporting the error and then continuing with execution. Thus, attempting to divide by zero does not cause an abrupt run-time error resulting in the termination of the program. Instead, it is handled and program execution is allowed to continue. Of course, it is trivially easy to prevent a divide-by-zero error in the first place by ensuring that the denominator is not zero prior to the division. However, producing divide-by-zero errors gives us an easy way to generate exceptions for the purposes of demonstration. // catch the exception 354 chapter 10 Exception Handling // Handle error and continue. class ExcDemo3 { public static void main(String[] args) { int[] numer = { 4, 8, 16, 32, 64, 128 }; int[] denom = { 2, 0, 4, 4, 0, 8 }; for(int i=0; i

ChaptEr 13
Enumerations, autoboxing, and annotations
key skills & concepts
j Understand enumeration fundamentals
j Use the class-based features of enumerations
j Apply the values( ) and valueof( ) methods to enumerations
j Create enumerations that have constructors, instance variables, and methods
j Employ the ordinal( ) and compareTo( ) methods that enumerations inherit from Enum
j Use Java’s type wrappers
j Know the basics of autoboxing and auto-unboxing j Use autoboxing with methods
j Understand how autoboxing works with expressions j Gain an overview of annotations
This chapter discusses three features that are relatively recent additions to Java. They are enumerations, autoboxing, and annotations. Although none of these were part of the original specification of Java, each expands the power and usability of the language. In the case of enumerations and autoboxing, both streamline the language, simplifying certain common constructs. Annotations expand the kinds of information that can be embedded within a source file. Collectively, all offer a better way to solve common programming problems. Also discussed in this chapter are Java’s type wrap- pers because they relate to autoboxing.
EnumErations
Although the enumeration is a common programming feature that is found in sev- eral other computer languages, it was not part of the original specification for Java. One reason for this is that the enumeration is technically a convenience rather than a necessity. However, over the years, many programmers had wanted Java to
475

476 chapter 13 Enumerations, autoboxing, and annotations
support enumerations because they offer an elegant, structured solution to a variety of programming tasks. This request was granted by the release of JDK 5, which added enumerations to Java.
In its simplest form, an enumeration is a list of named constants that define a new data type. An object of an enumeration type can hold only the values that are defined by the list. Thus, an enumeration gives you a way to precisely define a new type of data that has a fixed number of valid values.
Enumerations are common in everyday life. For example, an enumeration of the coins used in the United States is penny, nickel, dime, quarter, half-dollar, and dol- lar. An enumeration of the months in the year consists of the names January through December. An enumeration of the days of the week is Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday.
From a programming perspective, enumerations are useful whenever you need to define a set of values that represent a collection of items. For example, you might use an enumeration to represent a set of status codes, such as success, waiting, failed, and retrying, which indicate the progress of a file transfer. In the past, such values were defined as final variables, but enumerations offer a more structured approach.
Enumeration Fundamentals
An enumeration is created using the enum keyword. For example, here is a simple enumeration that lists various forms of transportation:
// An enumeration of transportation. enum Transport {
CAR, TRUCK, AIRPLANE, TRAIN, BOAT }
The identifiers CAR, TRUCK, and so on, are called enumeration constants, or enum constants for short. Each is implicitly declared as a public, static member of Transport. Furthermore, the enumeration constants’ type is the type of the enumera- tion in which the constants are declared, which is Transport in this case. Thus, these constants are sometimes referred to as self-typed, where “self ” refers to the enclosing enumeration.
Once you have declared an enumeration, you can create a variable of that type. However, even though enumerations define a class type, you do not instantiate an enum using new. Instead, you declare and use an enumeration variable in much the same way that you do one of the primitive types. For example, this declares tp as a variable of enumeration type Transport:
Transport tp;
Because tp is of type Transport, the only values that it can be assigned are those constants defined by the enumeration, or null. For example, this assigns tp the value AIRPLANE:
tp = Transport.AIRPLANE;
Notice that the symbol AIRPLANE is qualified by Transport.

Java programming 477 Two enumeration constants can be compared for equality by using the = = relational
operator. For example, this statement compares the value in tp with the TRAIN constant: if(tp == Transport.TRAIN) // …
An enumeration value can also be used to control a switch statement. Of course, all of the case statements must use constants from the same enum as that used by the switch expression. For example, this switch is perfectly valid:
// Use an enum to control a switch statement. switch(tp) {
case CAR: // …
case TRUCK: // …
Notice that in the case statements, the names of the enumeration constants are used without being qualified by their enumeration type name. That is, TRUCK, not Transport.TRUCK, is used. This is because the type of the enumeration in the switch expression has already implicitly specified the enum type of the case con- stants. There is no need to qualify the constants in the case statements with their enum type name. In fact, attempting to do so will cause a compilation error.
When an enumeration constant is displayed, such as in a println( ) statement, its name is output. For example, given this statement:
System.out.println(Transport.BOAT);
the name BOAT is displayed.
The following program puts together all of the pieces and demonstrates the
Transport enumeration.
// An enumeration of Transport varieties. enum Transport {
CAR, TRUCK, AIRPLANE, TRAIN, BOAT Declare an enumeration. }
class EnumDemo {
public static void main(String[] args) {
// Output an enum value. System.out.println(“Value of tp: ” + tp); System.out.println();
tp = Transport.TRAIN;
// Compare two enum values. if(tp == Transport.TRAIN)
System.out.println(“tp contains TRAIN.\n”);
Declare a Transport reference.
Transport tp;
tp = Transport.AIRPLANE; Assign tp the constant AIRPLANE.
Compare two Transport objects for equality.

478 chapter 13 Enumerations, autoboxing, and annotations
// Use an enum to control a switch statement. switch(tp) {
Use an enumeration to control a switch statement.
case CAR:
System.out.println(“A car carries people.”); break;
case TRUCK:
System.out.println(“A truck carries freight.”); break;
case AIRPLANE:
System.out.println(“An airplane flies.”); break;
case TRAIN:
System.out.println(“A train runs on rails.”); break;
case BOAT:
System.out.println(“A boat sails on water.”); break;
} }
}
The output from the program is shown here:
Value of tp: AIRPLANE
tp contains TRAIN.
A train runs on rails.
Before moving on, it’s helpful to make one stylistic point. The constants in Transport use uppercase. (Thus, CAR, not car, is used.) However, the use of uppercase is not required. In other words, there is no rule that requires enumeration constants to be in uppercase. However, this is the style commonly used by Java programmers. (There are, of course, other viewpoints and styles.) The examples in this book will use uppercase for enumera- tion constants, for consistency.
1. An enumeration defines a list of __________ constants. 2. What keyword declares an enumeration?
3. Given
enum Directions {
LEFT, RIGHT, UP, DOWN
}
What is the data type of UP? Answers:
1. named
2. enum
3. The data type of UP is Directions because enumerated constants are self-typed.
progress Check

Java EnumErations arE Class typEs
Although the preceding examples show the mechanics of creating and using an enu- meration, they don’t show all of its capabilities. The reason is that Java implements enumerations as class types. Although you don’t instantiate an enum using new, it oth- erwise acts much like other classes. The fact that enum defines a class enables the Java enumeration to have powers that it otherwise would not. For example, you can give it constructors, add instance variables and methods, and even implement interfaces.
thE values( ) and valueof( ) mEthods
All enumerations automatically have two predefined methods: values( ) and valueOf( ). Their general forms are shown here:
public static enum-type[ ] values( )
public static enum-type valueOf(String str)
The values( ) method returns an array that contains a list of the enumeration constants. The valueOf( ) method returns the enumeration constant whose value corresponds to the string passed in str. In both cases, enum-type is the type of the enumeration. For example, in the case of the Transport enumeration shown earlier, the return type of Transport.valueOf(“TRAIN”) is Transport. The value returned is TRAIN. The following program demonstrates the values( ) and valueOf( ) methods.
// Use the built-in enumeration methods.
// An enumeration of Transport varieties. enum Transport {
CAR, TRUCK, AIRPLANE, TRAIN, BOAT }
class EnumDemo2 {
public static void main(String[] args) {
Transport tp;
System.out.println(“Here are all Transport constants”);
// use values()
Transport[] allTransports = Transport.values();
Java programming 479
for(Transport t : allTransports) System.out.println(t);
System.out.println();
// use valueOf()
tp = Transport.valueOf(“AIRPLANE”); System.out.println(“tp contains ” + tp);
} }
Obtain an array of Transport constants.
Obtain the constant with the name AIRPLANE.

480 chapter 13 Enumerations, autoboxing, and annotations The output from the program is shown here:
Here are all Transport constants CAR
TRUCK
AIRPLANE
TRAIN BOAT
tp contains AIRPLANE
Notice that this program uses a for-each style for loop to cycle through the array of constants obtained by calling values( ). For the sake of illustration, the vari- able allTransports was created and assigned a reference to the enumeration array. However, this step is not necessary because the for could have been written as shown here, eliminating the need for the allTransports variable:
for(Transport t : Transport.values()) System.out.println(t);
Next, notice how the value corresponding to the name AIRPLANE was obtained by calling valueOf( ):
tp = Transport.valueOf(“AIRPLANE”);
As explained, valueOf( ) returns the enumeration value associated with the name of the constant represented as a string.
ConstruCtors, mEthods, instanCE
variablEs, and EnumErations
It is important to understand that each enumeration constant is an object of its enu- meration type. Thus, an enumeration can define constructors, add methods, and have instance variables. When you define a constructor for an enum, the constructor is called when each enumeration constant is created. Each enumeration constant can call any method defined by the enumeration. Each enumeration constant has its own copy of any instance variables defined by the enumeration. The following version of Transport illustrates the use of a constructor, an instance variable, and a method. It gives each type of transportation a typical speed.
// Use an enum constructor, instance variable, and method. enum Transport {
CAR(65), TRUCK(55), AIRPLANE(600), TRAIN(70), BOAT(22);
private int speed; // typical speed of each transport
Add an instance variable. Transport(int s) { speed = s; } Add a constructor.
int getSpeed() { return speed; } Add a method. }
Notice the initialization values.
// Constructor

class EnumDemo3 {
public static void main(String[] args) {
Transport tp;
// Display speed of an airplane. System.out.println(“Typical speed for an airplane is ” +
Transport.AIRPLANE.getSpeed() +
} }
The output is shown here:
” miles per hour.”);
Typical speed for an airplane is 600 miles per hour.
All Transport speeds:
CAR typical speed is 65 miles per hour.
TRUCK typical speed is 55 miles per hour. AIRPLANE typical speed is 600 miles per hour. TRAIN typical speed is 70 miles per hour. BOAT typical speed is 22 miles per hour.
Java programming 481
” miles per hour.\n”);
// Display all Transports and speeds. System.out.println(“All Transport speeds: “); for(Transport t : Transport.values())
System.out.println(t + ” typical speed is ” + t.getSpeed() +
Obtain the speed by calling getSpeed( ).
This version of Transport adds three things. The first is the instance variable speed, which is used to hold the speed of each kind of transport. The second is the Transport constructor, which is passed the speed of a transport. The third is the method getSpeed( ), which returns the value of speed.
When the variable tp is declared in main( ), the constructor for Transport is called once for each constant that is specified. Notice how the arguments to the constructor are specified, by putting them inside parentheses, after each constant, as shown here:
CAR(65), TRUCK(55), AIRPLANE(600), TRAIN(70), BOAT(22);
These values are passed to the s parameter of Transport( ), which then assigns this value to speed. There is something else to notice about the list of enumeration con- stants: it is terminated by a semicolon. That is, the last constant, BOAT, is followed by a semicolon. When an enumeration contains other members, the enumeration list must end in a semicolon.
Because each enumeration constant has its own copy of speed, you can obtain the speed of a specified type of transport by calling getSpeed( ). For example, in main( ) the speed of an airplane is obtained by the following call:
Transport.AIRPLANE.getSpeed()

482 chapter 13 Enumerations, autoboxing, and annotations
The speed of each transport is obtained by cycling through the enumeration using a for loop. Because there is a copy of speed for each enumeration constant, the value associated with one constant is separate and distinct from the value associated with another constant. This is a powerful concept, which is available only when enumera- tions are implemented as classes, as Java does.
Although the preceding example contains only one constructor, an enum can offer two or more overloaded forms, just as can any other class.
ask the Expert
Q Since enumerations have been added to Java, should I avoid the use of final variables? In other words, have enumerations rendered final variables
obsolete?
ANo. Enumerations are appropriate when you are working with lists of items that must be represented by identifiers. A final variable is appropriate when you have a constant value, such as an array size, that will be used in many places. Thus, each has its own use. The advantage of enumerations is that final variables don’t have to be pressed into service for a job for which they are not ideally suited.
two important restrictions
Two restrictions apply to enumerations. First, an enumeration can’t explicitly inherit another class. Second, an enum cannot be a superclass. This means that an enum can’t be extended. Otherwise, enum acts much like any other class type. The key is to remember that each of the enumeration constants is an object of the enumeration in which it is defined.
EnumErations inhErit Enum
Although you can’t explicitly inherit a superclass when declaring an enum, all enumera- tions implicitly inherit one: java.lang.Enum. This class defines several methods that are available for use by all enumerations. Most often you won’t need to use these methods, but there are two that you may find interesting: ordinal( ) and compareTo( ).
The ordinal( ) method obtains a value that indicates an enumeration constant’s position in the list of constants. This is called its ordinal value. The ordinal( ) method is shown here:
final int ordinal( )
It returns the ordinal value of the invoking constant. Ordinal values begin at zero. Thus, in the Transport enumeration, CAR has an ordinal value of zero, TRUCK has an ordinal value of 1, AIRPLANE has an ordinal value of 2, and so on.
You can compare the ordinal value of two constants of the same enumeration by using the compareTo( ) method. It has this general form:
final int compareTo(enum-type e)

Java programming 483
Here, enum-type is the type of the enumeration and e is the constant being compared to the invoking constant. Remember, both the invoking constant and e must be of the same enumeration. If the invoking constant has an ordinal value less than e’s, then compareTo( ) returns a negative value. If the two ordinal values are the same, then zero is returned. If the invoking constant has an ordinal value greater than e’s, then a positive value is returned.
The following program demonstrates ordinal( ) and compareTo( ). // Demonstrate ordinal() and compareTo().
// An enumeration of Transport varieties. enum Transport {
CAR, TRUCK, AIRPLANE, TRAIN, BOAT }
class EnumDemo4 {
public static void main(String[] args) {
Transport tp, tp2, tp3;
// Obtain all ordinal values using ordinal(). System.out.println(“Here are all Transport constants” +
” and their ordinal values: “); for(Transport t : Transport.values())
System.out.println(t + ” ” + t.ordinal());
Obtain ordinal values.
tp = Transport.AIRPLANE; tp2 = Transport.TRAIN; tp3 = Transport.AIRPLANE;
System.out.println();
// Demonstrate compareTo() if(tp.compareTo(tp2) < 0) Compare ordinal values. System.out.println(tp + " comes before " + tp2); if(tp.compareTo(tp2) > 0)
System.out.println(tp2 + ” comes before ” + tp);
if(tp.compareTo(tp3) == 0) System.out.println(tp + ” equals ” + tp3);
} }
The output from the program is shown here:
Here are all Transport constants and their ordinal values: CAR 0
TRUCK 1
AIRPLANE 2
TRAIN 3

484 chapter 13 Enumerations, autoboxing, and annotations BOAT 4
AIRPLANE comes before TRAIN AIRPLANE equals AIRPLANE
1. What does values( ) return?
2. Can an enumeration have a constructor?
3. What is the ordinal value of an enumeration constant?
progress Check
Try This 13-1 A Computer-Controlled Traffic Light
TrafficLightDemo.java
Enumerations are particularly useful when your program needs a set of constants, but the actual values of the constants are arbitrary, as long as all differ. This type of situation comes up quite often when programming. One common instance involves handling the states in which some device can exist. For example, imagine that you are writing a program that controls a traffic light. Your traffic light code must automatically cycle through the light’s three states: green, yellow, and red. It also must enable other code to know the current color of the light and let the color of the light be set to a known initial value. This means that the three states must be represented in some way. Although it would be possible to represent these three states by integer values (for example, the values 1, 2, and 3) or by strings (such as “red”, “green”, and “yellow”), an enumeration offers a much better approach. Using an enumeration results in code that is more efficient than if strings represented the states and more structured than if integers represented the states.
In this project, you will create a simulation of an automated traffic light, as just described. This project not only demonstrates an enumeration in action, it also shows another example of multithreading and synchronization.
Answers:
1. The values( ) method returns an array that contains a list of all the constants defined by the invoking enumeration.
2. Yes.
3. The ordinal value of an enumeration constant describes its position in the list
of constants, with the first constant having the ordinal value of zero.

Java programming 485
STEP-By-STEP
1. Create a file called TrafficLightDemo.java.
2. Begin by defining an enumeration called TrafficLightColor that represents
the three states of the light, as shown here:
// An enumeration of the colors of a traffic light. enum TrafficLightColor {
RED, GREEN, YELLOW }
Whenever the color of the light is needed, its enumeration value is used.
3. Next, begin defining TrafficLightSimulator, as shown next.
TrafficLightSimulator is the class that encapsulates the traffic light simulation.
// A computerized traffic light.
class TrafficLightSimulator implements Runnable {
private Thread thrd; // holds the thread that runs the simulation private TrafficLightColor tlc; // holds the current color
boolean stop = false; // set to true to stop the simulation boolean changed = false; // true when the light has changed
TrafficLightSimulator(TrafficLightColor init) { tlc = init;
thrd = new Thread(this);
thrd.start(); }
TrafficLightSimulator() {
tlc = TrafficLightColor.RED;
thrd = new Thread(this);
thrd.start(); }
Notice that TrafficLightSimulator implements Runnable. This is necessary because a separate thread is used to run each traffic light. This thread will cycle through the colors. Two constructors are created. The first lets you specify the ini- tial light color. The second defaults to red. Both start a new thread to run the light. Now look at the instance variables. A reference to the traffic light thread is stored in thrd. The current traffic light color is stored in tlc. The stop vari- able is used to stop the simulation. It is initially set to false. The light will run until this variable is set to true. The changed variable is true when the light has changed.
4. Next, add the run( ) method, shown here, which begins running the traffic light.
// Start up the light. public void run() {

486 chapter 13 Enumerations, autoboxing, and annotations
while(!stop) { try {
switch(tlc) { case GREEN:
Thread.sleep(10000); // green for 10 seconds
break; case YELLOW:
Thread.sleep(2000); // yellow for 2 seconds
break; case RED:
Thread.sleep(12000); // red for 12 seconds
break; }
} catch(InterruptedException exc) { System.out.println(exc);
}
changeColor(); }
}
This method cycles the light through the colors. First, it sleeps an appropriate amount of time, based on the current color. Then, it calls changeColor( ) to change to the next color in the sequence.
5. Now, add the changeColor( ) method, as shown here:
// Change color.
synchronized void changeColor() {
switch(tlc) { case RED:
tlc = TrafficLightColor.GREEN;
break; case YELLOW:
tlc = TrafficLightColor.RED;
break; case GREEN:
tlc = TrafficLightColor.YELLOW; }
changed = true;
notify(); // signal that the light has changed }
The switch statement examines the color currently stored in tlc and then assigns the next color in the sequence. Notice that this method is synchro- nized. This is necessary because it calls notify( ) to signal that a color change has taken place. (Recall that notify( ) can be called only from a synchronized context.)
6. The next method is waitForChange( ), which waits until the color of the light is changed.

Java programming 487
// Wait until a light change occurs. synchronized void waitForChange() {
try { while(!changed)
wait(); // wait for light to change changed = false;
} catch(InterruptedException exc) { System.out.println(exc);
} }
This method simply calls wait( ). This call won’t return until changeColor( ) executes a call to notify( ). Thus, waitForChange( ) won’t return until the color has changed.
7. Finally, add the methods getColor( ), which returns the current light color, and cancel( ), which stops the traffic light thread by setting stop to true. These methods are shown here:
// Return current color.
synchronized TrafficLightColor getColor() {
return tlc; }
// Stop the traffic light. synchronized void cancel() {
stop = true; }
8. Here is all the code assembled into a complete program that demonstrates the traffic light:
// Try This 13-1
// A simulation of a traffic light that uses
// an enumeration to describe the light’s color.
// An enumeration of the colors of a traffic light. enum TrafficLightColor {
RED, GREEN, YELLOW }
// A computerized traffic light.
class TrafficLightSimulator implements Runnable {
private Thread thrd; // holds the thread that runs the simulation private TrafficLightColor tlc; // holds the current color
boolean stop = false; // set to true to stop the simulation boolean changed = false; // true when the light has changed
TrafficLightSimulator(TrafficLightColor init) { tlc = init;

488 chapter 13 Enumerations, autoboxing, and annotations
thrd = new Thread(this);
thrd.start(); }
TrafficLightSimulator() {
tlc = TrafficLightColor.RED;
thrd = new Thread(this);
thrd.start(); }
// Start up the light. public void run() {
while(!stop) { try {
switch(tlc) { case GREEN:
Thread.sleep(10000); // green for 10 seconds
break; case YELLOW:
Thread.sleep(2000); // yellow for 2 seconds
break; case RED:
Thread.sleep(12000); // red for 12 seconds
break; }
} catch(InterruptedException exc) { System.out.println(exc);
}
changeColor(); }
}
// Change color.
synchronized void changeColor() {
switch(tlc) { case RED:
tlc = TrafficLightColor.GREEN;
break; case YELLOW:
tlc = TrafficLightColor.RED;
break; case GREEN:
tlc = TrafficLightColor.YELLOW; }
changed = true;
notify(); // signal that the light has changed }

Java programming 489
// Wait until a light change occurs. synchronized void waitForChange() {
try { while(!changed)
wait(); // wait for light to change changed = false;
} catch(InterruptedException exc) { System.out.println(exc);
} }
// Return current color.
synchronized TrafficLightColor getColor() {
return tlc; }
// Stop the traffic light. synchronized void cancel() {
stop = true; }
}
class TrafficLightDemo {
public static void main(String[] args) {
TrafficLightSimulator tl =
new TrafficLightSimulator(TrafficLightColor.GREEN);
for(int i=0; i < 9; i++) { System.out.println(tl.getColor()); tl.waitForChange(); } tl.cancel(); } } The following output is produced. As you can see, the traffic light cycles through the colors in the order of green, yellow, and red: GREEN YELLOW RED GREEN YELLOW RED GREEN YELLOW RED In the program, notice how the use of the enumeration simplifies and adds structure to the code that needs to know the state of the traffic light. 490 chapter 13 Enumerations, autoboxing, and annotations Because the light can have only three states (red, green, or yellow), use of an enumeration ensures that only these values are valid, thus preventing accidental misuse. 9. It is possible to improve the preceding program by taking advantage of the class capabilities of an enumeration. For example, by adding a constructor, instance variable, and method to TrafficLightColor, you can substantially improve the preceding program. This improvement is left as an exercise. See Exercise 4. autoboxing Java has two very helpful features: autoboxing and auto-unboxing. These features were not part of the original specification for Java, but were added by JDK 5. Autoboxing/unboxing greatly simplifies and streamlines code that must convert prim- itive types into objects, and vice versa. Because such situations are found frequently in Java code, the benefits of autoboxing/unboxing affect nearly all Java programmers. As you will see in Chapter 14, autoboxing/unboxing also contributes greatly to the usability of generics. Autoboxing/unboxing is directly related to Java’s type wrappers and to the way that values are moved into and out of an instance of a wrapper. For this reason, we will begin with an overview of type wrappers and the process of manually boxing and unboxing values. type Wrappers and boxing As you know, Java uses primitive types, such as int or double, to hold the basic data types supported by the language. Primitive types, rather than objects, are used for these quantities for the sake of performance. Using objects for these basic types would add an unacceptable overhead to even the simplest of calculations. Thus, the primitive types are not part of the object hierarchy, and they do not inherit Object. Despite the performance benefit offered by the primitive types, there are times when you will need an object representation. For example, you can’t pass a primitive type by reference to a method. Also, many of the standard data structures implemented by Java operate on objects, which means that you can’t use these data structures to store primitive types. To handle these (and other) situations, Java provides type wrap- pers, which are classes that encapsulate a primitive type within an object. The type wrapper classes were introduced briefly in Chapter 11. Here, we will look at them more closely. The type wrappers are Double, Float, Long, Integer, Short, Byte, Character, and Boolean, which are packaged in java.lang. These classes offer a wide array of methods that allow you to fully integrate the primitive types into Java’s object hierarchy. Probably the most commonly used type wrappers are those that represent numeric values. These are Byte, Short, Integer, Long, Float, and Double. All of the numeric type wrappers inherit the abstract class Number. Number declares methods that Java programming 491 return the value of an object in each of the different numeric types. These methods are shown here: byte byteValue( ) double doubleValue( ) float floatValue( ) int intValue( ) long longValue( ) short shortValue( ) For example, doubleValue( ) returns the value of an object as a double, floatValue( ) returns the value as a float, and so on. These methods are implemented by each of the numeric type wrappers. All of the numeric type wrappers define constructors that allow an object to be constructed from a given value, or a string representation of that value. For example, here are the constructors defined for Integer and Double: Integer(int num) Integer(String str) throws NumberFormatException Double(double num) Double(String str) throws NumberFormatException If str does not contain a valid numeric value, then a NumberFormatException is thrown. All of the type wrappers override toString( ). It returns the human-readable form of the value contained within the wrapper. This allows you to output the value by passing a type wrapper object to println( ), for example, without having to convert it into its primitive type. The process of encapsulating a value within an object is called boxing. Prior to JDK 5, all boxing took place manually, with the programmer explicitly constructing an instance of a wrapper with the desired value. For example, this line manually boxes the value 100 into an Integer: Integer iOb = new Integer(100); In this example, a new Integer object with the value 100 is explicitly created, and a reference to this object is assigned to iOb. The process of extracting a value from a type wrapper is called unboxing. Again, prior to JDK 5, all unboxing also took place manually, with the programmer explic- itly calling a method on the wrapper to obtain its value. For example, this manually unboxes the value in iOb into an int. int i = iOb.intValue(); Here, intValue( ) returns the value encapsulated within iOb as an int. The following program demonstrates the preceding concepts. // Demonstrate manual boxing and unboxing with a type wrapper. class Wrap { 492 chapter 13 Enumerations, autoboxing, and annotations public static void main(String[] args) { Integer iOb = new Integer(100); int i = iOb.intValue(); Manually box the value 100. Manually unbox the value in iOb. System.out.println(i + " " + iOb); // displays 100 100 } } This program wraps the integer value 100 inside an Integer object called iOb. The program then obtains this value by calling intValue( ) and stores the result in i. Finally, it displays the values of i and iOb, both of which are 100. The same general procedure used by the preceding example to manually box and unbox values was required by all versions of Java prior to JDK 5 and is still widely used in legacy code. The problem is that it is both tedious and error-prone because it requires the programmer to manually create the appropriate object to wrap a value and to explicitly obtain the proper primitive type when its value is needed. Fortunately, autoboxing/unboxing fundamentally improves on these essential procedures. autoboxing Fundamentals Autoboxing is the process by which a primitive type is automatically encapsulated (boxed) into its equivalent type wrapper whenever an object of that type is needed. There is no need to explicitly construct an object. Auto-unboxing is the process by which the value of a boxed object is automatically extracted (unboxed) from a type wrapper when its value is needed. There is no need to call a method such as intValue( ) or doubleValue( ). The addition of autoboxing and auto-unboxing greatly streamlines the coding of several algorithms, removing the tedium of manually boxing and unboxing values. It also helps prevent errors. With autoboxing it is not necessary to manually construct an object in order to wrap a primitive type. You need only assign that value to a type- wrapper reference. Java automatically constructs the object for you. For example, here is the modern way to construct an Integer object that has the value 100: Integer iOb = 100; // autobox an int Notice that the object is not explicitly created through the use of new. Java handles this for you, automatically. To unbox an object, simply assign that object reference to a primitive-type vari- able. For example, to unbox iOb, you can use this line: int i = iOb; // auto-unbox Java handles the details for you. The following program demonstrates the preceding statements. // Demonstrate autoboxing/unboxing. class AutoBox { public static void main(String[] args) { Integer iOb = 100; // autobox an int int i = iOb; // auto-unbox System.out.println(i + " " + iOb); // displays 100 100 } } Java programming 493 Autobox and then auto- unbox the value 100. progress Check 1. What is the type wrapper for double? 2. When you box a primitive value, what happens? 3. Autoboxing is the feature that automatically boxes a primitive value into an object of its corresponding type wrapper. True or False? autoboxing and methods In addition to the simple case of assignments, autoboxing automatically occurs when- ever a primitive type must be converted into an object, and auto-unboxing takes place whenever an object must be converted into a primitive type. Thus, autoboxing/unbox- ing might occur when an argument is passed to a method or when a value is returned by a method. For example, consider the following: // Autoboxing/unboxing takes place with method parameters // and return values. class AutoBox2 { // This method has an Integer parameter. static void m(Integer v) { Receives an Integer. System.out.println("m() received " + v); } // This method returns an int. static int m2() { Returns an int. return 10; } Returns an Integer. return 99; // autoboxing 99 into an Integer. // This method returns an Integer. static Integer m3() { } Answers: 1. Double 2. When a primitive value is boxed, its value is placed inside an object of its corresponding type wrapper. 3. True. 494 chapter 13 Enumerations, autoboxing, and annotations public static void main(String[] args) { // Pass an int to m(). Because m() has an Integer // parameter, the int value passed is automatically boxed. m(199); // Here, iOb receives the int value returned by m2(). // This value is automatically boxed so that it can be // assigned to iOb. Integer iOb = m2(); System.out.println("Return value from m2() is " + iOb); // Next, m3() is called. It returns an Integer value // which is auto-unboxed into an int. int i = m3(); System.out.println("Return value from m3() is " + i); // Next, Math.sqrt() is called with iOb as an argument. // In this case, iOb is auto-unboxed and its value promoted to // double, which is the type needed by sqrt(). iOb = 100; System.out.println("Square root of iOb is " + Math.sqrt(iOb)); } } This program displays the following result: m() received 199 Return value from m2() is 10 Return value from m3() is 99 Square root of iOb is 10.0 In the program, notice that m( ) specifies an Integer parameter. Inside main( ), m( ) is passed the int value 199. Because m( ) is expecting an Integer, this value is automati- cally boxed. Next, m2( ) is called. It returns the int value 10. This int value is assigned to iOb in main( ). Because iOb is an Integer, the value returned by m2( ) is autoboxed. Next, m3( ) is called. It returns an Integer that is auto-unboxed into an int. Finally, Math.sqrt( ) is called with iOb as an argument. In this case, iOb is auto-unboxed and its value promoted to double, since that is the type expected by Math.sqrt( ). autoboxing/unboxing occurs in Expressions In general, autoboxing and unboxing take place whenever a conversion into an object or from an object is required. This applies to expressions. Within an expression, a numeric object is automatically unboxed. The outcome of the expression is reboxed, if necessary. For example, consider the following program. // Autoboxing/unboxing occurs inside expressions. class AutoBox3 { public static void main(String[] args) { Integer iOb, iOb2; int i; Java programming 495 iOb = 99; System.out.println("Original value of iOb: " + iOb); // The following automatically unboxes iOb, // performs the increment, and then reboxes // the result back into iOb. ++iOb; System.out.println("After ++iOb: " + iOb); // Here, iOb is unboxed, its value is increased by 10, // and the result is boxed and stored back in iOb. iOb += 10; System.out.println("After iOb += 10: " + iOb); // Here, iOb is unboxed, the expression is // evaluated, and the result is reboxed and // assigned to iOb2. iOb2 = iOb + (iOb / 3); System.out.println("iOb2 after expression: " + iOb2); // The same expression is evaluated, but the // result is not reboxed. i = iOb + (iOb / 3); System.out.println("i after expression: " + i); Autoboxing/ unboxing occurs in expressions. } } The output is shown here: Original value of iOb: 99 After ++iOb: 100 After iOb += 10: 110 iOb2 after expression: 146 i after expression: 146 In the program, pay special attention to this line: ++iOb; This causes the value in iOb to be incremented. It works like this: iOb is unboxed, the value is incremented, and the result is reboxed. Because of auto-unboxing, you can use integer numeric objects, such as an Integer, to control a switch statement. For example, consider this fragment: Integer iOb = 2; switch(iOb) { case 1: System.out.println("one"); break; case 2: System.out.println("two"); break; 496 chapter 13 Enumerations, autoboxing, and annotations default: System.out.println("error"); } When the switch expression is evaluated, iOb is unboxed and its int value is obtained. As the examples in the program show, because of autoboxing/unboxing, using numeric objects in an expression is both intuitive and easy. In the past, such code would have involved casts and calls to methods such as intValue( ). a Word of Warning Because of autoboxing and auto-unboxing, one might be tempted to use objects such as Integer or Double exclusively, abandoning primitives altogether. For example, with autoboxing/unboxing it is possible to write code like this: // A bad use of autoboxing/unboxing! Double a, b, c; a = 10.2; b = 11.4; c = 9.8; Double avg = (a + b + c) / 3; In this example, objects of type Double hold values, which are then averaged and the result is assigned to another Double object. Although this code is technically correct and does, in fact, work properly, it is a very bad use of autoboxing/unboxing. It is far less efficient than the equivalent code written using the primitive type double. The reason is that each autobox and auto-unbox adds overhead that is not present if the primitive type is used. In general, you should restrict your use of the type wrappers to only those cases in which an object representation of a primitive type is required. Autoboxing/unboxing was not added to Java as a “back door” way of eliminating the primitive types. 1. Will a primitive value be autoboxed when it is passed as an argument to a method that is expecting a type wrapper object? 2. Because of the limits imposed by the Java run-time system, autoboxing/unbox- ing will not occur on objects used in expressions. True or False? 3. Because of autoboxing/unboxing, you should use objects rather than primitive types for performing most arithmetic operations. True or False? Answers: 1. Yes. 2. False. 3. False. progress Check annotations (mEtadata) Another feature added to Java by JDK 5 is the annotation. It enables you to embed supplemental information (an annotation) into a source file. For example, you might annotate a method with information about its version status. This information does not change the actions of a program. However, various tools can use this informa- tion, during both development and deployment. For example, an annotation might be processed by a source-code generator, by the compiler, or by a deployment tool. The term metadata is also used to refer to this feature, but the term annotation is the most descriptive and more commonly used. Although most of the time you will probably use predefined annotations more often than you will define one of your own, it is still helpful to understand their syntax and basic concepts. Therefore, we begin with a brief overview of creating and using an annotation. Creating and using an annotation An annotation is created through a mechanism based on the interface. Here is a simple example: // A simple annotation type. @interface MyAnno { String str(); int val(); } This declares an annotation called MyAnno. Notice the @ that precedes the keyword interface. This tells the compiler that an annotation type is being declared. Next, notice the two members str( ) and val( ). All annotations consist solely of method declarations. However, you don’t provide bodies for these methods. Instead, Java implements these methods. Moreover, the methods act much like fields. All annotation types automatically extend the Annotation interface. Thus, Annotation is a super-interface of all annotations. It is declared within the java.lang.annotation package. Once you have declared an annotation, you can use it to annotate a declaration. Any type of declaration can have an annotation associated with it. For example, class- es, methods, fields, parameters, and enum constants can be annotated. Even an anno- tation can be annotated. In all cases, the annotation precedes the rest of the declaration. When you apply an annotation, you give values to its members. For example, here is an example of MyAnno being applied to a method: // Annotate a method. @MyAnno(str = "Annotation Example", val = 100) public static void myMeth() { // ... This annotation is linked with the method myMeth( ). Look closely at the annotation syntax. The name of the annotation, preceded by an @, is followed by a parenthe- sized list of member initializations. To give a member a value, that member’s name is assigned a value. Therefore, in the example, the string "Annotation Example" is assigned to the str member of MyAnno. Notice that no parentheses follow str in this Java programming 497 498 chapter 13 Enumerations, autoboxing, and annotations assignment. When an annotation member is given a value, only its name is used. Thus, annotation members look like fields in this context. You can give an annotation member a default value that will be used if no value is specified when the annotation is applied. A default value is indicated by adding a default clause to the member’s declaration. It has this general form: type member( ) default value; Here, value must be of a type compatible with type. For example, here is MyAnno, with val( ) given a default of 42: // Give val() a default value @interface MyAnno { String str(); int val() default 42; } Now, you could use MyAnno like this: @MyAnno(str = "Annotation Example") Here, the value of val( ) defaults to 42. Of course, you can still give val( ) a different value, just as before. For example, @MyAnno(str = "Annotation Example", val = 100) is still valid. If you have an annotation that has only a single member called value, then you can use a “shorthand” form to specify its value. You can simply pass the value for that member when the annotation is applied—you don’t need to specify the name value. For example, given @interface MySingle { int value(); } then you can give value( ) the value 100 when the annotation is applied like this: @MySingle(100) Notice that value = need not be specified. One last point: Annotations that don’t have parameters are called marker annota- tions. These are specified without passing any arguments and without using parenthe- ses. Their sole purpose is to mark a declaration with some attribute. built-in annotations Java defines many built-in annotations. Most are specialized, but eight are general pur- pose. Four are imported from java.lang.annotation: @Retention, @Documented, @Target, and @Inherited. Four, @Override, @Deprecated, @SafeVarargs, and @SuppressWarnings, are included in java.lang. These are shown in Table 13-1. Here is an example that uses @Deprecated to mark the MyClass class and the getMsg( ) method as deprecated. (The term deprecated means obsolete and not for use in new code.) When you try to compile this program, warnings will report the use of these deprecated elements. // Deprecate a class. @Deprecated class MyClass { private String msg; MyClass(String m) { msg = m; } Mark a class as deprecated. Java programming 499 Table 13-1: The General Purpose built-in annotations Annotation Description @Retention Specifies the retention policy that will be associated with the annotation. The retention policy determines how long an annota- tion is present during the compilation and deployment process. @Documented A marker annotation that tells a tool that an annotation is to be documented. It is designed to be used only as an annotation to an annotation declaration. @Target Specifies the types of declarations to which an annotation can be applied. It is designed to be used only as an annotation to another annotation. @Target takes one argument, which must be a con- stant from the ElementType enumeration, which defines various constants, such as CONSTRUCTOR, FIELD, and METHOD. The argument determines the types of declarations to which the annotation can be applied. @Inherited A marker annotation that causes the annotation for a superclass to be inherited by a subclass. @Override A method annotated with @Override must override a method from a superclass. If it doesn’t, a compile-time error will result. It is used to ensure that a superclass method is actually overridden, and not simply overloaded. This is a marker annotation. @Deprecated A marker annotation that indicates that a feature is obsolete and has been replaced by a newer form. @SafeVarargs A marker annotation that indicates that no unsafe actions related to a varargs parameter in a method or constructor occur. Can only be applied to static or final methods or constructors. (Added by JDK 7.) @SuppressWarnings Specifies that one or more warnings that might be issued by the compiler are to be suppressed. The warnings to suppress are specified by name, in string form. // An example that uses @Deprecated. // Deprecate a method within a class. @Deprecated Mark a method as deprecated. String getMsg() { return msg; } 500 chapter 13 Enumerations, autoboxing, and annotations // ... } class AnnoDemo { public static void main(String[] args) { MyClass myObj = new MyClass("test"); System.out.println(myObj.getMsg()); } } ExErCisEs 1. Enumeration constants are said to be self-typed. What does this mean? 2. What class do all enumerations automatically inherit? 3. Given the following enumeration, write a program that uses values( ) to show a list of the constants and their ordinal values. enum Tools { SCREWDRIVER, WRENCH, HAMMER, PLIERS } 4. The traffic light simulation developed in Try This 13-1 can be improved with a few simple changes that take advantage of an enumeration’s class features. In the version shown, the duration of each color was controlled by the TrafficLightSimulator class by hard-coding these values into the run( ) method. Change this so that the duration of each color is stored by the constants in the TrafficLightColor enumeration. To do this, you will need to add a constructor, a private instance variable, and a method called getDelay( ). 5. Define boxing and unboxing. How does autoboxing/unboxing affect these actions? 6. Change the following fragment so that it uses autoboxing. Short val = new Short(123); 7. An annotation is syntactically based on a/an ________________ . 8. What is a marker annotation? 9. An annotation can be applied only to methods. True or False? 10. Given an enumeration MyEnum, what is an easy way to find out how many values are in the enumeration? 11. Reimplement the changeColor( ) method in the TrafficLightSimulator in Try This 13-1 so that, instead of a switch statement, it uses values( ) and ordinal( ) to determine the next color to assign to tlc. 12. Consider the following Counter class. class Counter { boolean up; int count; Java programming 501 Counter(boolean b, int c) { up = b; count = c; } public int count() { if(up) return count++; else return count--; } // Test code public static void main(String[] args) { Counter c1 = new Counter(true, 10); Counter c2 = new Counter(false, 10); for(int i = 0; i < 10; i++) System.out.println(c1.count() + ", " + c2.count()); } } As you can see, a Counter object counts either up or down, depending on the boolean argument passed to the constructor. An alternative implementation would not use a boolean parameter and instead would use an enumeration Direction with two values: UP and DOWN. Reimplement Counter this way. Give an advantage of each implementation over the other. 13. The following program uses named integer constants. Rewrite the program so that it uses an enumeration instead. It should still have the same input and output. import java.io.*; class Castle { public static final int NORTH = 0; public static final int SOUTH = 1; public static final int EAST = 2; public static final int WEST = 3; public static void main(String[] args) throws IOException { int direction; System.out.println("From which direction is the enemy attacking?"); System.out.println(" 0 = North, 1 = South, 2 = East, 3 = West"); direction = System.in.read() - '0'; // now give them back their answer System.out.print("The attack is from the following direction: "); switch(direction) { 502 chapter 13 Enumerations, autoboxing, and annotations case NORTH: System.out.println("NORTH"); break; case SOUTH: System.out.println("SOUTH"); break; case EAST: System.out.println("EAST"); break; case WEST: System.out.println("WEST"); } } } 14. Create an enumeration DayOfWeek with seven values SUNDAy through SATURDAy. Add a method isWorkDay( ) to the DayOfWeek class that re- turns true if the value on which it is called is MONDAy through FRIDAy. For example, the call DayOfWeek.SUNDAy.isWorkDay( ) returns false. 15. Since Byte, Short, Integer, Long, Float, and Double are subclasses of Number, they inherit all the methods of Number. So Double, for example, doesn’t just have a doubleValue( ) method, it also has byteValue( ), shortValue( ), intValue( ), longValue( ), and floatValue( ) methods. What will be displayed by the following code segment? If any of the values are unusual, explain them. public class NumberTester { public static void main(String[] args) { Double d = new Double(123456.789); System.out.println(d.byteValue()); System.out.println(d.shortValue()); System.out.println(d.intValue()); System.out.println(d.longValue()); System.out.println(d.floatValue()); System.out.println(d.doubleValue()); } } 16. In the code below, the variables a and b are initialized to refer to the same Integer object with value 3. Then the Integer object referred to by b is incremented to 4. Finally the values of a and b are displayed and we see "3 4". Why isn’t the same value displayed for both a and b? Shouldn’t a and b both have the same value since they refer to the same object? What’s going on here? Integer a = 3; Integer b = a; b++; System.out.println(a + " " + b); // prints "3 4" 17. Which of the following statements are legal? A. Object o = 3; B. Number n = 3; C. Float f = (float) 3; D. Integer i = (Integer) 3; E. Integer j = o + i; // using the preceding variable declarations 18. Consider the following two class declarations. Will they compile without error? Explain. class MySuper { void myHello(String s) { System.out.println(s); } } class MySub extends MySuper { @Override void myHello(int x) { System.out.println(x); } } Java programming 503 Chapter key skills & concepts j Understand the benefits of generics j Create a generic class j Apply bounded type parameters j Use wildcard arguments j Apply bounded wildcards j Create a generic method j Create a generic constructor j Create a generic hierarchy j Create a generic interface j Use raw types j Use type inference via the diamond operator j Understand erasure j Avoid ambiguity errors j Know generics restrictions Since its original 1.0 version, many new features have been added to Java. All have enhanced and expanded the scope of the language, but perhaps the one that has had the most profound impact is generics because its effects were felt throughout the entire Java language. Introduced by JDK 5, generics added a completely new syntax element and caused changes to many of the classes and methods in the core API. It is not an overstatement to say that the inclusion of generics fundamentally reshaped the character of Java. Today, generics are an integral part of Java programming, and a solid understand- ing is necessary for all Java programmers. Moreover, the concept of generic types has become part of the foundation of modern programming in general. Competency with generics is also required to effectively use the Collections Framework. Generics are not only one of Java’s more sophisticated topics, but also one of its most important. Generics 505 14 506 chapter 14 Generics GeneriCs Fundamentals At its core, the term generics means parameterized types. Parameterized types are important because they enable you to create classes, interfaces, and methods in which the type of data on which they operate is specified as a parameter. A class, interface, or method that uses a type parameter is called generic, as in generic class or generic method. A principal advantage of generic code is that it will automatically work with the type of data passed to its type parameter. Many algorithms are logically the same no matter what type of data they are being applied to. For example, the mechanism that supports a stack is the same whether it is storing items of type Integer, String, Object, or Thread. With generics, you can define an algorithm once, independently of any specific type of data, and then apply that algorithm to a wide variety of data types without any additional effort. It is important to understand that Java has always given you the ability to create generalized classes, interfaces, and methods by operating through references of type Object. Because Object is the superclass of all other classes, an Object reference can refer to any type of object. Thus, in pre-generics code, generalized classes, interfaces, and methods used Object references to operate on various types of data. The problem was that they could not do so with type safety because casts were needed to explicitly convert from Object to the actual type of data being operated on. Thus, it was possible to accidentally create type mismatches. Generics add the type safety that was lacking because they make these casts automatic and implicit. In short, generics expand your ability to reuse code and let you do so safely and reliably. a simple Generics example Before discussing any more theory, it’s best to look at a simple generics example. The following program defines two classes. The first is the generic class Gen, and the second is GenDemo, which uses Gen. // A simple generic class. // Here, T is a type parameter that will be replaced by a // real type when an object of type Gen is created. class Gen {
T ob; // declare a reference to an object of type T
// Pass the constructor a reference to // an object of type T.
Gen(T o) {
ob = o; }
// Return ob. T getob() {
return ob; }
Declare a generic class. T is the generic type parameter.

// Show type of T. void showType() {
System.out.println(“Type of T is ” + ob.getClass().getName());
} }
// Demonstrate the generic class. class GenDemo {
public static void main(String[] args) { // Create a Gen reference for Integers. Gen iOb;
Create a reference to an object of type Gen.
Instantiate an object of type Gen.
Create a reference and an object of type Gen.
Java programming 507
// Create a Gen object and assign its
// reference to iOb. Notice the use of autoboxing
// to encapsulate the value 88 within an Integer object. iOb = new Gen(88);
// Show the type of data used by iOb. iOb.showType();
// Get the value in iOb. Notice that // no cast is needed.
int v = iOb.getob(); System.out.println(“value: ” + v);
System.out.println();
// Create a Gen object for Strings.
Gen strOb = new Gen(“Generics Test”);
// Show the type of data used by strOb. strOb.showType();
// Get the value of strOb. Again, notice // that no cast is needed.
String str = strOb.getob(); System.out.println(“value: ” + str);
} }
The output produced by the program is shown here:
Type of T is java.lang.Integer value: 88
Type of T is java.lang.String value: Generics Test

508 chapter 14 Generics
Let’s examine this program carefully. First, notice how Gen is declared by the
following line:
class Gen {
Here, T is the name of a type parameter. This name is used as a placeholder for the actual type that will be passed to Gen when an object is created. Thus, T is used within Gen whenever the type parameter is needed. Notice that T is contained within < >. This syntax can be generalized. Whenever a type parameter is being declared, it is specified within angle brackets. Because Gen uses a type parameter, Gen is a generic class.
In the declaration of Gen, there is no special significance to the name T. Any valid identifier could have been used, but T is traditional. Often parameter names are single-character, capital letters. Other commonly used type parameter names are V and E.
Next, T is used to declare an object called ob, as shown here: T ob; // declare an object of type T
As explained, T is a placeholder for the actual type that will be specified when a Gen object is created. Thus, ob will be an object of the type passed to T. For example, if type String is passed to T, then in that instance, ob will be of type String.
Now consider Gen’s constructor:
Gen(T o) { ob = o;
}
Notice that its parameter, o, is of type T. This means that the actual type of o is deter- mined by the type passed to T when a Gen object is created. Also, because both the parameter o and the member variable ob are of type T, they will both be of the same actual type when a Gen object is created.
The type parameter T can also be used to specify the return type of method, as is the case with the getob( ) method, shown here:
T getob() { return ob;
}
Because ob is also of type T, its type is compatible with the return type specified by getob( ).
The showType( ) method displays the type of T. It does this by calling getName( ) on the Class object returned by the call to getClass( ) on ob. We haven’t used this feature before, so let’s examine it closely. As you should recall from Chapter 7, the Object class defines the method getClass( ). Thus, getClass( ) is a member of all class types. It returns a Class object that corresponds to the class type of the object on which it is called. Class is a class defined within java.lang that encapsulates information about a class. Class defines several methods that can be used to obtain information about a class at run time. Among these is the getName( ) method, which returns a string representa- tion of the class name.

Java programming 509 The GenDemo class demonstrates the generic Gen class. It first creates a version
of Gen for integers, as shown here: Gen iOb;
Look carefully at this declaration. First, notice that the type Integer is specified within the angle brackets after Gen. In this case, Integer is a type argument that is passed to Gen’s type parameter, T. This effectively creates a version of Gen in which all refer- ences to T are translated into references to Integer. Thus, for this declaration, ob is of type Integer, and the return type of getob( ) is of type Integer.
Before moving on, it’s necessary to state that the Java compiler does not actually create different versions of Gen, or of any other generic class. Although it’s helpful to think in these terms, it is not what actually happens. Instead, the compiler removes all generic type information, substituting the necessary casts, to make your code behave as if a specific version of Gen was created. Thus, only one version of Gen actually exists in your program. The process of removing generic type information is called erasure, which is discussed later in this chapter.
The next line assigns to iOb a reference to an instance of an Integer version of the Gen class.
iOb = new Gen(88);
Notice that when the Gen constructor is called, the type argument Integer is also specified. This is necessary because the type of the object (in this case iOb) to which the reference is being assigned is of type Gen. Thus, the reference returned by new must also be of type Gen. If it isn’t, a compile-time error will result. For example, the following assignment will cause a compile-time error:
iOb = new Gen(88.0); // Error!
Because iOb is of type Gen, it can’t be used to refer to an object of Gen. This type checking is one of the main benefits of generics because it ensures type safety.
As the comments in the program state, the assignment
iOb = new Gen(88);
makes use of autoboxing to encapsulate the value 88, which is an int, into an Integer. This works because Gen creates a constructor that takes an Integer argu- ment. Because an Integer is expected, Java will automatically box 88 inside one. Of course, the assignment could also have been written explicitly, like this:
iOb = new Gen(new Integer(88));
However, there would be no benefit to using this version.
The program then displays the type of ob within iOb, which is Integer. Next, the
program obtains the value of ob by use of the following line: int v = iOb.getob();
Because the return type of getob( ) is T, which was replaced by Integer when iOb was declared, the return type of getob( ) is also Integer, which auto-unboxes into int

510 chapter 14 Generics
when assigned to v (which is an int). Thus, there is no need to cast the return type of getob( ) to Integer.
Next, GenDemo declares an object of type Gen: Gen strOb = new Gen(“Generics Test”);
Because the type argument is String, String is substituted for T inside Gen. This creates (conceptually) a String version of Gen, as the remaining lines in the program demonstrate.
Generics Work Only with Objects
When declaring an instance of a generic type, the type argument passed to the type parameter must be a reference type. You cannot use a primitive type, such as int or char. For example, with Gen, it is possible to pass any class type to T, but you cannot pass a primitive type to T. Therefore, the following declaration is illegal:
Gen intOb = new Gen(53); // Error, can’t use primitive type
Of course, not being able to specify a primitive type is not a serious restriction because you can use the type wrappers (as the preceding example did) to encapsulate a primi- tive type. Further, Java’s autoboxing and auto-unboxing mechanism makes the use of the type wrapper transparent.
Generic types differ Based on their type arguments
A key point to understand about generic types is that a reference of one specific ver- sion of a generic type is not type-compatible with another version of the same generic type. For example, assuming the program just shown, the following line of code is in error and will not compile:
iOb = strOb; // Wrong!
Even though both iOb and strOb are of type Gen, they are references to different types because their type parameters differ. This is part of the way that generics add type safety and prevent errors.
a Generic Class with two type parameters
You can declare more than one type parameter in a generic type. To specify two or more type parameters, simply use a comma-separated list. For example, the following TwoGen class is a variation of the Gen class that has two type parameters.
// A simple generic class with two type parameters: T and V.
class TwoGen { T ob1;
V ob2;
// Pass the constructor references to // objects of type T and V.
TwoGen(T o1, V o2) {
ob1 = o1;
ob2 = o2; }
Use two type parameters.

// Show types of T and V. void showTypes() {
System.out.println(“Type of T is ” + ob1.getClass().getName());
System.out.println(“Type of V is ” + ob2.getClass().getName());
}
T getob1() { return ob1;
}
V getob2() { return ob2;
} }
// Demonstrate TwoGen. class SimpGen {
public static void main(String[] args) {
TwoGen tgObj =
new TwoGen(88, “Generics”);
// Show the types. tgObj.showTypes();
// Obtain and show values.
int v = tgObj.getob1(); System.out.println(“value: ” + v);
String str = tgObj.getob2();
System.out.println(“value: ” + str); }
}
The output from this program is shown here:
Type of T is java.lang.Integer Type of V is java.lang.String value: 88
value: Generics
Notice how TwoGen is declared: class TwoGen {
Here, Integer is passed to T, and String is passed to V.
Java programming 511
It specifies two type parameters, T and V, separated by a comma. Because it has two type parameters, two type arguments must be passed to TwoGen when an object is created, as shown next:
TwoGen tgObj =
new TwoGen(88, “Generics”);

512 chapter 14 Generics
In this case, Integer is substituted for T, and String is substituted for V. Although the two type arguments differ in this example, it is possible for both types to be the same. For example, the following line of code is valid:
TwoGen x = new TwoGen(“A”, “B”);
In this case, both T and V would be of type String. Of course, if the type arguments were always the same, then two type parameters would be unnecessary.
the General Form of a Generic Class
The generics syntax shown in the preceding examples can be generalized. Here is the syntax for declaring a generic class:
class class-name { // …
In the context of an assignment, here is the syntax for declaring a reference to a gener-
ics class and creating an instance: class-name var-name =
new class-name (cons-arg-list);
1. The type of data operated on by a generic class is passed to it through a/an __________________.
2. Can a type parameter be passed a primitive type?
3. Assuming the Gen class shown in the preceding example, show how to declare
a Gen reference that operates on data of type Double.
progress Check
ask the expert
QAI can already see that generics are a powerful feature. Is it unique to Java, or do other computer languages support a similar concept?
The general concept behind generics is supported by other languages. For
example, C++ supports generic code through the use of templates. (In essence, what Java calls a parameterized type, C++ calls a template.) However, Java generics and C++ templates are not the same, and there are some fundamental differences between the two approaches. For the most part, Java’s approach is simpler to use. Another language that supports generic code is C#. Its approach is more similar to Java’s.
Answers:
1. type parameter
2. No.
3. Gen d_ob;

BOunded types
In the preceding examples, the type parameters could be replaced by any class type. This is fine for many purposes, but sometimes it is useful to limit the types that can be passed to a type parameter. For example, assume that you want to create a generic class that stores a numeric value and is capable of performing various mathematical functions, such as computing the reciprocal or obtaining the fractional component. Furthermore, you want to use the class to compute these quantities for any type of number, including integers, floats, and doubles. Thus, you want to specify the type of the numbers generically, using a type parameter. To create such a class, you might try something like this:
// NumericFns attempts (unsuccessfully) to create // a generic class that can compute various
// numeric functions, such as the reciprocal or the // fractional component, given any type of number. class NumericFns {
T num;
// Pass the constructor a reference to // a numeric object.
NumericFns(T n) {
num = n; }
// Return the reciprocal. double reciprocal() {
return 1 / num.doubleValue(); // Error! }
// Return the fractional component. double fraction() {
return num.doubleValue() – num.intValue(); // Error! }
// … }
Unfortunately, NumericFns will not compile as written because both methods will generate compile-time errors. First, examine the reciprocal( ) method, which attempts to return the reciprocal of num. To do this, it must divide 1 by the value of num. The value of num is obtained by calling doubleValue( ), which obtains the double version of the numeric object stored in num. Because all numeric classes, such as Integer and Double, are subclasses of Number, and Number defines the doubleValue( ) method, this method is available to all numeric wrapper classes. The trouble is that the com- piler has no way to know that you are intending to create NumericFns objects using only numeric types. Thus, when you try to compile NumericFns, an error is reported that indicates that the doubleValue( ) method is unknown. The same type of error occurs twice in fraction( ), which needs to call both doubleValue( ) and intValue( ). Both calls result in error messages stating that these methods are unknown. To solve
Java programming 513

514 chapter 14 Generics
this problem, you need some way to tell the compiler that you intend to pass only numeric types to T. Furthermore, you need some way to ensure that only numeric types are actually passed.
To handle such situations, Java provides bounded types. When specifying a type parameter, you can create an upper bound that declares the superclass from which all type arguments must be derived. This is accomplished through the use of an extends clause when specifying the type parameter, as shown here:

This specifies that T can be replaced only by superclass, or subclasses of superclass. Thus, superclass defines an inclusive, upper limit.
You can use an upper bound to fix the NumericFns class shown earlier by specify- ing Number as an upper bound, as shown here:
// In this version of NumericFns, the type argument // for T must be either Number, or a class derived // from Number.
class NumericFns {
T num;
// Pass the constructor a reference to // a numeric object.
NumericFns(T n) {
num = n; }
// Return the reciprocal. double reciprocal() {
return 1 / num.doubleValue(); }
// Return the fractional component. double fraction() {
return num.doubleValue() – num.intValue(); }
// … }
// Demonstrate NumericFns. class BoundsDemo {
public static void main(String[] args) {
NumericFns iOb =
new NumericFns(5);
System.out.println(“Reciprocal of iOb is ” + iOb.reciprocal());
In this case, the type argument must be either Number or a subclass of Number.
Integer is OK because it is a subclass of Number.
System.out.println(“Fractional component of iOb is ” + iOb.fraction());

System.out.println();
NumericFns dOb =
new NumericFns(5.25);
System.out.println(“Reciprocal of dOb is ” + dOb.reciprocal());
Java programming 515 Double is also OK.
System.out.println(“Fractional component of dOb is ” + dOb.fraction());
// This won’t compile because String is not a
// subclass of Number.
// NumericFns strOb = new NumericFns(“Error”);
} }
The output is shown here:
Reciprocal of iOb is 0.2 Fractional component of iOb is 0.0
Reciprocal of dOb is 0.19047619047619047 Fractional component of dOb is 0.25
Notice how NumericFns is now declared by this line: class NumericFns {
String is illegal because it is not a subclass of Number.
Because the type T is now bounded by Number, the Java compiler knows that all objects of type T can call doubleValue( ) because it is a method declared by Number. This is in itself a major advantage. However, as an added bonus, the bounding of T also prevents nonnumeric NumericFns objects from being created. For example, if you remove the comments from the lines at the end of the program, and then try recompiling, you will receive compile-time errors because String is not a subclass of Number.
Bounded types are especially useful when you need to ensure that one type param- eter is compatible with another. For example, consider the following class called Pair, which stores two objects that must be compatible with each other:
class Pair { Here, V must be either
T first; V second;
Pair(T a, V b) { first = a; second = b;
}
// … }
the same type as T, or a subclass of T.

516 chapter 14 Generics
Notice that Pair uses two type parameters, T and V, and that V extends T. This means that V will either be the same as T or a subclass of T. This ensures that the two arguments to Pair’s constructor will be objects of the same type or of related types. For example, the following constructions are valid:
// This is OK because both T and V are Integer. Pair x = new Pair(1, 2);
// This is OK because Integer is a subclass of Number. Pair y = new Pair(10.4, 12);
However, the following is invalid:
// This causes an error because String is not
// a subclass of Number
Pair z = new Pair(10.4, “12”);
In this case, String is not a subclass of Number, which violates the bound specified by Pair.
1. The keyword ________ specifies a bound for a type argument.
2. How do you declare a generic type T that must be a subclass of Thread?
3. Given
class X {
is the following declaration correct?
X x = new X(10, 1.1);
usinG WildCard arGuments
As useful as type safety is, sometimes it can get in the way of perfectly acceptable constructs. For example, given the NumericFns class shown at the end of the preced- ing section, assume that you want to add a method called absEqual( ) that returns true if two NumericFns objects contain numbers whose absolute values are the same. Furthermore, you want this method to be able to work properly no matter what type of number each object holds. For example, if one object contains the Double value 1.25 and the other object contains the Float value –1.25, then absEqual( ) would return true.
Answers:
1. extends
2. T extends Thread
3. No, because Double is not a subclass of Integer.
progress Check

Java programming 517
One way to implement absEqual( ) is to pass it a NumericFns argument, and then compare the absolute value of that argument against the absolute value of the invoking object, returning true only if the values are the same. For example, you want to be able to call absEqual( ) as shown here:
NumericFns dOb = new NumericFns(1.25); NumericFns fOb = new NumericFns(-1.25);
if(dOb.absEqual(fOb))
System.out.println(“Absolute values are the same.”);
else
System.out.println(“Absolute values differ.”);
At first, creating absEqual( ) seems like an easy problem. Unfortunately, trouble starts as soon as you try to declare a parameter of type NumericFns. What type do you specify for NumericFns’s type parameter? At first, you might think of a solution like this, in which T is used as the type parameter:
// This won’t work!
// Determine if the absolute values of two objects are the same. boolean absEqual(NumericFns ob) {
if(Math.abs(num.doubleValue()) == Math.abs(ob.num.doubleValue()) return true;
return false; }
Here, the standard method Math.abs( ) is used to obtain the absolute value of each number, and then the values are compared. The trouble with this attempt is that it will work only with other NumericFns objects whose type is the same as the invoking object. For example, if the invoking object is of type NumericFns, then the parameter ob must also be of type NumericFns. It can’t be used to compare an object of type NumericFns, for example. Therefore, this approach does not yield a general (i.e., generic) solution.
To create a generic absEqual( ) method, you must use another feature of Java generics: the wildcard argument. The wildcard argument is specified by the ?, and it represents an unknown type. Using a wildcard, here is one way to write the absEqual( ) method:
// Determine if the absolute values of two // objects are the same.
boolean absEqual(NumericFns ob) {
if(Math.abs(num.doubleValue()) == Math.abs(ob.num.doubleValue())) return true;
return false; }
Notice the wildcard.
Here, NumericFns matches any type of NumericFns object, allowing any two NumericFns objects to have their absolute values compared. The following program demonstrates this.

518 chapter 14 Generics
// Use a wildcard.
class NumericFns {
T num;
// Pass the constructor a reference to // a numeric object.
NumericFns(T n) {
num = n; }
// Return the reciprocal. double reciprocal() {
return 1 / num.doubleValue(); }
// Return the fractional component. double fraction() {
return num.doubleValue() – num.intValue(); }
// Determine if the absolute values of two // objects are the same.
boolean absEqual(NumericFns ob) {
if(Math.abs(num.doubleValue()) == Math.abs(ob.num.doubleValue())) return true;
return false; }
// … }
// Demonstrate a wildcard. class WildcardDemo {
public static void main(String[] args) {
NumericFns iOb =
new NumericFns(6);
NumericFns dOb =
new NumericFns(-6.0);
NumericFns lOb =
new NumericFns(5L);
System.out.println(“Testing iOb and dOb.”); if(iOb.absEqual(dOb))
In this call, the wildcard System.out.println(“Absolute values are equal.”); type matches Double.
else
System.out.println(“Absolute values differ.”);

System.out.println();
Java programming 519
System.out.println(“Testing iOb and lOb.”);
if(iOb.absEqual(lOb)) In this call, the wildcard
System.out.println(“Absolute values are equal.”); matches Long. else
System.out.println(“Absolute values differ.”);
} }
The output is shown here:
Testing iOb and dOb. Absolute values are equal.
Testing iOb and lOb. Absolute values differ.
In the program, notice these two calls to absEqual( ): if(iOb.absEqual(dOb))
if(iOb.absEqual(lOb))
In the first call, iOb is an object of type NumericFns and dOb is an object of type NumericFns. However, through use of a wildcard, it possible for iOb to pass dOb in the call to absEqual( ). The same applies to the second call, in which an object of type NumericFns is passed.
One last point: It is important to understand that the wildcard does not affect what type of NumericFns objects can be created. This is governed by the extends clause in the NumericFns declaration. The wildcard simply enables any valid NumericFns type to be matched.
BOunded WildCards
Wildcard arguments can be bounded in much the same way that a type parameter can be bounded. A bounded wildcard is especially important when you are creating a method that is designed to operate only on objects that are subclasses of a specific superclass. To understand why, let’s work through a simple example. Consider the following set of classes:
class A { // …
}
class B extends A { // …
}

520 chapter 14 Generics
class C extends A { // …
}
// Note that D does NOT extend A. class D {
// … }
Here, class A is extended by classes B and C, but not by D. Next, consider the following very simple generic class:
// A simple generic class. class Gen {
T ob;
Gen(T o) { ob = o;
} }
Gen takes one type parameter, which specifies the type of object stored in ob. Because T is unbounded, the type of T is unrestricted. That is, T can be of any class type.
Now, suppose that you want to create a method that takes as an argument any type of Gen object as long as its type parameter is A or a subclass of A. In other words, you want to create a method that operates only on objects of Gen, where type is either A or a subclass of A. To accomplish this, you must use a bounded wildcard. For example, here is method called test( ) that accepts as an argument only Gen objects whose type parameter is A or a subclass of A:
// Here, the ? will match A or any class type // that extends A.
static void test(Gen o) {
// … }
The following class demonstrates the types of Gen objects that can be passed to test( ).
class UseBoundedWildcard {
// Here, the ? will match A or any class type // that extends A.
static void test(Gen o) {
// … }
public static void main(String[] args) { A a = new A();
B b = new B();
C c = new C();
D d = new D();
Gen w = new Gen(a); Gen w2 = new Gen(b);
Use a bounded wildcard.

// }
}
Gen w3 = new Gen(c); Gen w4 = new Gen(d);
// These calls to test() are OK. test(w);
test(w2);
test(w3);
// Can’t call test() with w4 because // it is not an object of a class that // inherits A.
test(w4); // Error!
These are legal because w, w2, and w3 are subclasses of A.
This is illegal because w4 is not a subclass of A.
Java programming 521
In main( ), objects of type A, B, C, and D are created. These are then used to create four Gen objects, one for each type. Finally, four calls to test( ) are made, with the last call commented out. The first three calls are valid because w, w2, and w3 are Gen objects whose type is either A or a subclass of A. However, the last call to test( ) is illegal because w4 is an object of type D, which is not derived from A. Thus, the method will not accept w4 because of the wildcard’s bound.
In general, to establish an upper bound for a wildcard, use the following type of wildcard expression:

where superclass is the name of the class that serves as the upper bound. Remember, this is an inclusive clause because the class forming the upper bound (specified by superclass) is also within bounds.
You can also specify a lower bound for a wildcard by adding a super clause to a wildcard declaration. Here is its general form:

In this case, only classes that are superclasses of subclass are acceptable arguments.
This is an inclusive clause.
1. To specify a wildcard argument, use _______.
2. A wildcard argument matches any reference type. True or False? 3. Can a wildcard be bounded?
4. In this expression, what types can be matched by the wildcard?
void myMeth(XYZ trdOb) { // …
Answers:
1. ?
2. True.
3. Yes.
4. The wildcard can match type Thread or a subclass of Thread.
progress Check

522 chapter 14 Generics
ask the expert
Q Can I cast one instance of a generic class into another?
AYes, but its use is somewhat limited. You can cast one instance of a generic class into another only if the two are otherwise compatible and their type arguments are the same. For example, assume a generic class called Gen that is declared like this:
class Gen { // …
Next, assume that x is declared as shown here: Gen x = new Gen();
Then, this cast is legal:
(Gen) x // legal
because x is an instance of Gen. But, this cast (Gen) x // illegal
is not legal because x is not an instance of Gen.
GeneriC methOds
As the preceding examples have shown, methods inside a generic class can make use of a class’s type parameter and are, therefore, automatically generic relative to the type parameter. However, it is possible to declare a generic method that uses one or more type parameters of its own. Furthermore, it is possible to create a generic method that is enclosed within a non-generic class.
The following program declares a non-generic class called GenericMethodDemo and a static generic method within that class called arraysEqual( ). This method determines if two arrays contain the same elements, in the same order. It can be used to compare any two arrays as long as the arrays are of the same or compatible types.
// Demonstrate a simple generic method. class GenericMethodDemo {
// Determine if the contents of two arrays are the same. static boolean arraysEqual(T[] x, V[] y) {
// If array lengths differ, then the arrays differ. if(x.length != y.length) return false;
for(int i=0; i < x.length; i++) if(!x[i].equals(y[i])) return false; // arrays differ return true; // contents of arrays are equivalent } A generic method. public static void main(String[] args) { Java programming 523 Integer[] nums = { 1, 2, 3, 4, 5 }; Integer[] nums2 = { 1, 2, 3, 4, 5 }; Integer[] nums3 = { 1, 2, 7, 4, 5 }; Integer[] nums4 = { 1, 2, 7, 4, 5, 6 }; if(arraysEqual(nums, nums)) System.out.println("nums equals nums"); if(arraysEqual(nums, nums2)) System.out.println("nums equals nums2"); if(arraysEqual(nums, nums3)) System.out.println("nums equals nums3"); if(arraysEqual(nums, nums4)) System.out.println("nums equals nums4"); // Create an array of Doubles Double[] dvals = { 1.1, 2.2, 3.3, 4.4, 5.5 }; // This won’t compile because nums and dvals // are not of the same type. if(arraysEqual(nums, dvals)) System.out.println("nums equals dvals"); The output from the program is shown here: nums equals nums nums equals nums2 The type arguments for T and V are implicitly determined when the method is called. // // } } Let’s examine arraysEqual( ) closely. First, notice how it is declared by this line: static boolean arraysEqual(T[] x, V[] y) {
The type parameters are declared before the return type of the method. Second, notice that the type V is upper-bounded by T. Thus, V must be either the same as type T or a subclass of T. This relationship enforces that arraysEqual( ) can be called only with arguments that are compatible with each other. Also notice that arraysEqual( ) is static, enabling it to be called independently of any object. Understand, though, that generic methods can be either static or nonstatic. There is no restriction in this regard.
Now, notice how arraysEqual( ) is called within main( ) by use of the normal call syntax, without the need to specify type arguments. This is because the types of the arguments are automatically discerned, and the types of T and V are adjusted accord- ingly. For example, in the first call:
if(arraysEqual(nums, nums))
the base type of the first argument is Integer, which causes Integer to be substituted for T. The base type of the second argument is also Integer, which makes Integer a

524 chapter 14 Generics
substitute for V, too. Thus, the call to arraysEqual( ) is legal, and the two arrays can be compared.
Now, notice the commented-out code, shown here:
// if(arraysEqual(nums, dvals))
// System.out.println(“nums equals dvals”);
If you remove the comments and then try to compile the program, you will receive an error. The reason is that the type parameter V is bounded by T in the extends clause in V’s declaration. This means that V must be either type T or a subclass of T. In this case, the first argument is of type Integer, making T into Integer, but the second argument is of type Double, which is not a subclass of Integer. This makes the call to arraysEqual( ) illegal and results in a compile-time type- mismatch error.
The syntax used to create arraysEqual( ) can be generalized. Here is the syntax for a generic method:
ret-type meth-name(param-list) { // …
In all cases, type-param-list is a comma-separated list of type parameters. Notice that
for a generic method, the type parameter list precedes the return type.
GeneriC COnstruCtOrs
A constructor can be generic, even if its class is not. For example, in the following program, the class Summation is not generic, but its constructor is.
// Use a generic constructor. class Summation {
private int sum;
Summation(T arg) { A generic constructor sum = 0;
for(int i=0; i <= arg.intValue(); i++) sum += i; } int getSum() { return sum; } } class GenConsDemo { public static void main(String[] args) { Summation ob = new Summation(4.0); System.out.println("Summation of 4.0 is " + ob.getSum()); } } Java programming 525 The Summation class computes and encapsulates the summation of the numeric value passed to its constructor. In this case, we are using a summation of N that is the sum of all the whole numbers between 0 and N. Because Summation( ) specifies a type parameter that is bounded by Number, a Summation object can be constructed using any numeric type, including Integer, Float, or Double. No matter what numeric type is used, its value is converted to Integer by calling intValue( ), and the summation is computed. Therefore, it is not necessary for the class Summation to be generic; only a generic constructor is needed. GeneriC Class hierarChies A generic class can be part of a class hierarchy in just the same way as a non-generic class. Thus, a generic class can act as a superclass or be a subclass. The key differ- ence between generic and non-generic hierarchies is that in a generic hierarchy, any type arguments needed by a generic superclass must be passed up the hierarchy by all subclasses. This is similar to the way that constructor arguments must be passed up a hierarchy. Here is a simple example of a hierarchy that uses a generic superclass: // A simple generic class hierarchy. class Gen {
T ob;
Gen(T o) { ob = o;
}
// Return ob. T getob() {
return ob; }
}
// A subclass of Gen.
class Gen2 extends Gen {
Gen2(T o) { super(o);
} }
In this hierarchy, Gen2 extends the generic class Gen. Notice how Gen2 is declared by the following line:
class Gen2 extends Gen {
The type parameter T is specified by Gen2 and is also passed to Gen in the extends clause. This means that whatever type is passed to Gen2 will also be passed to Gen. For example, this declaration,
Gen2 num = new Gen2(100);

526 chapter 14 Generics
passes Integer as the type parameter to Gen. Thus, the ob inside the Gen portion of Gen2 will be of type Integer.
Notice also that Gen2 does not use the type parameter T except to pass it to the Gen superclass. Thus, even if a subclass of a generic superclass would otherwise not need to be generic, it still must specify the type parameter(s) required by its generic superclass. Of course, a subclass is free to add its own type parameters, if needed.
It is also perfectly acceptable for a non-generic class to be the superclass of a generic subclass. For example:
// A non-generic class can be the superclass // of a generic subclass.
// A non-generic class. class NonGen {
int num;
NonGen(int i) { num = i;
}
int getnum() { return num;
} }
// A generic subclass.
class Gen extends NonGen {
T ob; // declare an object of type T
// Pass the constructor a reference to // an object of type T.
Gen(T o, int i) {
super(i);
ob = o; }
// Return ob. T getob() {
return ob; }
}
Notice how Gen inherits NonGen in the following declaration: class Gen extends NonGen {
Because NonGen is not generic, no type argument is specified. Thus, even though Gen declares the type parameter T, it is not needed by (nor can it be used by) NonGen. Thus, NonGen is inherited by Gen in the normal way. No special con- ditions apply.

Java programming 527
ask the expert
Q In a generic class hierarchy, can a method with a type parameter be over- ridden?
A Yes. A generic method in a generic class hierarchy can be overridden just like any other method. For example, consider this example in which the method
getob( ) is overridden:
// Overriding a generic method in a generic class. class Gen {
T ob; // declare an object of type T
// Pass the constructor a reference to // an object of type T.
Gen(T o) {
ob = o; }
// Return ob. T getob() {
System.out.print(“Gen’s getob(): ” );
return ob; }
}
// A subclass of Gen that overrides getob(). class Gen2 extends Gen {
Gen2(T o) { super(o);
}
// Override getob(). T getob() {
System.out.print(“Gen2’s getob(): “);
return ob; }
}
// Demonstrate generic method override. class OverrideDemo {
public static void main(String[] args) {
// A Gen reference that can refer to any type of Gen object. Gen gRef;
// Create a Gen object for Integers. Gen iOb = new Gen(88);

528 chapter 14 Generics
ask the expert (Continued)
// Create a Gen2 object for Integers. Gen2 iOb2 = new Gen2(99);
// Create a Gen2 object for Strings.
Gen2 strOb2 = new Gen2 (“Generics Test”);
gRef = iOb; System.out.println(gRef.getob());
gRef = iOb2; System.out.println(gRef.getob());
gRef = strOb2;
System.out.println(gRef.getob()); }
}
The output is shown here:
Gen’s getob(): 88
Gen2’s getob(): 99
Gen2’s getob(): Generics Test
In the program, notice that the generic reference gRef is used to call getob( ) on objects of both Gen and Gen2. As the output confirms, the overridden version of getob( ) is called for objects of type Gen2, but the superclass version is called for objects of type Gen.
progress Check
1. Can a method or constructor be generic even if its class is not?
2. Show how to declare a generic method called myMeth( ) that takes one generic
type argument. Have it return an argument of that generic type. 3. A generic class cannot be inherited. True or False?
GeneriC interFaCes
In addition to generic classes and methods, you can also have generic interfaces. Generic interfaces are specified just like generic classes. Here is an example. It cre- ates an interface called Containment, which can be implemented by classes that
Answers:
1. Yes.
2. T myMeth(T o) 3. False.

Java programming 529 store one or more values. It declares a method called contains( ) that determines if a
specified value is contained by the invoking object.
// A generic interface example.
// A generic containment interface.
// This interface implies that an implementing // class contains one or more values. interface Containment {
A generic interface.
// The contains() method tests if a
// specific item is contained within
// an object that implements Containment. boolean contains(T o);
}
// Implement Containment using an array to // hold the values.
class MyClass implements Containment {
Any class that implements a generic interface must itself be generic.
T[] arrayRef;
MyClass(T[] o) { arrayRef = o;
}
// Implement Contains(). public boolean contains(T o) {
for(T x : arrayRef) if(x.equals(o)) return true;
return false; }
}
class GenIFDemo {
public static void main(String[] args) {
Integer[] x = { 1, 2, 3 };
MyClass ob = new MyClass(x);
if(ob.contains(2)) System.out.println(“2 is in ob”);
else
System.out.println(“2 is NOT in ob”);
if(ob.contains(5)) System.out.println(“5 is in ob”);
else
System.out.println(“5 is NOT in ob”);
// The following is illegal because ob // is an Integer Containment and 9.25 is // a Double value.

530 chapter 14 Generics
// //
} }
The output is shown here:
2 is in ob
5 is NOT in ob
Although most aspects of this program should be easy to understand, a couple of key points need to be made. First, notice that Containment is declared like this:
interface Containment {
In general, a generic interface is declared in the same way as a generic class. In this case, the type parameter T specifies the type of objects that are contained.
Next, Containment is implemented by MyClass. Notice the declaration of MyClass, shown here:
class MyClass implements Containment {
In general, if a class implements a generic interface, then that class must also be generic, at least to the extent that it takes a type parameter that is passed to the inter- face. For example, the following attempt to declare MyClass is in error:
class MyClass implements Containment { // Wrong!
This declaration is wrong because MyClass does not declare a type parameter, which means that there is no way to pass one to Containment. In this case, the identifier T is simply unknown and the compiler reports an error. Of course, if a class implements a specific type of generic interface, such as shown here:
class MyClass implements Containment { // OK
then the implementing class does not need to be generic.
As you might expect, the type parameter(s) specified by a generic interface can
be bounded. This lets you limit the type of data for which the interface can be imple- mented. For example, if you wanted to limit Containment to numeric types, then you could declare it like this:
interface Containment {
Now, any implementing class must pass to Containment a type argument also having the same bound. For example, now MyClass must be declared as shown here:
class MyClass implements Containment {
Pay special attention to the way the type parameter T is declared by MyClass and then passed to Containment. Because Containment now requires a type that extends
if(ob.contains(9.25)) // Illegal! System.out.println(“9.25 is in ob”);

Java programming 531
Number, the implementing class (MyClass in this case) must specify the same bound. Furthermore, once this bound has been established, there is no need to specify it again in the implements clause. In fact it would be wrong to do so. For example, this dec- laration is incorrect and won’t compile:
// This is wrong!
class MyClass
implements Containment { // Wrong!
Once the type parameter has been established, it is simply passed to the interface without further modification.
Here is the generalized syntax for a generic interface: interface interface-name { // …
Here, type-param-list is a comma-separated list of type parameters. When a generic interface is implemented, you must specify the type arguments, as shown here:
class class-name
implements interface-name {
Try This 14-1 Create a Simple Generic Stack
IGenSimpleStack.java
SimpleStackExc.java
GenSimpleStack.java
GenSimpleStackDemo.java
One of the most powerful advantages that generics bring to programming is the abil- ity to construct reliable, reusable code. As mentioned at the start of this chapter, many algorithms are the same no matter what type of data they are used on. For example, the basic functionality of a stack is the same no matter what type of objects are being stored. Instead of creating a separate stack class for each specific type of object, you can craft a single, generic solution that can be used with any type of object. Thus, the development cycle of design, code, test, and debug occurs only once when you create a generic solution—not repeatedly, each time a stack is needed for a new data type.
In this project you will adapt the simple stack example that has been evolving since Try This 5-2, making it generic. This project represents the final evolution of the stack. It includes a generic interface that defines the stack operations, a generic fixed-length stack implementation, and the stack exception classes. This version of the stack will be called GenSimpleStack.
STEP-By-STEP
1. The first step in creating a generic stack is to create a generic interface that describes the stack’s operations. The generic version of the stack

532 chapter 14 Generics
interface is called IGenSimpleStack and it is shown here. Put this inter- face into a file called IGenSimpleStack.java.
// A generic interface for a simple stack. public interface IGenSimpleStack {
// Push an item onto the stack.
void push(T item) throws StackFullException;
// Pop an item from the stack.
T pop() throws StackEmptyException;
// Return true if the stack is empty. boolean isEmpty();
// Return true if the stack is full.
boolean isFull(); }
Notice that this interface is similar to the non-generic version developed in
Try This 10-1 except that the data type is specified by T rather than char.
2. The generic stack can use the same, non-generic exception classes developed in Try This 10-1. Recall that they encapsulate the two stack errors: full or
empty. They are not generic classes because they are the same no
matter what type of data is stored in the stack. For your convenience, they are shown again here. They should be in the file SimpleStackExc.java.
// An exception for stack-full errors.
class StackFullException extends Exception {
int size;
StackFullException(int s) { super(“Stack Full”);
size = s;
}
public String toString() {
return “\nStack is full. Maximum size is ” + size;
} }
// An exception for stack-empty errors.
class StackEmptyException extends Exception {
StackEmptyException() { super(“Stack Empty”);
}
public String toString() { return “\nStack is empty.”;
} }

Java programming 533
3. Now, create a file called GenSimpleStack.java. Into that file, put the fol- lowing code, which implements a simple fixed-size, generic stack.
// A simple generic fixed-length stack.
class GenSimpleStack implements IGenSimpleStack {
private T[] data; // this array holds the stack private int tos; // index of top of stack
// Construct an empty stack with the given array as storage. GenSimpleStack(T[] arrayRef) {
data = arrayRef;
tos = 0; }
// Push an item onto the stack.
public void push(T obj) throws StackFullException {
if(isFull())
throw new StackFullException(data.length);
data[tos] = obj;
tos++; }
// Pop an item from the stack.
public T pop() throws StackEmptyException {
if(isEmpty())
throw new StackEmptyException();
tos–;
return data[tos]; }
// Return true if the stack is empty. public boolean isEmpty() {
return tos==0; }
// Return true if the stack is full. public boolean isFull() {
return tos==data.length; }
}
GenSimpleStack is a generic class with type parameter T, which specifies the type of data stored in the stack. Notice that T is also passed to the IGenSimpleStack interface.
Pay special attention to the GenSimpleStack constructor. It is passed a reference to an array that will be used to hold the stack. Thus, to construct a GenSimpleStack, you will first create an array whose type is compatible with

534 chapter 14 Generics
the objects that you will be storing in the stack and whose size is long enough to store the number of objects that will be placed in the stack. For example, the following sequence shows how to create a 10-element stack that holds strings:
String[] strArray = new String[10];
GenSimpleStack strStack = new GenSimpleStack(strArray);
4. To demonstrate GenSimpleStack, create a file called GenSimpleStackDemo.java and put the following code into it.
/*
Try This 14-1
Demonstrate a simple generic stack class. */
class GenSimpleStackDemo {
public static void main(String[] args) {
int i;
Integer[] nums = new Integer[5]; String[] strs = new String[3];
// first create a stack for integers
GenSimpleStack intStack = newGenSimpleStack(nums);
System.out.println(“Demonstrating Integer stack.”);
// use intStack try {
System.out.print(“Pushing: “);
// push integers onto intStack
for(i = 0; !intStack.isFull(); i++) {
System.out.print(i);
intStack.push(i); }
System.out.println();
// pop integers off intStack System.out.print(“Popping: “); while(!intStack.isEmpty())
System.out.print(intStack.pop());
System.out.println();
} catch (StackFullException exc) {
System.out.println(exc);
} catch (StackEmptyException exc) {
System.out.println(exc); }

Java programming 535
// next, create a stack for strings
GenSimpleStack strStack = new GenSimpleStack(strs);
System.out.println(“\nDemonstrating String stack.”);
// now, use strStack try {
System.out.println(“Pushing: alpha beta gamma”);
// push strings onto strStack strStack.push(“alpha”); strStack.push(“beta”); strStack.push(“gamma”);
// pop Strings off strStack System.out.print(“Popping: “); while(!strStack.isEmpty())
System.out.print(strStack.pop() + ” “);
System.out.println();
} catch (StackFullException exc) {
System.out.println(exc);
} catch (StackEmptyException exc) {
System.out.println(exc); } System.out.println();
} }
5. Compile all the files and then run GenSimpleStackDemo. You will see the output shown here:
Demonstrating Integer stack. Pushing: 01234
Popping: 43210
Demonstrating String stack. Pushing: alpha beta gamma Popping: gamma beta alpha
raW types and leGaCy COde
Because support for generics did not exist prior to JDK 5, it was necessary for Java to provide some transition path from existing, pre-generics code. Simply put: all pre- generics code needed to remain both functional and compatible with new code that used generics. This meant that pre-generics code must be able to work with generics, and generic code must be able to work with pre-generics code.
To handle the transition to generics, Java allows a generic class to be used without any type arguments. This creates a raw type for the class. This raw type is compatible

536 chapter 14 Generics
with legacy code, which has no knowledge of generics. The main drawback to using the raw type is that the type safety of generics is lost.
Here is an example that shows a raw type in action.
// Demonstrate a raw type. class Gen {
T ob; // declare a reference to an object of type T
// Pass the constructor a reference to // an object of type T.
Gen(T o) {
ob = o; }
// Return ob. T getob() {
return ob; }
}
// Demonstrate raw type. class RawDemo {
public static void main(String[] args) {
// Create a Gen object for Integers. Gen iOb = new Gen(88);
// Create a Gen object for Strings.
Gen strOb = new Gen(“Generics Test”);
// Create a raw-type Gen object and give it // a Double value.
Gen raw = new Gen(new Double(98.6));
// Cast here is necessary because type is unknown. double d = (Double) raw.getob(); System.out.println(“value: ” + d);
// The use of a raw type can lead to run-time. // exceptions. Here are some examples.
// The following cast causes a run-time error!
int i = (Integer) raw.getob(); // run-time error
// This assignment overrides type safety. strOb = raw; // OK, but potentially wrong
String str = strOb.getob(); // run-time error
// This assignment also overrides type safety. raw = iOb; // OK, but potentially wrong
d = (Double) raw.getob(); // run-time error
When no type argument is supplied, a raw type is created.
//
//
// }
Raw types override type safety.
}

Java programming 537 This program contains several interesting things. First, a raw type of the generic
Gen class is created by the following declaration: Gen raw = new Gen(new Double(98.6));
Notice that no type arguments are specified. In essence, this creates a Gen object whose type T is replaced by Object.
A raw type is not type safe. Thus, a variable of a raw type can be assigned a refer- ence to any type of Gen object. The reverse is also allowed, in which a variable of a specific Gen type can be assigned a reference to a raw Gen object. However, both operations are potentially unsafe because the type checking mechanism of generics is circumvented.
This lack of type safety is illustrated by the commented-out lines at the end of the program. Let’s examine each case. First, consider the following situation:
// int i = (Integer) raw.getob(); // run-time error
In this statement, the value of ob inside raw is obtained, and this value is cast to Integer. The trouble is that raw contains a Double value, not an integer value. However, this cannot be detected at compile time because the type of raw is unknown. Thus, this statement fails at run time.
The next sequence assigns to a strOb (a reference of type Gen) a reference to a raw Gen object:
strOb = raw; // OK, but potentially wrong
// String str = strOb.getob(); // run-time error
The assignment itself is syntactically correct, but questionable. Because strOb is of type Gen, it is assumed to contain a String. However, after the assignment, the object referred to by strOb contains a Double. Thus, at run time, when an attempt is made to assign the contents of strOb to str, a run-time error results because strOb now contains a Double. Thus, the assignment of a raw reference to a generic reference bypasses the type-safety mechanism.
The following sequence inverts the preceding case:
raw = iOb; // OK, but potentially wrong
// d = (Double) raw.getob(); // run-time error
Here, a generic reference is assigned to a raw reference variable. Although this is syntactically correct, it can lead to problems, as illustrated by the second line. In this case, raw now refers to an object that contains an Integer object, but the cast assumes that it contains a Double. This error cannot be prevented at compile time. Rather, it causes a run-time error.
Because of the potential for danger inherent in raw types, javac displays unchecked warnings when a raw type is used in a way that might jeopardize type safety. In the preceding program, these lines generate unchecked warnings:
Gen raw = new Gen(new Double(98.6)); strOb = raw; // OK, but potentially wrong

538 chapter 14 Generics
In the first line, it is the call to the Gen constructor without a type argument that causes the warning. In the second line, it is the assignment of a raw reference to a generic variable that generates the warning.
At first, you might think that this line should also generate an unchecked warning, but it does not:
raw = iOb; // OK, but potentially wrong
No compiler warning is issued because the assignment does not cause any further loss of type safety than had already occurred when raw was created.
One final point: you should limit the use of raw types to those cases in which you must mix legacy code with newer, generic code. Raw types are simply a transitional feature and not something that should be used for new code.
type inFerenCe With the diamOnd OperatOr
Beginning with JDK 7, it is possible to shorten the syntax used to create an instance of a generic type. To begin, think back to the TwoGen class shown earlier in this chapter. A portion is shown here for convenience. Notice that it uses two generic types.
class TwoGen { T ob1;
V ob2;
// Pass the constructor a reference to // an object of type T.
TwoGen(T o1, V o2) {
ob1 = o1;
ob2 = o2; }
// … }
For versions of Java prior to JDK 7, to create an instance of TwoGen, you must use a statement similar to the following:
TwoGen tgOb =
new TwoGen(42, “testing”);
Here, the type arguments (which are Integer and String) are specified twice: first, when tgOb is declared, and second, when a TwoGen instance is created when its constructor is called via new. Since generics were introduced by JDK 5, this is the form required by all versions of Java prior to JDK 7. While there is nothing wrong, per se, with this form, it is a bit more verbose than it needs to be. Since, in the new clause, the type of the type arguments can be readily inferred, there is really no reason that they need to be specified a second time. To address this situation, JDK 7 adds a syntactic element that lets you avoid the second specification.
In JDK 7, the preceding declaration can be rewritten as shown here:
TwoGen tgOb = new TwoGen<>(42, “testing”);

Java programming 539
Notice that the instance creation portion simply uses < >, which is an empty type argument list. This is referred to as the diamond operator. It tells the compiler to infer the type arguments needed by the constructor. The principal advantage of this type- inference syntax is that it shortens what are sometimes quite long declaration state- ments. This is especially helpful for generic types that specify bounds.
The preceding example can be generalized. When type inference is used, the declaration syntax for a generic reference and instance creation has this general form:
class-name var-name = new class-name< >(cons-arg-list);
Here, the type argument list of the new clause is empty.
Although mostly for use in declaration statements, type inference can also be
applied to parameter passing. For example, if the following method is added to TwoGen:
boolean isSame(TwoGen o) {
if(ob1 == o.ob1 && ob2 == o.ob2) return true; else return false;
}
Then, the following call is legal in JDK 7:
if(tgOb.isSame(new TwoGen<>(42, “testing”))) System.out.println(“Same”);
In this case, the type arguments for the argument passed to isSame( ) can be inferred. They don’t need to be specified again.
Because the diamond operator is new to JDK 7 and it won’t work with older compil- ers, the remaining examples of generics in this book will continue to use the full syntax when declaring instances of generic classes. This way, the examples will work with any Java compiler that supports generics. Using the full-length syntax also makes it very clear precisely what is being created, which is helpful when example code is shown. Of course, in your own code, use of the type inference syntax will streamline your declarations.
1. If a generic interface is implemented by a class, that class must also be generic. True or False?
2. A type parameter in a generic interface cannot be bounded. True or False?
3. Given
class XYZ { // …
show how to declare an object called ob that is XyZ’s raw type.
4. Type inference uses the _____________ operator.
Answers:
1. True.
2. False.
3. XYZ ob = new XYZ(); 4. diamond
progress Check

540 chapter 14 Generics erasure
Usually, it is not necessary for the programmer to know the details about how the Java compiler transforms source code into object code. However, in the case of generics, some general understanding of the process is important because it explains why the generic features work as they do—and why their behavior is sometimes a bit surpris- ing. For this reason, a brief discussion of how generics are implemented in Java is in order.
An important constraint that governed the way generics were added to Java was the need for compatibility with previous versions of Java. Simply put: generic code had to be compatible with preexisting, non-generic code. Thus, any changes to the syntax of the Java language, or to the JVM, had to avoid breaking older code. The way Java implements generics while satisfying this constraint is through the use of erasure.
In general, here is how erasure works. When your Java code is compiled, all generic type information is removed (erased). This means replacing type parameters with their bound type, which is Object if no explicit bound is specified, and then applying the appropriate casts (as determined by the type arguments) to maintain type compatibility with the types specified by the type arguments. The compiler also enforces this type compatibility. This approach to generics means that no type parameters exist at run time. They are simply a source-code mechanism.
amBiGuity errOrs
The inclusion of generics gives rise to a new type of error that you must guard against: ambiguity. Ambiguity errors occur when erasure causes two seemingly distinct generic declarations to resolve to the same erased type, causing a conflict. Here is an example that involves method overloading:
// Ambiguity caused by erasure on // overloaded methods.
class MyGenClass {
T ob1; V ob2;
// …
// These two overloaded methods are ambiguous // and will not compile.
void set(T o) {
ob1 = o;
} These two methods are
void set(V o) { ob2 = o;
} }
inherently ambiguous.
Notice that MyGenClass declares two generic types: T and V. Inside MyGenClass, an attempt is made to overload set( ) based on parameters of type T and V. This looks

Java programming 541
reasonable because T and V appear to be different types. However, there are two ambiguity problems here.
First, as MyGenClass is written, there is no requirement that T and V actually be different types. For example, it is perfectly correct (in principle) to construct a MyGenClass object as shown here:
MyGenClass obj = new MyGenClass()
In this case, both T and V will be replaced by String. This makes both versions of set( ) identical, which is, of course, an error.
Second, and more fundamental, is that the type erasure of set( ) effectively reduces both versions to the following:
void set(Object o) { // …
Thus, the overloading of set( ) as attempted in MyGenClass is inherently ambiguous. The solution in this case is to use two separate method names rather than trying to overload set( ).
1. Erasure _________ all type parameters, substituting their bound types and applying appropriate casts.
2. By default, the bound type of a type parameter is ________.
3. Ambiguity can occur when type erasure causes two seemingly different decla-
rations to resolve to the same erased type. True or False?
sOme GeneriC restriCtiOns
There are a few restrictions that you need to keep in mind when using generics. They involve creating objects of a type parameter, static members, exceptions, and arrays. Each is examined here.
type parameters Can’t Be instantiated
It is not possible to create an instance of a type parameter. For example, consider this class:
// Can’t create an instance of T. class Gen {
T ob; Gen() {
ob = new T(); // Illegal!!! }
}
Answers:
1. removes 2. Object 3. True.
progress Check

542 chapter 14 Generics
Here, it is illegal to attempt to create an instance of T. The reason should be easy to understand: the compiler has no way to know what type of object to create. T is simply a placeholder.
restrictions on static members
No static member can use a type parameter declared by the enclosing class. For example, both of the static members of this class are illegal:
class Wrong {
// Wrong, no static variables of type T. static T ob;
// Wrong, no static method can use T. static T getob() {
return ob; }
}
Although you can’t declare static members that use a type parameter declared by the enclosing class, you can declare static generic methods, which define their own type parameters, as was done earlier in this chapter.
Generic array restrictions
There are two important generics restrictions that apply to arrays. First, you cannot instantiate an array whose element type is a type parameter. Second, you cannot cre- ate an array of type-specific generic references. The following short program shows both situations.
// Generics and arrays.
class Gen {
T ob;
T[] vals; // OK
Gen(T o, T[] nums) { ob = o;
// This statement is illegal.
// vals = new T[10]; // can’t create an array of T
// But, this statement is OK.
vals = nums; // OK to assign reference to existent array }
}
class GenArrays {
public static void main(String[] args) {
Integer[] n = { 1, 2, 3, 4, 5 };

Gen iOb = new Gen(50, n);
Java programming 543
// Can’t create an array of type-specific generic references. // Gen[] gens = new Gen[10]; // Wrong!
// This is OK.
Gen[] gens = new Gen[10]; // OK }
}
As the program shows, it’s valid to declare a reference to an array of type T, as this line does:
T[] vals; // OK
But you cannot instantiate an array of T, as this commented-out line attempts: // vals = new T[10]; // can’t create an array of T
The reason you can’t create an array of T is that there is no way for the compiler to know what type of array to actually create. However, you can pass a reference to a type-compatible array to Gen( ) when an object is created and assign that reference to vals, as the program does in this line:
vals = nums; // OK to assign reference to existent array
This works because the array passed to Gen( ) has a known type, which will be the same type as T at the time of object creation. Inside main( ), notice that you can’t declare an array of references to a specific generic type. That is, this line
// Gen[] gens = new Gen[10]; // Wrong!
won’t compile.
Generic exception restriction
A generic class cannot extend Throwable. This means that you cannot create generic exception classes.
exerCises
1. Generics are important to Java because they enable the creation of code that is A. Type-safe
B. Reusable
C. Reliable
D. All of the above
2. Can a primitive type be used as a type argument?
3. Show how to declare a class called FlightSched that takes two generic parameters.

544 chapter 14 Generics
4. Beginning with your answer to question 3, change FlightSched’s second type parameter so that it must extend Thread.
5. Now, change FlightSched so that its second type parameter must be a subclass of its first type parameter.
6. As it relates to generics, what is the ? and what does it do?
7. Can the wildcard argument be bounded?
8. A generic method called MyGen( ) has one type parameter. Furthermore,
MyGen( ) has one parameter whose type is that of the type parameter. It also
returns an object of that type parameter. Show how to declare MyGen( ).
9. Given this generic interface
interface IGenIF { // …
show the declaration of a class called MyClass that implements IGenIF.
10. Given a generic class called Counter, show how to create an object of
its raw type.
11. Do type parameters exist at run time?
12. When a generic class is inherited, its type parameters must also be specified
by the subclass. True or False?
13. What is < >?
14. When using JDK 7, how can the following be simplified?
MyClass obj = new MyClass(1.1,”Hi”);
15. Which of the following lines of code are legal declarations of generic methods? If any are not legal, explain why not.
A. void print(T x) { System.out.println(x); }
B. static void print(T x) { System.out.println(x); }
C. T getT(T t) { return null; }
D. void print(Object x) { System.out.println(x); }
E. void print(V x) { System.out.println(x); }
F. void print(T x) { System.out.println(x); }
16. In the body of a generic method with parameter type T, you cannot use the assignment statement
T[] x = new T[10];
because you cannot create arrays of the parameter type T. Would it work to initialize x as follows?
T[] x = (T[]) new Object[10];
17. In this chapter, it was mentioned that a non-generic class can have a generic subclass. Is the opposite also true? That is, can a generic class have a non-generic subclass?

Java programming 545
18. In this chapter, it was mentioned that a non-generic class can have a
generic method. Is the opposite also true? That is, can a generic class have a non-generic method?
19. Is it legal to create a generic class with type parameter T and then never use T in the class implementation? For example, is the following class definition legal?
class MyClass {
MyClass() { }
void printName() { System.out.println(“MyClass”); }
}
20. In Try This 14-1, you saw how to create a simple generic stack class. You may be interested to know that the Java library already includes a full-featured stack class called Stack, which is in the java.util package. In the pre-generics versions of Java, that Stack class stored any kind of object. Its push( ) method used Object as the type of its parameter and its pop( ) method’s return type was Object. To use such a stack to store strings, you had to do typecasting. For example, after pushing a string, you could retrieve it as a string only with statements of the form
String value = (String) stack.pop();
What are the disadvantages of doing it this way? That is, why is the generic
Stack better?
21. If Obj is a generic class that has a no-argument constructor, what are the
differences, if any, between the following four statements?
A. Obj x = new Obj();
B. Obj x = new Obj(); C. Obj x = new Obj<>();
D. Obj x = new Obj();
22. Below is an attempt to make bubble sort a generic method so that it
can sort all kinds of arrays, instead of just arrays of integers as was done in Chapter 5. However, it will not compile. Figure out what is illegal in the method.
void bubbleSort(T[] data) { for(int a=1; a < data.length; a++) for(int b=data.length-1; b >= a; b–) { if(data[b-1] > data[b]) { // if out of order
// exchange elements T x = data[b-1]; data[b-1] = data[b]; data[b] = x;
} }
}

546 chapter 14 Generics
23. Consider the classes C and CDemo shown here.
class C { T data;
C(T t) { data = t; } }
class CDemo {
public static void main(String[] args) {
C co = new C(“Hi”); C ci = new C<33>(44); C cint = new C<>(3);
C cs = new C<>(“Hi”); String[] s = {“a”, “b”, “c”}; C csa = new C<>(s);
} }
Which of the statements in the main( ) method of CDemo are illegal? Explain
what is wrong with the illegal statements. Assume you are using JDK 7.
24. The following classes, one generic and one not, can be used to create an
object that stores a Number. What are the advantages, if any, of each class over the other?
class C { T data;
C(T t) { data = t; }
T getData() { return data; } }
class C { Number data;
C(Number t) { data = t; }
Number getData() { return data; } }
25. Implement a generic method containsNull( ) that takes an array of type T[ ] as its parameter and returns true if any of the values in the array are null. What, if any, are the advantages of this method over a non-generic version of this method that you can implement by replacing T everywhere with Object?
26. If A is a superclass of B and C is a superclass of D, then which of the follow- ing are true?
A. A is a superclass of B B. A is a superclass of A C. A is a superclass of B

27. The following class definition will not compile. Why not? class Keeper {
T t;
Keeper(T t) { this.t = t;
}
public boolean equals(T other) { return other == t;
} }
28. Suppose that a class B is a subclass of class A. Also suppose that A has the following method
void getX(T t) { … }
and class B has the following method void getX(V v) { … }
Is the getX( ) method overloaded in B, or does the getX( ) method in B
override the inherited getX( ) method?
29. Give an example where a lower-bounded wildcard type parameter would be useful.
Java programming 547

chApteR
Applets and the Remaining Java Keywords
key skills & concepts
j Understand applet basics
j Create an applet skeleton
j Initialize and terminate applets
j Repaint applets
j Output to the status window
j Pass parameters to an applet
j Know the remaining Java keywords: transient, volatile, instanceof, native, strictfp, and assert
This chapter finishes our examination of the core Java language elements. It begins by describing the applet, which was a Java innovation. The applet helped shape the Internet in its early days, and applets are still in use today. Because applets are so closely associ- ated with Java, no course in Java programming can be complete without an introduction to them. This chapter ends with a description of the remaining Java keywords, such as instanceof and native, that have not been described elsewhere in this book.
Applet BAsics
Applets differ from the type of programs shown in the preceding chapters. As explained in Chapter 1, applets are small programs that are designed for transmis- sion over the Internet and run within a browser. Because Java’s virtual machine is in charge of executing all Java programs, including applets, applets offer a secure way to dynamically download and execute programs over the Web.
Before we begin, it is necessary to explain that there are two general varieties of applets: those based solely on the Abstract Window Toolkit (AWT) and those based on Swing. Both the AWT and Swing support the creation of a graphical user interface (GUI). The AWT is the original GUI toolkit, and Swing is Java’s modern, lightweight alternative. This chapter used AWT-based applets to introduce the fundamentals of applet programming because they are the simplest to describe. Later, in Part Two,
549
15

550 chapter 15 Applets and the Remaining Java Keywords
Swing and Swing-based applets are covered. It is important to understand, however, that Swing-based applets are built on the same basic architecture as AWT-based applets. Furthermore, all of Swing is built on top of the AWT. Therefore, the infor- mation and techniques presented here describe the foundation of applet programming, and most of it applies to both types of applets.
Prior to discussing any theory or details, let’s begin by examining a simple applet. It performs one function: It displays the string “Java makes applets easy.” inside a window.
// A minimal AWT-based applet. import java.awt.*;
import java.applet.*;
public class SimpleApplet extends Applet { public void paint(Graphics g) {
Notice these import statements.
g.drawString(“Java makes applets easy.”, 20, 20);
} }
This outputs to the applet’s window.
This applet begins with two import statements. The first imports the Abstract Window Toolkit classes. Applets interact with the user (either directly or indirectly) through the AWT, not through the console-based I/O classes. The AWT contains support for a window-based, graphical user interface. As you might expect, it is quite large and sophisticated, and a detailed discussion of the AWT is outside the scope of this book. Fortunately, for the simple applets that we will be creating, only a very limited use of the AWT is required. The next import statement imports the java.applet package. This package contains the class Applet. Every applet that you create must be a sub- class (either directly or indirectly) of Applet.
The next line in the program declares the class SimpleApplet. This class must be declared as public because it will be accessed by external code.
Inside SimpleApplet, paint( ) is declared. This method is part of the AWT Component class (which is a superclass of Applet) and is overridden by the applet. The Component class defines the core functionality common to all GUI components. It is a very large class, but the only piece of it that we need to use here is paint( ). The paint( ) method is called each time the applet must redisplay its output. This can occur for several reasons. For example, the window in which the applet is running can be overwritten by another window and then uncovered. Or the applet window can be minimized and then restored. paint( ) is also called when the applet begins execution. Whatever the cause, whenever the applet must redraw its output, paint( ) is called. The paint( ) method has one parameter of type Graphics. (Graphics is another AWT class.) This parameter will contain the graphics context, which describes the graphics environment in which the applet is running. This context is used whenever output to the applet is required.
Note: The paint( ) method is used only by AWT-based applets to output to a window. Swing applets use a different mechanism, which is described in Chapter 21.
Inside paint( ), there is a call to drawString( ), which is a member of the Graphics class. This method outputs a string beginning at the specified X,Y location. It has the following general form:
void drawString(String message, int x, int y)

Java programming 551
Here, message is the string to be output beginning at x, y. In a Java window, the upper- left corner is location 0,0. The call to drawString( ) in the applet causes the message to be displayed beginning at location 20,20.
Notice that the applet does not have a main( ) method. Unlike the programs shown earlier in this book, applets do not begin execution at main( ). In fact, most applets don’t even have a main( ) method. Instead, an applet begins execution when the name of its class is passed to a browser or other applet-enabled program.
After you have entered the source code for SimpleApplet, you compile in the same way that you have been compiling programs. However, running SimpleApplet involves a different process. There are two ways in which you can run an applet: inside a browser or with a special development tool that displays applets. The tool provided with the standard Java JDK is called appletviewer, and we will use it to run the applets developed in this chapter. Of course, you can also run them in a browser, but the appletviewer is much easier to use during development.
One way to execute an applet (in either a Web browser or appletviewer) is to write a short HTML text file that contains a tag that loads the applet. At the time of this writing, Oracle recommends using the APPLET tag for this purpose. (The OBJECT tag can also be used, and other deployment strategies are available. Consult the Java documentation for the latest information.) Using the APPLET tag, here is the HTML file that will execute SimpleApplet:

The width and height statements specify the dimensions of the display area used by the applet.
To execute SimpleApplet with an applet viewer, you will execute this HTML file. For example, if the preceding HTML file is called StartApp.html, then the following command line will run SimpleApplet:
appletviewer StartApp.html
Although there is nothing wrong with using a stand-alone HTML file to execute an applet, there is an easier way when using appletviewer. Simply include a comment near the top of your applet’s source code file that contains the APPLET tag. If you use this method, the SimpleApplet source file looks like this:
import java.awt.*;
import java.applet.*;
/*

*/
public class SimpleApplet extends Applet { public void paint(Graphics g) {
This HTML is used by appletviewer to run the applet.
}
g.drawString(“Java makes applets easy.”, 20, 20); }

552 chapter 15 Applets and the Remaining Java Keywords
Now you can execute the applet by passing the name of its source file to
appletviewer. For example, this command line will now display SimpleApplet. appletviewer SimpleApplet.java
The window produced by SimpleApplet, as displayed by appletviewer, is shown in the following illustration:
When using appletviewer, keep in mind that it provides the window frame. Applets run in a browser will not have a visible frame.
Let’s review an applet’s key points:
j All applets are, either directly or indirectly, subclasses of Applet.
j Applets do not need a main( ) method.
j Applets must be run under an applet viewer or a Java-compatible browser.
j User I/O is not accomplished with Java’s stream I/O classes. Instead, applets use the interface provided by the AWT (or by Swing).
1. What is an applet?
2. What does paint( ) do?
3. What package must be included when creating an applet?
4. How are applets run?
Answers:
1. An applet is a special type of Java program that is designed for transmission over the Internet and that runs inside a browser.
2. The paint( ) method displays output in an AWT-based applet’s window.
3. The package java.applet must be included when creating an applet.
4. Applets are executed by a browser or by special tools, such as appletviewer.
progress check

A complete Applet sKeleton
Although SimpleApplet shown earlier is a real applet, it does not contain all of the elements required by most applets. Actually, all but the most trivial applets override a set of methods that provide the basic mechanism by which the browser or applet viewer interfaces to the applet and controls its execution. These lifecycle methods are init( ), start( ), stop( ), and destroy( ), and they are defined by Applet. A fifth method, paint( ), is commonly overridden by AWT-based applets even though it is not a lifecycle method. As mentioned, it is inherited from the AWT Component class. Since default implementations for all of these methods are provided, applets do not need to override those methods they do not use. These four lifecycle methods plus paint( ) can be assembled into the skeleton shown here:
// An AWT-based Applet skeleton. import java.awt.*;
import java.applet.*;
/*

*/
public class AppletSkel extends Applet { // Called first.
public void init() {
// initialization }
/* Called second, after init(). Also called whenever the applet is restarted. */
public void start() {
// start or resume execution
}
// Called when the applet is stopped. public void stop() {
// suspends execution }
/* Called when applet is terminated. This is the last method executed. */
public void destroy() {
// perform shutdown activities
}
// Called when an AWT-based applet’s window must be restored. public void paint(Graphics g) {
// redisplay contents of window }
Java programming 553
}

554 chapter 15 Applets and the Remaining Java Keywords
Although this skeleton does not do anything, it can be compiled and run.
Note: Overriding paint( ) applies mostly to AWT-based applets. Swing applets use a different painting mechanism.
Applet initiAlizAtion And teRminAtion
It is important to understand the order in which the various methods shown in the preceding applet skeleton are executed. When an applet begins, the following methods are called in this sequence:
1. init() 2. start() 3. paint()
When an applet is terminated, the following sequence of method calls takes place:
1. stop()
2. destroy()
Let’s look more closely at these methods.
The init( ) method is the first method to be called. In init( ) the applet will initialize
variables and perform any other startup activities.
The start( ) method is called after init( ). It is also called to restart an applet after
it has been stopped, such as when the user returns to a previously displayed Web page that contains an applet. Thus, start( ) might be called more than once during the life cycle of an applet.
The paint( ) method is called each time an AWT-based applet’s output must be redrawn and was described earlier.
When the page containing the applet is left, the stop( ) method is called. You will use stop( ) to suspend any child threads created by the applet and to perform any other activities required to put the applet in a safe, idle state. Remember, a call to stop( ) does not mean that the applet should be terminated because it might be restarted with a call to start( ) if the user returns to the page.
The destroy( ) method is called when the applet is no longer needed. It is used to perform any shutdown operations required of the applet.
A Key Aspect of An Applet’s ARchitectuRe
As the applet skeleton makes clear, the architecture of an applet is different from the console-based programs shown in the first part of this book. One of the key differences is that an applet waits for the run-time system to call one of its meth- ods. For example, it displays output only if its paint( ) method is called. Once a method defined by the applet has been called, the applet must take appropriate action and then quickly return control to the system. This is a crucial point. For the most part, the applet should not enter a “mode” of operation in which it maintains

Java programming 555
control for an extended period. Doing so could cause other parts of the applet to be unresponsive. In situations in which the applet needs to perform a repetitive task on its own (for example, displaying a scrolling message across its window), you must start an additional thread of execution.
1. What are the four lifecycle methods that most applets will override? 2. What must an applet do when start( ) is called?
3. What must an applet do when stop( ) is called?
Requesting RepAinting
As a general rule, an AWT-based applet writes to its window only when its paint( ) method is called by the run-time system. This raises an interesting question: How can the applet itself cause its window to be updated when its information changes? For example, if an applet displays a moving banner, what mechanism does the applet use to update the window each time this banner scrolls? As explained, a fundamental architectural constraint imposed on an applet is that it must quickly return control to the Java run-time system. It cannot create a loop inside paint( ) that repeatedly scrolls the banner, for example. This would prevent control from passing back to the run-time system. Given this constraint, it may seem that output to an applet’s window will be difficult at best. Fortunately, this is not the case. Whenever an applet needs to update the information displayed in its window, it simply calls repaint( ).
The repaint( ) method is defined by the AWT’s Component class and inherited by Applet. It causes the run-time system to execute a call to the applet’s paint( ) method. Thus, for another part of an applet to output to its window, simply store the output and then call repaint( ). This causes a call to paint( ), which can display the stored information. For example, if part of the applet needs to output a string, it can store this string in a String variable and then call repaint( ). Inside paint( ), you can output the string using drawString( ).
The simplest version of repaint( ) is shown here: void repaint( )
This version causes the entire window to be repainted. An example that demonstrates repaint( ) is found in Try This 15-1.
Answers:
1. The lifecycle methods are init( ), start( ), stop( ), and destroy( ). 2. When start( ) is called, the applet must be started, or restarted.
3. When stop( ) is called, the applet must be paused.
progress check

556 chapter 15 Applets and the Remaining Java Keywords
Ask the expert
Q Is it possible for a method other than paint( ) to output to an applet’s win- dow?
A Yes. To do so, you must obtain a graphics context by calling getGraphics( ) on the applet instance, and then use this context to output to the window. However, for most AWT-based applications, it is better and easier to route window output through paint( ) and to call repaint( ) when the contents of the
window change.
Try This 15-1 A Simple Banner Applet
Banner.java
To demonstrate repaint( ), a simple banner applet is presented. This applet scrolls a message, from right to left, across the applet’s window. Since the scrolling of the message is a repetitive task, it is performed by a separate thread, created by the applet when it is initialized. It also shows one way that a separate thread can be used to perform an ongoing task in an applet.
Step-by-Step
1. Create a file called banner.java.
2. Begin creating the banner applet with the following lines.
/*
Try This 15-1
A simple banner applet.
This applet creates a thread that scrolls the message contained in msg right to left across the applet’s window.
*/
import java.awt.*;
import java.applet.*;
/*

*/
public class Banner extends Applet implements Runnable { String msg = ” Java Rules the Web “;
Thread t;
boolean stopFlag;

Java programming 557
// Initialize t to null. public void init() {
t = null; }
Notice that banner extends Applet, as expected, but it also implements Runnable. This is necessary since the applet will be creating a second thread of execution that will be used to a scroll the banner. The message that will be scrolled in the banner is contained in the String variable msg. A reference to the thread that runs the applet is stored in t. The Boolean variable stopFlag is used to stop the applet. Inside init( ), the thread reference variable t is set to null.
3. Add the start( ) method shown next.
// Start thread when the applet is needed. public void start() {
t = new Thread(this); stopFlag = false; t.start();
}
The run-time system calls start( ) to start the applet running. Inside start( ),
a new thread of execution is created and assigned to the thread variable t. Then, stopFlag is set to false. Next, the thread is started by a call to t.start( ). Remember that t.start( ) is a call to a method defined by thread, which causes run( ) to begin executing. It does not cause a call to the version of start( ) defined by Applet. These are two separate methods.
4. Add the run( ) method, as shown here.
// Entry point for the thread that runs the banner. public void run() {
// Request a repaint every quarter second. for( ; ; ) {
try {
repaint(); Thread.sleep(250); if(stopFlag) break;
} catch(InterruptedException exc) {} }
}
In run( ), repaint( ) is repeatedly called, with a delay of one quarter second between calls. Each call to repaint( ) eventually causes the paint( ) method to be called. The stopFlag variable is checked on each iteration. When it is true, the run( ) method terminates.
5. Add the code for stop( ) as shown here.
// Pause the banner. public void stop() { stopFlag = true;
t = null; }

558 chapter 15 Applets and the Remaining Java Keywords
If a browser is displaying the applet when a new page is viewed, the stop( ) method is called, which sets stopFlag to true, causing run( ) to terminate. It also sets t to null. Thus, there is no longer a reference to the thread object, and it can be recycled the next time the garbage collector runs. This is the mechanism used to stop the thread when its page is no longer in view. When the applet is brought back into view, start( ) is once again called, which starts a new thread to execute the banner.
6. Finally, add the paint( ) method shown here:
// Display the banner.
public void paint(Graphics g) {
char ch;
ch = msg.charAt(0);
msg = msg.substring(1, msg.length()); msg += ch;
g.drawString(msg, 50, 30); }
Inside paint( ), the characters in the string contained in msg are rotated left and then displayed. Because paint( ) will be executed about every quarter second, the net effect is that the contents of msg are scrolled right to left in a constantly moving display.
7. The entire banner applet is shown here: /*
Try This 15-1
A simple banner applet.
This applet creates a thread that scrolls the message contained in msg right to left across the applet’s window.
*/
import java.awt.*;
import java.applet.*;
/*

*/
public class Banner extends Applet implements Runnable { String msg = ” Java Rules the Web “;
Thread t;
boolean stopFlag;
// Initialize t to null. public void init() {
t = null; }

Java programming 559
// Start thread when the applet is needed. public void start() {
t = new Thread(this); stopFlag = false; t.start();
}
// Entry point for the thread that runs the banner. public void run() {
// Request a repaint every quarter second. for( ; ; ) {
try {
repaint(); Thread.sleep(250); if(stopFlag) break;
} catch(InterruptedException exc) {} }
}
// Pause the banner. public void stop() { stopFlag = true;
t = null; }
// Display the banner.
public void paint(Graphics g) {
char ch;
ch = msg.charAt(0);
msg = msg.substring(1, msg.length()); msg += ch;
g.drawString(msg, 50, 30); }
}
Sample output is shown here:

560 chapter 15 Applets and the Remaining Java Keywords
8. When you run the applet, you may notice that the scroll occasionally flickers. You can eliminate this flicker by use of a technique called double buffering. With double buffering, your program creates a second graphics context in which you prepare output. Then, the completed output is written to the screen all at once, thus eliminating flicker. The term double buffering comes from the fact that the screen is considered a buffer for pixels, and the off screen image is, therefore, a second buffer. The techniques required to implement a double buffer are beyond the scope of this chapter. Also, when using Swing, double buffering is implemented automatically, so it is not something that you will normally need to implement yourself. (This
is one of the advantages of Swing.) However, as an extra challenge, you might do some research and try adding double buffering to this example on your own.
using the stAtus WindoW
In addition to displaying information in its window, an applet can also output a mes- sage to the status window of the browser or applet viewer on which it is running. To do so, call showStatus( ), which is defined by Applet, with the string that you want displayed. The general form of showStatus( ) is shown here:
void showStatus(String msg)
Here, msg is the string to be displayed.
The status window is a good place to give the user feedback about what is occur-
ring in the applet, suggest options, or possibly report some types of errors. The status window also makes an excellent debugging aid because it gives you an easy way to output information about your applet.
The following applet demonstrates showStatus( ):
// Using the Status Window. import java.awt.*;
import java.applet.*;
/*

*/
public class StatusWindow extends Applet{ // Display msg in applet window.
public void paint(Graphics g) {
g.drawString(“This is in the applet window.”, 10, 20);
showStatus(“This is shown in the status window.”); }
}

Sample output from this program is shown here:
pAssing pARAmeteRs to Applets
You can pass parameters to an applet. In fact, doing so is quite common. Often a parameter specifies some setting or attribute associated with the applet. For example, thinking back to the banner applet shown in Try This 15-1, you might control the scroll speed by passing in the delay rather than hard-coding it into the applet. You could also pass in the message to be displayed.
To pass a parameter to an applet, use the PARAM attribute of the APPLET tag, specifying the parameter’s name and value. To retrieve a parameter, use the getparameter( ) method, defined by Applet. Its general form is shown here:
String getParameter(String paramName)
Here, paramName is the name of the parameter. It returns the value of the speci- fied parameter in the form of a String object. Thus, for numeric and boolean val- ues, you will need to convert their string representations into their binary formats. (One way to do this is to use a parse method defined by a type wrapper, such as Integer.parseInt( ).) If the specified parameter cannot be found, null is returned. Therefore, be sure to confirm that the value returned by getparameter( ) is valid. Also, check any parameter that is converted into a numeric value, confirming that a valid conversion took place.
Here is an example that demonstrates passing parameters:
// Pass a parameter to an applet. import java.awt.*;
import java.applet.*;
/*

*/
These HTML parameters are passed to the applet.
Java programming 561

562 chapter 15 Applets and the Remaining Java Keywords
public class Param extends Applet { String author;
String purpose;
int ver;
public void start() { String temp;
author = getParameter(“author”); if(author == null) author = “not found”;
purpose = getParameter(“purpose”); if(purpose == null) purpose = “not found”;
temp = getParameter(“version”); try {
if(temp != null)
ver = Integer.parseInt(temp);
else
ver = 0;
} catch(NumberFormatException exc) { ver = -1; // error code
} }
public void paint(Graphics g) { g.drawString(“Purpose: ” + purpose, 10, 20); g.drawString(“By: ” + author, 10, 40); g.drawString(“Version: ” + ver, 10, 60);
} }
Sample output from this program is shown here:
It is important to check that the parameter exists!
It is also important to make sure that numeric conversions succeed.

Java programming 563
progress check
1. How do you cause an applet’s paint( ) method to be called?
2. Where does showStatus( ) display a string?
3. What method is used to obtain a parameter specified in the APPLET tag?
Ask the expert
QBeyond what you have discussed, are there more features supported by Applet?
AYes. In addition to the methods described in the preceding sections, Applet contains several others. For example, you can load a graphics image by use of getImage( ). To load an audio clip, use getAudioClip( ). You can play an audio clip by use of play( ). Furthermore, Applet inherits a very significant por- tion of the functionality supported by the AWT. As mentioned, Applet extends the Component class, which contains over 100 methods. It also inherits Container and panel. These are two more AWT classes. Container specifies the features of a component that will be used to contain (that is, hold) other components. panel is a simple container. You might want to explore these classes in Java’s documentation. Doing so will give you insight into the rich functionality that underpins Java’s sup- port for graphical user interfaces.
the RemAining JAvA KeyWoRds
The preceding chapters have described the majority of the keywords defined by Java, but a few still remain. They are shown here:
j volatile
j transient j instanceof j strictfp
j assert
j native
Answers:
1. To cause paint( ) to be called, call repaint( ).
2. showStatus( ) displays output in the status window.
3. To obtain a parameter, call getparameter( ).

564 chapter 15 Applets and the Remaining Java Keywords
These keywords address specialized needs and are not used elsewhere in this book.
However, for completeness each is described here.
the volatile modifier
The volatile modifier tells the compiler that a variable can be changed unexpect- edly by another thread. In a multithreaded program, sometimes two or more threads will share the same variable. For efficiency considerations, each thread can keep its own, private copy of such a shared variable, possibly in a register of the CPU. The actual (or master) copy of the variable is updated at various times, such as when a synchronized method is entered. While this approach works fine, in some cases, all that really matters is that the master copy of a variable always reflects the current state and that this current state is used by all threads. To ensure this, declare the vari- able as volatile.
the transient modifier
The transient keyword is a type modifier that indicates that an instance variable is not part of the persistent state of an object. When an instance variable is declared as transient, then its value need not participate in serialization, which is the mechanism by which the state of an object is saved.
instanceof
Sometimes it is useful to know the type of an object during run time. For example, you might have one thread of execution that generates various types of objects and another thread that processes these objects. In this situation, it might be useful for the processing thread to know the type of each object when it receives it. Another situation in which knowledge of an object’s type at run time is important involves casting. In Java, an invalid cast causes a run-time error. Many invalid casts can be caught at compile time. However, casts involving class hierarchies can produce invalid casts that can only be detected at run time. Because a superclass reference can refer to subclass objects, it is not always possible to know at compile time whether or not a cast involving a superclass reference is valid. The instanceof keyword addresses these types of situations.
In the formal Java syntax, instanceof is an operator. It has this general form: objref instanceof type
Here, objref is a reference to an instance of a class, and type is a class or interface type. If objref is of the specified type or can be cast into the specified type, then the instanceof expression evaluates to true. Otherwise, the result is false. Thus, instanceof is the means by which a program can obtain run-time type information about an object.
strictfp
One of the more esoteric keywords is strictfp. It requires that Java’s floating-point calculations strictly follow the IEEE 754 standard. Except for numeric constants, by default, Java’s floating-point model does not require strict adherence to this standard in all cases. To ensure strict compliance, modify a class, method, or interface declara- tion with strictfp.

assert
The assert keyword is used during program development to create an assertion, which is a condition that is expected to be true during the execution of the program. For example, you might have a method that should always return a positive integer value. You might test this by asserting that the return value is greater than zero using an assert statement. At run time, if the condition actually is true, no other action takes place. However, if the condition is false, then an Assertionerror is thrown. Assertions are often used during testing to verify that some expected condition is actu- ally met. They are not usually used for released code.
The assert keyword has two forms. The first is shown here: assert condition;
Here, condition is an expression that must evaluate to a boolean result. If the result is true, then the assertion is true and no other action takes place. If the condition is false, then the assertion fails and a default Assertionerror object is thrown. For example,
assert n > 0;
If n is less than or equal to zero, then an Assertionerror is thrown. Otherwise, no action takes place.
The second form of assert is shown here: assert condition : expr;
In this version, expr is a value that is passed to the Assertionerror constructor. This value is converted to its string format and displayed if an assertion fails. Typically, you will specify a string for expr, but any non-void expression is allowed as long as it defines a reasonable string conversion.
To enable assertion checking at run time, you must specify the -ea option. For example, to enable assertions for Sample, execute it using this line:
java -ea Sample
native methods
Although rare, there may occasionally be times when you will want to call a subrou- tine that is written in a language other than Java. Typically, such a subroutine will exist as executable code for the CPU and environment in which you are working—that is, native code. For example, you may wish to call a native code subroutine in order to achieve faster execution time. Or you may want to use a specialized, third-party library, such as a statistical package. However, since Java programs are compiled to bytecode, which is then interpreted (or compiled to machine code on the fly) by the Java run-time system, it would seem impossible to call a native code subroutine from within a Java program. This conclusion is, however, false. Java provides the native keyword, which is used to declare native code methods. Once declared, these methods can be called from inside a Java program just as you call any other Java method.
A native method is declared by preceding the declaration with the native modifier. However, no body for the method is supplied. For example:
Java programming 565
public native int doSomething();

566 chapter 15 Applets and the Remaining Java Keywords
Once a native method has been declared, you must provide the native method. Native methods are often written in the C language. Once the native method has been created, it is necessary to follow a rather complex series of steps in order to link it with the Java code. The use of native methods is definitely an advanced programming technique, and is beyond the scope of this book.
Ask the expert
Q While we are on the subject of keywords, I have a question about this. I was looking at some examples of Java code on the Internet and I noticed a form
of this that takes parentheses. For example, this(x);
Can you tell me what this does?
AThe form of this that you refer to enables one constructor to invoke another constructor within the same class. The general form of this use of this is shown here:
this(arg-list)
When this( ) is executed, the overloaded constructor that matches the param- eter list specified by arg-list is executed first. Then, if there are any other state- ments inside the original constructor, they are executed. The call to this( ) must be the first statement within the constructor. Here is a simple example.
class MyClass { int a;
int b;
// Initialize a and b individually. MyClass(int i, int j) {
a = i;
b = j; }
// Use this() to initialize a and b to the same value. MyClass(int i) {
this(i, i); // invokes MyClass(i, i) }
}
In MyClass, only the first constructor directly assigns a value to a and b. The second constructor simply invokes the first. Therefore, when this statement executes:
MyClass mc = new MyClass(8);
the call to MyClass(8) causes this(8, 8) to be executed, which translates into a call to MyClass(8, 8).

Java programming 567
Invoking overloaded constructors through this( ) can be useful because it can prevent the unnecessary duplication of code. However, you need to be careful. Constructors that call this( ) will execute a bit slower than those that contain all of their initialization code in-line. This is because the call and return mechanism used when the second constructor is invoked adds overhead. Remember that object creation affects all users of your class. If your class will be used to create large numbers of objects, then you must carefully balance the benefits of smaller code against the increased time it takes to create an object. As you gain more experience with Java, you will find these types of decisions easier to make.
There are two restrictions you need to keep in mind when using this( ). First, you cannot use any instance variable of the constructor’s class in a call to this( ). Second, you cannot use super( ) and this( ) in the same constructor because each must be the first statement in the constructor.
exeRcises
1. What method is called when an applet first begins running? What method is called when an applet is removed from the system?
2. Explain why an applet must use multithreading if it needs to run continually.
3. Enhance Try This 15-1 so that it displays the string passed to it as a param- eter. Add a second parameter that specifies the time delay (in milliseconds)
between each rotation.
4. Extra challenge: Create an applet that displays the current time, updated once
per second. To accomplish this, you will need to do a little research. Here is
a hint to help you get started: One way to obtain the current time is to use a Calendar object, which is part of the java.util package. (The Calendar class is described in Chapter 24.) You should now be at the point where you can exam- ine the Calendar class on your own and use its methods to solve this problem.
5. To request that an applet’s window be redisplayed, what method do you call?
6. Briefly describe the assert keyword.
7. Give one reason why a native method might be useful to some types of
programs.
8. What operator can you use to determine the type of an object at run time?
9. Create an Applet that displays the following X pattern. Adjust the spacing
between the asterisks and adjust the size of the Applet so that the pattern fills most of the Applet.
** **
* ** **

568 chapter 15 Applets and the Remaining Java Keywords
10. The paint( ) method of the Applet class has a Graphics object as its param- eter. In the examples in this chapter, the Graphics object was used to draw a string. However, a Graphics object can do much more than draw strings. For example, it also has the following methods:
void drawLine(int startX, int startY, int endX, int endY) void drawRect(int left, int top, int width, int height)
Create an applet that uses these two methods to draw a house.
11. Modify the banner applet in Try This 15-1 so that it displays two
scrolling banners. Use any message you want in each banner but have one
banner rotate forward and the other one rotate backward.
12. As mentioned in this chapter, five of the methods defined for the Applet class are init( ), start( ), paint( ), stop( ), and destroy( ). Now suppose a user opens a web page containing an applet and then covers and uncovers the applet. The user also switches among various web pages, frequently revisit- ing the page with the applet. Which of the five methods will be called most often, and which will be called least often?
13. The getClass( ) method of Object can be used to tell you whether an object x is an instance of a class called A as follows:
if( x.getClass() == A.class ) { … }
What is the main difference between that if statement and the following if statement?
if( x instanceof A ) { … }
14. What happens if you test to see whether null is an instance of a class using the instanceof operator? For example, is the following condition true?
(null instanceof String)
15. Write a method counttypes( ) that takes an array of Objects as its param- eter. It uses instanceof to determine how many of the values in the array are Integers, how many are Numbers or a subclass of Number other than Double, how many are Strings, and how many are some other type. It then displays the number of each that it found. The sum of the last three numbers displayed should equal the length of the array.
16. What will be displayed by the following program? Why?
class Assertions {
public static void main(String[] args) {
assert 3 < 0 : "Oops"; System.out.println("End of method."); } } Chapter Introduction to Object-Oriented Design key skills & concepts j Know properties of high-quality software j Use names properly j Know how to maximize cohesion j Know how to minimize coupling j Know how to separate responsibilities j Understand class invariants j Write proper internal and external documentation j Understand the Expert pattern j Know how to use encapsulation and information hiding j Know the Law of Demeter j Know the Open-Closed Principle j Know when to use inheritance versus delegation j Understand the Adapter and Observer design patterns The primary focus of the preceding 15 chapters has been on the core elements of the Java programming language, including its keywords, syntax, and basic techniques. At this point, you know how to write a program that compiles correctly and performs the actions you want. However, the programs that you have been writing are quite short. In this chapter, we will introduce you to another aspect of programming that becomes especially important as you start writing larger, more complex programs, whether in later courses or in the workplace. That aspect is the proper design of object-oriented programs. We will focus mostly on design issues such as which objects should inter- act with which other objects, which objects should maintain what data, which objects should have access to that data, and which objects should have the ability to manipu- late the data. That is, we will focus on the proper way to divide up the responsibili- ties among the various objects in the system and how to get them to collaborate with each other to solve problems successfully. We will also address some implementation issues related to proper design. 569 16 570 chapter 16 Introduction to Object-Oriented Design elegant SOftware anD why It MatterS How important is it to spend time properly designing your software before implement- ing it? Consider programmers who quickly throw together some code without doing any planning or design work first. They might justify their actions by saying that the programs are very short and they know what is going on in the code. Furthermore, they might say, the code is never going to be used again or viewed by anyone else, so why waste time needlessly on design before writing the code? In the case of small "quick-and-dirty" programs, such as short shell scripts that are used only once, the programmers might be correct. It is usually not productive to spend a lot of time creating the most elegant possible version. All that is important is that the code work correctly. However, you also need to be aware that the code that the programmers thought of as "throw-away" is often not thrown away. It ends up being copied and pasted into another program, or it becomes the core of a more general, more complex program. In such cases, time devoted to designing the software properly would be time productively spent. Designing software that is intended for long-term, heavy use requires a consider- able investment of time and energy. For example, consider libraries of classes (such as Java’s Swing package that we will visit in the next part of this book), which are used extensively by application developers. It is not sufficient that the library classes have no errors in them; it is also important that the classes have a good design. A poor design for any one of these classes can cause problems down the line for all of the developers using the package. For example, if a valuable or important feature was omitted, developers will have to write their own code, possibly in a very awkward way, to accomplish what the library classes should have provided. For very large systems, in which many programmers are involved, it is even more important to spend a significant amount of time on the analysis of the problem and the design of the solution before doing any coding. In such cases, no one person can understand every part of the program, and instead each programmer works on one small part of it. If the solution has not been well designed, a change (a bug fix or an enhancement, for example) by one programmer in one line of code could easily intro- duce bugs in the code written by other programmers. When a program has thousands or millions of lines of code, bugs are inevitable. The real issue is how to minimize the number of bugs that occur when the code is written in the first place, how to maximize the detection and removal of the bugs that do make it into the code, and how to minimize the number of new bugs that are acci- dentally introduced whenever the code is modified. Furthermore, this minimization and maximization process is not a one-time thing. Software continually changes due to patches introduced to fix bugs or due to enhancements added to the software. In other words, thorough testing to remove bugs is important in software development, but it is just as important to design and write the software so that as few bugs as pos- sible are introduced in the first place and so that it is easy to modify the code later without introducing new bugs. So why don’t software developers design and write software in a way that mini- mizes bugs? The answer is that, try as they might, there are forces working against them. Doing the job right takes time and money in the short term, and the benefits do not appear until later. Meanwhile, software projects are under more and more pressure Java programming 571 to be completed quickly and put into production before the window of opportunity for sales closes. As a result, the initial software design is often inadequately specified, and so a solid foundation has not been laid. In addition, after software has gone into production, the pressure to quickly fix the bugs and make enhancements works against major redesigns. As a result, a software system tends to become a “big ball of mud,” that, as Foote and Yoder describe it on the web page , is a “haphazardly structured, sprawling, sloppy, duct-tape and bailing wire, spaghetti code jungle.” The degradation over time of software into such mud balls makes find- ing and fixing bugs and adding enhancements harder and harder, costing more time and money and resulting in more pressure to put off large-scale redesign. And so the vicious cycle continues.
There are other forces pushing software toward the same balls of mud. Those forces are the lack of skill, knowledge, and experience of the software developers regard- ing how to write high-quality software. If the developers have no experience with designing software systems of any size or complexity, or if the developers are writing a business application but have no knowledge of that particular business domain and its needs and requirements, then it is easy for the software to become muddy. Even if developers understand a system completely, the mud in the system will not go away if the developers don’t have the tools (skills or knowledge) to clean it up.
What can be done to fight the tendency of software systems to turn into mud balls? Addressing the pressures of cost and time is beyond the scope of this chapter. Our focus concerns the skills, knowledge, and experience that developers need in order to do high- quality work. In this chapter, we will introduce you to some of the things a software developer should know in order to be able to design high-quality software systems in ways that fight the forces toward muddiness.
properties of elegant Software
How can you tell the difference between poorly designed and well-designed software? Unfortunately, there is no precise definition of “well-designed” software. Good soft- ware design is as much an art as a science. As people become more experienced in the software profession, they develop a feeling about the difference between high-quality and low-quality software. That is, they develop a sense of aesthetics about software design and implementation.
Even if well-designed software cannot be precisely defined, many properties of such software can be given. In this chapter, we will consider the following properties of high-quality software:
j Usable—It is easy for the client to use.
j Complete—It satisfies all the client’s needs.
j Robust—It deals with unusual situations gracefully.
j Efficient—It uses a reasonable amount of time and other resources.
j Scalable—It will perform correctly and efficiently even when the problem grows in size by several orders of magnitude.
j Readable—It is easy for a software engineer to understand the design and the code.

572 chapter 16 Introduction to Object-Oriented Design
j Reusable—It can be reused in other settings.
j Simple—It is not unnecessarily complex.
j Maintainable—Defects can be found and fixed easily without introducing new defects.
j Extensible—It can easily be enhanced without breaking existing code.
We will use the term elegant to describe software with these properties. This term is an appropriate one because a well-designed and well-implemented software system is a joy for software developers to maintain. Developers are easily able to find the places where changes need to be made and can make those changes with minimal worrying about whether the changes will introduce new bugs. In contrast, a poorly designed system may elicit shudders of revulsion from software engineers who are forced to maintain it.
In this chapter, we will be mostly concerned with the last six properties. We will discuss common guidelines and principles of design that can help give software such properties. These guidelines and principles evolved over the years, as practitioners noticed that certain things worked well and others worked poorly.
1. For large software systems, all that matters about the software is that it work correctly. True or false?
2. List three of the properties of elegant software.
progress Check
ask the expert
Q Can you point me the in the right direction to learn more about design prin- ciples and patterns?
AIf you want to learn more, there are several good places to start. Effective Java by Joshua Block (2nd ed., 2008, Addison-Wesley) is a good resource for learning best practices for writing elegant Java. A classic text on object-oriented design in general is Obect-Oriented Software Construction by Bertrand Meyer (2nd ed., 1997, Prentice Hall). The classical reference for design patterns (which are discussed at the end of this chapter) is Design Patterns by Eric Gamma, R. Helm, R. Johnson, and J. Vlissides (1995, Addison-Wesley). You can also find many excellent resources on the Internet.
Answers:
1. False.
2. Any three of the following properties: Complete, robust, efficient, scalable,
readable, reusable, simple, maintainable, extensible.

elegant MethODS
Before we can understand the proper way to design a large object-oriented software system, including the proper division of the system into classes with appropriate responsibilities and collaborations, we need to understand what makes an individual class elegant. What is the role of a class? What kind of responsibilities should it have? That is, what data should it maintain, and what should it be able to do to that data and other data? In other words, what should its behavior be? Also, once we have made that decision, how should we implement that behavior as methods?
Let’s start with methods. Is the elegance of a method related to its return type or the name or the parameters or the body of the method? In fact, it is related to all of these parts. To help us understand the issues surrounding the elegance of methods, let us first consider a simple example.
Suppose we are developing a new DataHolder class that, when asked, should be able to insert new values into an integer array referenced by its private instance variable data. That is, this act of insertion needs to be part of the behavior of the class. As a result, we need to add one or more methods to the class to perform the insertion. There are a variety of methods we could create to give the class this behavior. For example, we could create a method insert( ) that takes as its parameters the new integer value to be inserted and an integer index indicating where it is to be inserted. The method just inserts the value into the appropriate spot in the data array. Alternatively, we could break the process into three separate methods, where the first method increaseCapacity( ) enlarges the array if necessary, the second method shift( ) shifts the other integers out of the way to make room for the new integer, and the third method put( ) puts the new integer in the newly freed up spot. Furthermore, we could leave it to the user to call the three methods individually, or we could create an additional insert( ) method that calls these three other methods.
We could also use a different name for the method than “insert” or change the order or the number of parameters. For example, we could overload the method so that two values can be inserted at once. We also could have a variety of return types. The method could have void for its return type, or it could, for example, return infor- mation indicating whether it was successful in inserting the new value. Which of all these choices is best? We will repeatedly return to this example in this section of the chapter and, in the process, answer this question and the more general question of what makes a method elegant.
naming Conventions
Several software principles can help us compare and judge the approaches mentioned in the preceding paragraph. One principle is Use intention-revealing names. Let’s look at this principle in some detail because it doesn’t just apply to methods. It applies to any part of the software that uses names, including methods, variables, classes, and interfaces.
A method name should indicate the intent of the method, that is, what the method is supposed to accomplish. The name should not indicate how the method accom- plishes its goal but rather what that goal is. A method that does not return a value (a method with return type void) should have a name consisting of a verb or verb
Java programming 573

574 chapter 16 Introduction to Object-Oriented Design
phrase, such as print( ) or setName( ). Vague names like doIt( ) are inadequate. A method that returns a value should have a name reflecting the value being returned, for example, length( ) or name( ). Such a method could also have a verb phrase for a name, the convention being the word “get” followed by the value being returned. For example, a method that returns the size of some data structure could be named size( ) or getSize( ). In regard to our DataHolder example, the name insert( ) is a quite good one. It succinctly describes what the method intends to do.
Classes and interfaces should have names that reflect the role or intention of objects of those types. The name of a class is the reader’s first clue as to the actual role the class plays in a design, and so it is worth spending time finding an appropriate name for the class. Class names typically are nouns, such as Date or ComputerCard. Interfaces often have names ending in “-able” or “-ible”, such as Cloneable or Iterable.
Finally, variables need to be named appropriately to promote readability. Consider a program that has a variable in it called nT. An argument in favor of such a name is that it is short and therefore saves typing time and helps shorten your lines of code. However, the name is quite meaningless in terms of indicating the role of the vari- able, and so the reader is forced to memorize that role. In contrast, calling the variable numberOfThreads or numThreads or even numThrds instead of nT increases dramatically the ease with which your code can be understood.
A boolean variable should have an appropriate name for the value it represents. It usually should not represent the negation of a value, for example, don’t call your variable notYetDone, which could possibly result in the need for expressions such as the double negative !notYetDone. Instead, it would be better to call it done and use the expression !done wherever notYetDone would have been used. Of course, the name done is not ideal either, since the word does not contain enough information to aid the reader in understanding the role of the variable. The variable name should say what activity is done or not done. For example, if this variable is being used to indicate that a graphic image is done loading and is now visible, a better name would be doneLoading.
Keep in mind that bad names are not just misleading; they make the whole system harder to understand, in opposition to our desire for readable software.
Method Cohesion
Another software principle is Methods should do one thing only and do it well. That is, a method should not do two or more tasks unless they are all part of a single cohesive action. For example, it makes sense for our insert( ) method mentioned above to enlarge the array, move the other values to make room for the new value, and add the new value, because they are all part of one cohesive action. In contrast, a method that both inserts new items into a data array and determines whether a string is in the form of an e-mail address is not cohesive. The main reason to avoid creating such methods is that you often want to take one of the actions but not both. In that case, a method that does both is worthless. A method is much more reusable if it does only one thing.

Here’s an example of a noncohesive method:
void doThisOrThat(boolean flag) { if( flag ) {
// …twenty lines of code to do this… }
else {
// …twenty lines of code to do that…
} }
This method is clearly trying to do two things and is using the flag to determine which of them to do. It would be better to have two separate auxiliary methods, such as doThis( ) and doThat( ), neither of which needs a flag. Once we have these methods, then we can rewrite our method above to read:
void doThisOrThat(boolean flag) { if( flag ) doThis();
else doThat();
}
This code is now acceptable (except for the non-intention-revealing names flag, this, and that) since the method is just acting as a dispatch center and so is doing one thing only and doing it well.
An interesting corollary to the cohesiveness principle is the principle A method should either modify the state of an existing object or objects or return a value, but not both. By the state of an object, we mean the values of its instance variables. Again, the reasoning behind this principle is that sometimes you might want to modify the state of an object but not return any value, and other times you might want to return a value but not modify any objects. Therefore, for reusability, it is better to separate these actions into two separate methods. Note that the strict adher- ence to this principle requires that there be no code modification inside methods that return values. For example, a method that tells you whether an array is sorted or that tells you the largest value in the array is a method that returns a value, and so it shouldn’t modify the array. Another way of stating this principle is that methods that return values should have no side effects and methods with side effects should not return values.
That said, note that we have been using the terminology “guidelines” and “prin- ciples,” not “rules.” That is, these guidelines should be taken into consideration when designing or implementing a software system, but they are not rules that absolutely must be followed. Occasionally, there are times when it is better for your design to ignore one or more of these principles. Also, some legacy code and library code do not follow them. For example, the java.util package has a Stack class with a pop( ) method that both removes the top object from the stack and returns it. (And, of course, SimpleStack developed earlier in this book also works this way.) This behavior technically breaks the principle mentioned above, but it is acceptable because it is reasonable behavior in this case and, more importantly, because such a method has been in use for many years and so changing its behavior now would be much worse than letting it continue to break the guideline.
Java programming 575

576 chapter 16 Introduction to Object-Oriented Design
ask the expert
Q What about a method that attempts to modify an object’s state and returns a boolean value indicating success or failure in the attempt? Is there anything
wrong with that?
AThis approach is a common one, especially in languages without exception handling mechanisms. It is therefore okay to create such a method even though it doesn’t follow the guideline. But Java programmers should also consider alternate courses of action, such as throwing an exception if the method does not succeed. In any case, whether your system attains it or not, the guideline is worth striving for. Consider it a challenge to see whether you can design your methods better than previous designers have done with their methods.
well-formed Objects
Here is another principle regarding elegant methods: A non-private method should keep an object in a well-formed state. For example, suppose you have a class with two instance variables: an integer array data and an integer max that stores the maximum value in the data array. You must be careful not to have any methods in the class that modify the data array without also updating the max variable. It is this kind of internal consistency that we refer to when we say a class is “well-formed.”
How do we state the requirements of consistency for objects of a class? That is, how do we know whether an instance of a class is well-formed? A good way is to cre- ate a list of the class invariants. A class invariant is a statement giving requirements about the state of instances of the class between public method calls. An example of a class invariant is the statement “The value of max and the largest value in the data array must be equal.”
For another example, consider the following implementation of the DataHolder class discussed earlier.
class DataHolder { private int[] data;
public DataHolder() { data = new int[0];
}
public void insert(int x, int index) { increaseCapacity();
shift(index);
put(x, index);
}
private void increaseCapacity() {
int[] newData = new int[data.length+1]; for(int i = 0; i < data.length; i++) newData[i] = data[i]; data = newData; } private void shift(int index) { for(int i = index; i < data.length-1; i++) data[i+1] = data[i]; } private void put(int x, int index) { data[index] = x; } public int get(int index) { return data[index]; } public int size() { return data.length; } } Note that the data array is always full of data that had been inserted. That is, there are never unused spots in the array. This is a class invariant for objects of class DataHolder. If the invariant is broken, unexpected behavior can occur. To avoid that possibility, the three auxiliary methods increaseCapacity( ), shift( ), and put( ) have been made private. As a result, objects of this class might be temporarily ill-formed, for example, after increaseCapacity( ) has been called, but are restored to a well-formed state before any public methods return. If increaseCapacity( ) or shift( ) were made public, then any user of the object could call them in isolation, causing the object to become ill-formed. For the purpose of maintaining class invariants, it should be noted that instance variables should be made private or final if they are involved in any of the class invariants. Otherwise, another object could unintentionally or maliciously change the instance variable’s value, possibly rendering the object ill-formed. Internal Documentation The final principle we want to mention in this section is Include complete external documentation for the user and internal documentation for the developer. A software package, no matter how well designed otherwise, is almost worthless if documentation is not included. Consider the frustration of a software designer who knows that a library almost surely has the tools she needs but she can’t tell for sure because the library’s documentation of its components is inadequate. Or consider the frustration of the person faced with the task of fixing a bug in a large section of code that contains little or no comments explaining why it does things the way it does. Elegant software avoids both of these situations by including appropri- ate documentation. Internal documentation is the documentation for someone who is looking at the source code. Such documentation should provide information not readily available from the code itself. It should summarize what is being done, why it is being done, and why it is being done this particular way. For example, the documentation might Java programming 577 578 chapter 16 Introduction to Object-Oriented Design explain that a method has been implemented a particular way to allow easy modifica- tion later or because the method is most efficient this way or because this way is the simplest way. It should explain the trade-offs that are involved among the various possible implementations. Internal documentation should also clearly state any class or method invariants that exist. A person modifying an existing method without being aware of those invariants is very possibly going to write code that breaks them. Internal documentation should not repeat what the code says. Instead, it should summarize the intent or purpose of the code. One reason to include the intent in the documentation is so that future maintainers of the code, when fixing errors in it, can understand what the method should have been doing rather than what it does. Helpful internal documentation might also give an overview of the implementa- tion. An internal method comment might explain the algorithm used by the method if the algorithm was not already mentioned in the external documentation. For example, a sort( ) method’s internal documentation might say that the recursive quick sort algorithm was used. Internal documentation mostly consists of comments in the source code, but the code itself can be a useful part of the documentation if the code is well written. If the programmer uses intention-revealing names of methods and variables and appropri- ately combines them, the code can be almost self-documenting, and so there is less need for further documentation. Unfortunately, totally self-documenting code is an ideal that is rarely met, and so some additional comments are usually necessary. Note that internal comments are supposed to be helpful in understanding code. However, they can also hinder the understanding if, for example, the comments are not also updated when the code is updated. Internal documentation can also help you spot inelegant parts of your methods. For example, code needing a large number of comments usually indicates poor code. If you find yourself including many comments, then the code should probably be rewrit- ten. In particular, if you write a lot of comments that summarize sections of code in a method, the method may be doing too many things. external Documentation External documentation is for users of the code who can’t look at or don’t care about the source code itself. It describes the public classes, interfaces, methods, fields, and packages and how to use them. External documentation might also include design documents indicating the relationships among and the roles played by the classes. Such documentation, if done correctly, describes all aspects of the behavior of each method on which the caller must rely. It is important to understand that the only behavior of a method on which the user should rely is the documented behavior. Reliance should be limited in this way because, during maintenance of the system, a programmer might need to modify the method. The maintainer is free to change any undocumented behavior, which then can cause serious problems for anyone relying on that behavior. What should be included in the external documentation of a method? This docu- mentation must include the full method signature and return type so that the user Java programming 579 knows the syntax to use in a method call, but much more is needed as well. For example, consider the method in the java.lang.Math class with the following header: public static double rint(double a) For an experienced programmer who already knows about rint( ), this header is suf- ficient to remind him or her of the type of the argument and the return type. But for everyone else, the method needs further documentation. A more descriptive name would go a long way toward clearing up any confusion, but, even with such a change, a textual description of what the method returns and how it uses the parameter is essential for proper usage. For another example, consider the following documentation for an nthRoot( ) function: // returns the n-th root of the double value public double nthRoot(double value, int n) This documentation is inadequate. It explains the main behavior of the method, but it does not specify what happens in special cases, for example, when value is –1 and n is 2. Here is an example of more complete documentation: // Returns the n-th root of the double value. // If n is even, the positive n-th root is returned. // If n is odd, the n-th root will have the same sign as the value. // If n < 0 or if n is odd and value < 0 then an IllegalArgumentException // is thrown public double nthRoot(double value, int n) External documentation should not specify too many details about the imple- mentation of the method. These details are almost surely irrelevant to the user of the method and so just clutter up the documentation. How do you determine when the external documentation for a method is just right? To answer this question, it is valuable to think of the method as a service an object of that class will perform for others who request/demand it. In order for users of your class to know what that service entails and therefore whether they want to use that service, you need to specify clearly what the users need to do (for example, the argu- ments they need to provide) and what your object will do in return when it executes the method. That is, think of the method as a contract. If a user provides appropriate arguments, then your method promises to perform a specific service. The appropriate arguments are often called preconditions. They indicate what must be true in order for the method to work. The specific service that is performed is often called the postcondition. It indicates what will happen when the method is executed. Note that it is up to the client to make sure the preconditions are satisfied before attempting the method call. If the client attempts to use the method without satisfying the preconditions, then all bets are off and the method can have unspecified behavior, including crashing the program, running forever, or seeming to run correctly but actu- ally generating garbage. For an example, let’s go back to our insert( ) method in the DataHolder class. Recall that it takes two parameters: an integer value to be inserted and an integer index indicating where the value is to be inserted. At least two sets of preconditions 580 chapter 16 Introduction to Object-Oriented Design and postconditions are possible for this method, depending on how the designer of the method wants it implemented. Here they are: // // // void insert(int value, int index) Inserts the given value into the DataHolder at the given index If index < 0 or index > size()
an IllegalArgumentException is thrown
This approach explains what will happen for all possible arguments and so there are no preconditions. An alternative approach is to specify preconditions and leave it up to the user to ensure that the arguments satisfy those preconditions. Here is how such documentation might look:
// Inserts the given value into the DataHolder at the given index // Precondition: 0 <= index and index <= size() void insert(int value, int index) Although both approaches work, there are disadvantages to the second one. If a method specifies a precondition and the user accidentally calls that method with illegal arguments, the result may be that a value is inserted incorrectly. The user’s program might then continue to execute with incorrect values, which can make it hard later to detect where the error occurred or even that one has occurred. The first approach is one example of a practice called “defensive programming.” You know errors are almost certainly going to occur and illegal input is going to be given to methods, so make sure that your methods can defend against such input by doing something explicit in a way that is helpful to the user. As with internal documentation, one problem with writing external documentation is keeping it synchronized with the code as the design evolves. As the code is modi- fied (e.g., errors are fixed, features are added), it is tempting, especially under time pressure, to postpone updating the documentation, resulting in documentation that no longer matches the code. One way to solve the problem of keeping documentation up to date is to generate external documentation from the source code or vice versa, so that they are always synchronized. Javadoc is a tool and documentation technique designed for such document generation. It specifies a syntax to be used for comments in the source code that are then gathered by the Javadoc application and converted into external documentation. Javadoc was used to generate the Java API documentation that you can read online. Unfortunately, using Javadoc does not guarantee that the external documentation will always be synchronized with the source code, but only that the external documenta- tion is synchronized with the Javadoc-formatted comments in the code. For an example of Javadoc notation, the method header for the nthRoot( ) method discussed earlier is presented here using that notation: /** * Returns the n-th root of the double value. * If either n < 0 or n is even and value < 0, * then an IllegalArgumentException is thrown. * * @param value the double whose root is desired * @param n the integer indicating the root to be computed * * * * * * * */ @return the n-th root of the value If n is even, the positive n-th root is returned. If n is odd, the n-th root will have the same sign as the value. @throws IllegalArgumentException if either n < 0 or n is even and value < 0. We are not using Javadoc notation to document the code in this book for reasons of space, but you are likely to use it in later courses or after college, in the workplace. A brief overview of Javadoc is found in Appendix A. 1. A method should do one thing only and do it well. True or False? 2. Statements specifying requirements about the state of objects of a class between method calls are called _______________. 3. Documentation for the programmer who is charged with maintaining the source code is called ________________ documentation. 4. A condition that must be true before a method call will work correctly is called a _______________. elegant ClaSSeS Now that you have a better understanding of what a high-quality method is, we can bet- ter explain what makes a class or a set of classes high quality. A class might have lots of responsibilities and lots of collaborators. Should such a class be broken into two or more smaller classes? Should extra responsibilities be given to it? Should it collaborate with other classes more or less than it does now? Should the class be moved into a dif- ferent package? To help us answer these questions, we will present several more design principles. Class Cohesion and the expert pattern The main principle to consider is Classes, like methods, should do one thing only and do it well. That is, classes should model only one idea. This guideline does not mean that each class should have exactly one method. Instead, it says that a class should model one concept and all the methods in the class should be related to and appropriate for that concept. That is, all the responsibilities Answers: 1. True. 2. class invariants 3. internal 4. precondition Java programming 581 progress Check 582 chapter 16 Introduction to Object-Oriented Design of the class should focus on the concept being modeled by the class. One advantage of following this guideline is that a class’s behavior and its role in a software system is much clearer to everyone. Furthermore, the class is more reusable if it isn’t encum- bered with responsibilities and data irrelevant to its main purpose. For example, a class that does one thing quite well is the String class. All the methods and data of that class refer to one and only one concept, namely, a sequence of characters. The methods of that class provide useful tools for manipulating that sequence. A simple example of an ill-formed class would be one that is responsible for storing all the information relating to a person (e.g., name, address, age) and all the information relating to that person’s current car (e.g., the brand, model, color, age). Instead, it would be more appropriate to have the person data and car data stored in separate objects, which, if necessary, have references to each other. Another ill-formed class is a “god” class that controls all other objects in a large software system. Such a class is a master class with all the responsibilities and all other classes are just slave classes or just data holders. This approach is counter to the object orientation paradigm in which there should be decentralized control, with the responsibilities for various actions spread out among the cooperating classes. Another term that can be used to describe the focused nature of a class is cohe- sion. When we say we want each class to “do one thing only,” we mean that we want each class to have high cohesion in that all the class’s behaviors and responsibilities are tightly related. There is another general principle that can help you decide which class gets which responsibilities. Suppose an object stores a collection of data and suppose some of the data in the collection need to be deleted. Which object should do the deleting? The natural choice is the object that maintains the collection. That object has access to the necessary data to perform the desired task, and so it should be the one to do so. The principle here is The object that contains the necessary data to perform a task should be the object that performs the task. This principle is called the Expert pattern. For example, consider a CarDealer object that stores, among other things, a col- lection of Car objects corresponding to the cars currently in stock. Suppose you want to know if there are any blue minivans in stock. You (the user) can do the work your- self by asking the CarDealer for a list of all cars and then traversing the list looking for a blue minivan. Or you can ask the CarDealer if it has any blue minivans in stock. The latter option is clearly preferable. The CarDealer is the object with the necessary data to perform the task, and so ideally it should be the one that does so. In summary, the Expert pattern is being violated whenever class A has a method that gets several pieces of data from an object of class B, manipulates those pieces, and then possibly returns a result. The object of class B has all the necessary data, and so that object should be the one performing the manipulation rather than an object of class A. That is, the method in class A should probably be moved to class B. One clue that your objects may not be doing their jobs properly is the existence of a lot of calls to accessor methods (getX( ) methods). If there are many such calls, then you should ask yourself what the other objects are doing with the data they get when they call one of those methods? Shouldn’t your class with the getX( ) methods be doing that job for them? Java programming 583 Notice how this issue relates to our principle of a well-designed class doing one thing only and doing it well. An object that does its job well not only retrieves data for you, but also manipulates that data instead of expecting you to do all the manipula- tions yourself. That said, there is a tension between the principle of doing one thing only and doing it well and the Expert pattern. For example, consider an application that is the front end of a database. The application gets some data from the database and then dis- plays it in a window. The Expert pattern suggests that the database be responsible for displaying its own data. However, a database object should also have high cohesion, which suggests it should not be responsible for two completely different activities, namely, managing the data stored in it and displaying that data in a GUI. For many of your classes, you have to decide where to draw the line in terms of cohesiveness (doing one thing only) versus the Expert pattern (doing everything possible with the data for everyone else). avoiding Duplication In the preceding section, we talked about separating the responsibilities among classes and, in particular, making sure that no class has too many different kinds of responsibilities. But there is another question about responsibilities that we haven’t yet addressed: Is there anything wrong with two different classes having the same responsibility? Must there be one and only one class given each responsibility? The answer is easy to guess. It is another principle: Avoid duplication. This guideline is also known as the “DRY” principle: Don’t repeat yourself. It actually says much more than not to duplicate the responsibilities among classes. Duplication can occur in many forms. For example, there might be duplicate copies of the same information, there might be duplicated code within a method or between two methods, or there might be duplicate methods in two different classes. In addition, there might be duplication of processes, that is, unnecessary repeated execution of a piece of code. All of these forms of duplication result in inelegant designs and code. What’s actually wrong with duplication? In summary, code with duplication is less readable and less maintainable than code with no duplication. To give you a better feeling for the problems that can occur, let us consider data duplication. Why should duplicate copies of the same data be avoided? If several classes need to know the same information—for example, if there are several school administration objects that need to access the same student records—doesn’t it make sense to give them all copies of that information? In some cases it does make sense, if the information never changes (that is, it is immutable). In that case, duplicate cop- ies are okay, although they can waste space, especially if they are large. However, if the information that is duplicated is modifiable, then it is very easy for the copies to become unsynchronized; that is, one copy might be updated while, for some reason, maybe accidentally, one or more of the other copies are not. Instead of duplicating the data, how about keeping only one copy of the data but allow- ing duplicate points of access to that data? For example, suppose you have an object of class Company that is responsible for maintaining a collection of Employee objects. Suppose the Company class implements its collection with an array. Other objects may need to use the Employee objects, and so the Company might have a getEmployees( ) method 584 chapter 16 Introduction to Object-Oriented Design that returns the array of Employee objects. As a result, two objects may have references to the same array. Is that bad? Duplicate references to the same piece of data occur often in software systems. However, one problem is that the other objects may maliciously or unintentionally render the data invalid. In our Company example, what if another object modified the array by removing Employees who should be there or by adding new Employee objects to the array or even adding null? In this case, the Company is not properly maintaining the data against intentional or unintentional corruption by others. What should the Company do instead of handing over its array to anyone who asks? There are several options: 1. Have the getEmployees( ) method return a copy of the array of Employees. 2. Assuming that other objects rarely need to see all the Employee objects, have a getter method that finds and returns just one employee at a time. 3. Have the Company class follow the Expert pattern and do all the manipula- tion of Employee objects for the other objects so that the Employees are always hidden. That is, do not give other objects direct access to Employee objects and instead force those other objects to ask the Company to access the Employee objects for them. The issue here relates to how much you trust your collaborators. A class’s default behavior should be to trust no one. In particular, if the Company doesn’t trust other objects, then it should never let them see the actual array itself, but only the data in the array. In a good design, each set of data has an associated “gatekeeper” class that is responsible for maintaining the primary source of that data. Other objects must ask the gatekeeper for a reference to the data when they need access to it. The other objects can then temporarily use or even modify the data passed to them, if appropriate. But they should not, in general, have a permanent reference to the primary source of the data, nor should they create or maintain their own copy of it except on a temporary basis. Also, just as methods should always keep objects in a well-formed state, so must the gatekeeper always keep its data in a well-formed state, which requires it to be the sole object with access to its data. That said, duplication of data is sometimes preferable to the alternative. For example, consider the situation in which you have a gatekeeper of a massive collection of objects. If the collection changes infrequently but there are frequent requests for the size of the col- lection, then it makes little sense to traverse the collection counting the number of objects every time its size needs to be known. Instead, for efficiency, it makes sense to have a separate variable holding the size of the collection that can be returned when a request is made for the collection’s size. This situation violates the guideline against duplication in that the collection itself contains the information concerning its size (although you have to traverse the collection to get that information), and the extra variable also contains information about the collection’s size, thus duplicating that information. However, for efficiency reasons, the duplication is worth it in this case. Java programming 585 What about the other forms of duplication we mentioned above, such as code duplication within a method or method duplication? Like data duplication, the prob- lem with code duplication is that copies can become unsynchronized when one copy is updated but not the others. If you have duplication of code within a class, it can be removed by extracting the duplicated section from all methods and moving it into a new auxiliary method that then gets called by the other methods. If you have two different classes with duplicate methods, you can give one class a reference to the other class and invoke the method indirectly by way of an instance of the other class. Alternatively, you could move the duplicate method up into a common superclass. Removing code duplication more generally, however, is not so easy because it can sometimes be subtly hidden. As mentioned earlier, there is another form of duplication that can cause problems, namely, the duplication between the actual software itself and the documentation of that software. External and internal documentation must precisely reflect the design and the implementation of the software because, if they become out of sync, then the documentation becomes misleading, which can be worse than no documentation at all. Duplication of processes should also be avoided for efficiency reasons. For exam- ple, it would be wasteful of resources to have one method do a complex calculation and then call another method that repeats the calculation. In that case, it would be better for the first method to pass the result of the calculation to the second method so that it can avoid duplication. Finally, in addition to everything we have said so far about duplication of data, code, documentation, and processes, you should keep in mind that the appearance of any form of duplication in your software might be a symptom of a bigger problem. If you see a large amount of duplication, you should probably rethink the roles and responsibilities and relationships among the classes and components involved to see whether a better design can be found that eliminates or at least reduces the duplication. Complete Interface Up to this point in this chapter, our discussions have centered on determining the purpose of each class. That is, what concept should each class represent, or what role should a class play? The preceding sections argued that each class should play one and only one role in order to maximize cohesion and separate responsibilities. Furthermore, they argued that each responsibility should be assigned to exactly one class. But once we have decided on the role of a class, then we still need to decide what behaviors (methods) the class should have with regard to that role. Do we include just the minimal necessary behavior? Or, while we are at it, should we add more behavior to the class in the hope of making it more reusable? What methods should we include to imple- ment this behavior? The answers to these questions vary from class to class. Some classes are very application specific. In particular, a class with just the main( ) method that executes when an application starts running is not a class that will be reusable for other appli- cations, and so it makes little sense to expend a lot of energy designing that class for reusability. However, considerable attention and energy should be devoted to the design of classes that will become part of a library on which many other applications 586 chapter 16 Introduction to Object-Oriented Design will depend. For the rest of this section, we will assume we are talking about classes such as these. For classes that you want to be as reusable as possible, there is a new guideline: Give the class a complete interface. By “complete,” we mean that the class should have the full set of appropriate behavior so that it can perform any reasonable action related to the role that it plays. If, for example, we have a GUI component, and it has a setSelected( ) method with no parameters that highlights the component, then it should have a setUnselected( ) method with no parameters to remove the highlight- ing. Even better would be to have one method setSelected( ) that takes a boolean parameter b and highlights the component if b is true and unhighlights it if b is false. For completeness, such a component should also have a boolean isSelected( ) func- tion that tells you whether the component is currently highlighted. How full should the set of behaviors be? That is, how many public methods should be included? One extreme is to create the minimum number of essential methods. By essential methods, we mean methods that any class that does one thing well must have. Implementations of such methods typically are intimately tied to the representa- tion of the data stored in the class. Informally, we can think of an essential method as one that cannot be implemented by calling other methods of the class. All nonessential methods we call convenience methods. At the other extreme from a class with only essential methods is a class that has a large number of convenience methods in addi- tion to the essential methods. For example, consider a rotatable Rectangle class with a rotate( ) method that takes the number of degrees of rotation as its parameter. Suppose that a significant number of the rotations that are expected to be performed are actually 90-degree counterclockwise rotations. Then a rotateLeft( ) method could be included in the Rectangle class for convenience. The rotateLeft( ) method is not, however, essential since it can be implemented by a call to rotate(90). Finally, a designer needs to be careful not to overwhelm the users by adding too many methods to a class in an attempt to ensure completeness. In other words, don’t try to anticipate all possible uses to which your class will be put. It is better to include a core set of essential methods and the most appropriate set of convenience methods and to let the users construct their own convenience methods or extend the class through subclass- ing if they need a larger range of methods. The key is to make sure that the core set is sufficiently large that users can create any convenience methods they need. Design with Change in Mind Much of our discussion so far has had to do with the reusability and readability of software. For example, we want intention-revealing names so that our code will be readable. We want our classes to have cohesion and a complete interface so that they can be easily reused. However, there are other, just as important, issues to consider when designing classes. These are the issues of maintainability, modifiability and extendibility. There are many reasons why modifications to existing classes may be necessary, including fixing bugs, making optimizations, and adding new behavior. The hard part of making such changes is doing it in a way that does not introduce new bugs or make the code “brittle,” which means easily breakable when attempting further modifications. Java programming 587 To have a maintainable, modifiable, and extendible system, you need to design it with the possibility of future modifications in mind. The new guideline is: Design your classes so that they can handle change. The rule above is easier stated than achieved. How can you design for change when change can come in so many forms? In truth, you can’t anticipate all the forms of change, but following some general guidelines as you design your code will greatly improve the ability of your classes to handle change as it occurs. One such guideline is known as the Open-Closed Principle. It says that You should design software so that it is easy to extend by adding new classes, extending existing classes, and reusing existing classes rather than by modifying existing classes. Note that “extend” here does not just mean subclassing. Rather, we are referring more generally to extending a system by adding new features or new behavior. The benefit of following this principle should be clear. When software needs to be changed, as it always does, one approach is to change the existing classes. For example, you can change your software by adding new methods or changing existing methods of your classes. Unfortunately, this approach will likely also require you to change other classes that depend on the changed classes, which in turn may require you to change classes that depend on these classes, and so on. Not only are all these cascading changes time consuming, but also they are likely to introduce new errors in the code. Clearly it is advantageous to minimize the modification of existing, working code and instead to extend that code by adding new classes that incorporate the changes, leaving the old classes alone. How do you design classes so that the Open-Closed Principle holds? Consider an electrical outlet in your home that currently provides power to an electric clock you purchased from Acme ten years ago. There are at least three ways to view the outlet, with analogies in object-oriented design: 1. If we think of the outlet only as an Acme clock outlet (that is, if we reserve that outlet only for clocks of the brand of the current clock), then, if Acme stops making clocks, the outlet becomes useless when your clock breaks. The outlet in this case is analogous to an AcmeClock variable that can refer to (plug in) only clocks of type AcmeClock. 2. If we think of the outlet as an electric clock outlet, then, when our current clock breaks or becomes obsolete, we can buy a new electric clock of any brand or style and plug it into the outlet. The outlet in this case is analogous to a variable of type ElectricClock (an abstract class or interface) that can refer to objects of any subclass (brand) of ElectricClock. This view of the outlet is much more useful than the first view, but it is still restrictive in that only electric clocks are allowed to use the outlet. 3. If we think of the outlet as an electric appliance outlet, then, we can plug any appliance, not just a clock, into the outlet. The appliances need have no relationship with each other aside from the fact that they have a plug that fits the outlet (the electrical interface). This view corresponds to having an ElectricAppliance interface and a variable of type ElectricAppliance that can contain any object of any class that implements the ElectricAppliance interface. 588 chapter 16 Introduction to Object-Oriented Design It is clear that the third view provides much more flexibility to the users of your classes. In this case, it is much easier to change the value of the variable when neces- sary. The idea is to define your variables and values to have the widest possible type so that they can be used for as wide a range of values as possible. The widest possible type in Java is an interface type. Therefore, we have another guideline: Code to interfaces, not classes. That is, wherever possible write your code so that objects are referred to by the interfaces they implement instead of by the concrete class to which they belong. One way to view coding to interfaces or, more generally, designing your classes to handle change, is to think of it as a way of making it easy to back out of any design or implementation decision you made previously. For example, if you hard-wired your code to refer to an object of a particular class, then it is hard to back out of that design and instead use another class. In contrast, if you had written your code so that the object was stored in a variable of an interface type and only the interface’s methods were used, then it would be easy to replace the object with an object of another class that implements the interface. Little or no other code would need to be modified. Note that much of our discussion in this section can be thought of in terms of minimizing the interconnections between parts of the program. For example, by cod- ing to interfaces instead of to a concrete class, you reduce the interdependence among the concrete classes. The concept of reducing such connections goes by the name of “minimizing coupling.” We can also consider interdependence on a larger scale, such as among groups of classes, rather than just between two classes. For example, suppose we decide that we need to replace a group of classes that work together to accomplish a task with another group of classes that accomplish the same task. If the classes had been designed so that each class is minimally coupled with the other classes, then it is easier to make the switch. Two techniques that can help you design with change in mind are encapsulation and information hiding. As you learned in Chapter 1, encapsulation means grouping together related items and putting a wall around them or protecting them from access by others. Although encapsulation can be done in most programming languages, object-oriented languages such as Java provide a natural mechanism, the class, for encapsulating data and the methods that operate on that data. Java also provides a package mechanism for encapsulating groups of classes. How can the encapsulated items be protected? One technique that is helpful is information hiding, which means keeping information hidden from others. In par- ticular, it is helpful to keep the implementation of a class or group of classes hidden as much as possible from the users of the class or classes. If information in a class is exposed, then clients are likely to become dependent on the fact that it is exposed, resulting in tighter coupling between that class and the clients’ classes. One way to hide information has been mentioned before: keep all instance variables private. This privacy is important for ensuring that objects of a class are always in a well-formed state. It is also necessary if, in the future, we want to be able to change the imple- mentation of a class without requiring other classes to also change. If other classes need access to those instance variables, then, instead of making the variables public, provide getter and setter methods for each of them. One advantage of using such Java programming 589 methods instead of making the variables public is that you can include code in the set- ter method that ensures the well-formed state of the object. For example, you might include a range check. Also, such methods can be overridden by subclasses, giving developers more flexibility in creating classes to fit their needs. In contrast, a public instance variable cannot be overridden in subclasses. In summary, private instance variables and, if necessary, public getter and setter methods are almost always preferable to public instance variables. How much of a class’s implementation do you encapsulate and hide? The general rule is to encapsulate and hide as much as possible. For example, make private all methods that are intended only to be used internally to the class as auxiliary methods for other methods. It is far easier to expose something later if it no longer needs to be hidden than it is to hide something that was previously exposed. Hiding an item that has been exposed may require global changes to the system. In summary, one of the most important things you can do to make your system elegant is to design it to handle change. The Open-Closed Principle states more spe- cifically what you should strive for. Coding to interfaces, minimizing coupling, and using encapsulation and information hiding are guidelines to help you reach this goal. Demeter’s law There is one final topic we want to address in this section. It relates to the Expert pat- tern and the coupling between classes and how well your software can handle change. This topic is the Law of Demeter. To understand the Law of Demeter, consider a general in an army that is setting up a base of operations in the field. One of the many jobs that need to be performed is the digging of foxholes. Here is one way that task could be accomplished. The general could get one of his colonels and tell him to get a major. The general would then tell the major to get a captain. The general would then tell the captain to get a sergeant. The general would then tell the sergeant to get a private. The general would then tell the private to dig some foxholes. This approach is quite ridiculous, isn’t it? And yet we might easily see the equiva- lent of that approach in code: general.getColonel(c).getMajor(m).getCaptain(c). getSergeant(s).getPrivate(p).digFoxhole(); Hopefully you realize that, just as it is not appropriate for the general to go through all those steps for getting a foxhole dug, it is inappropriate for code to go down such a message chain to get a task done. Consider a similar, but more realistic, chain that might appear in an ATM applica- tion, in which the program reads, from an ATM card, the bank name b, the branch number r, the customer name c, the account number a, and then attempts, starting with some associated CentralControl object, to get the customer’s balance in that account: Balance balance = centralControl.getBank(b).getBranch(r). getCustomer(c).getAccount(a).getBalance(); Do you see the problems with such code? One problem is that you have now strongly coupled the ATM application, CentralControl, Bank, Branch, Customer, 590 chapter 16 Introduction to Object-Oriented Design Account, and Balance classes. Any changes to the structure of any of the latter classes could affect the code in all the former classes. Just as important, such getX methods give the user access to the Bank, Branch, Customer, Account, and Balance objects, and so the user could manipulate them (that is, invoke methods on them) in ways that may not be intended for anyone other than those in a privileged subset. What are better ways to handle these situations? Let us go back to the general in the army and consider what such a general would really do. Most likely he wouldn’t even concern himself with details such as digging foxholes. But if he did, he would certainly call in one of his officers and tell him, “I don’t care how it is done, but get someone to dig foxholes.” Similarly, one possible way to handle the request for an account balance would be to do something like the following: Balance balance = centralControl.getBalance(b, r, c, a); In this version, it is up to the CentralControl class to delegate or forward the respon- sibilities to other classes as necessary to get the desired balance. For example, the CentralControl could find the Bank with the name b and pass to it the values of r, c, and a and ask it for the balance. The Bank could continue similarly. As a result, the classes are less strongly coupled. The main application doesn’t need to worry about the existence of Customer or Account objects and can leave those details to CentralControl or other classes with which the CentralControl communicates. The method chaining seen in these examples is a violation of the Law of Demeter, which says: Invoke methods only on objects that you either create yourself or have direct access to. Informally, the law says, Don’t talk to strangers. In particular, do not talk to (that is, invoke methods on) objects that are returned by methods invoked on other objects. Here are some more examples in which this issue arises: 1. General contractors, when building a house or larger structure, often employ subcontractors. The subcontractors may in turn get other subcontractors to help them. The general contractor doesn’t care about the second level of sub- contractors. That is, the general contractor expects the first level of subcon- tractors to do the jobs for which they are contracted, and the general contrac- tor doesn’t care who they employ or how they get the job done. 2. Suppose you are accessing a bank’s database and you need to find the cus- tomer with a given name. You could (a) ask the database for a collection of all the customers and then step through the collection looking for the one with the given name, (b) ask the database for a collection of all the customers and then ask the collection to find the desired customer for you, or (c) give the database the name and ask it to do the searching to find the customer for you. Version (c) is the preferable one from the perspective of the Law of Demeter. It is important also to mention here that the Law of Demeter should really have been called a “Guideline” instead of a “Law.” It is not an absolute that must always be fol- lowed. Otherwise, it would place a tremendous burden on the objects you have direct access to, in that all possible requests of any other objects would have to be handled Java programming 591 through them. Given that you don’t always know what kinds of requests will be made (remember that “change happens”), it is hard to anticipate all future requests. 1. What does the Expert pattern say? 2. The principle Avoid duplication applies only to data. True or False? 3. What does the Open-Closed Principle say? 4. What does Demeter’s Law say in simple English? InherItanCe verSuS DelegatIOn When designing a large system, it is very important to consider the role inheritance will play. Inheritance is one of the most significant features of object-oriented programming. It can greatly increase the reusability of classes and also minimize the duplication of code. However, if used improperly, it can also greatly decrease the quality of the design. In this section, we will address the question of how to use inheritance correctly. uMl Class Diagrams As an aid in our discussion of the proper use of inheritance, it can be helpful to have a diagram showing the relationships among classes in any design. Therefore, before beginning that discussion, we will introduce UML Class diagrams. UML (which stands for “Unified Modeling Language”) is a standard notation or language for dia- gramming the structure of a software system. UML is independent of the program- ming language used to implement the system. A UML Class diagram is one of more than a dozen diagrams in the UML. It shows classes and interfaces and the relation- ships between them in a language-independent fashion. Such a diagram provides a static view of classes, interfaces, and their relationships rather than a dynamic view of the interactions among objects of those classes. A class is represented by a box divided into three sections. The top section gives the name of the class. The middle section gives the attributes or properties held by objects of the class. These properties are abstractions of the data or state of an object and are usually implemented using instance variables. The bottom section gives the operations of a class, which correspond in Java to methods and constructors. Answers: 1. The object that contains the necessary data to perform a task should be the object that performs the task. 2. False. 3. Design software that is open to extension but closed to modification. 4. Don’t talk to strangers. Talk only to your immediate neighbors. progress Check 592 chapter 16 Introduction to Object-Oriented Design fIgure 16-1. the Class diagram for a Person class. For example, see Figure 16.1 for the Class diagram for a Person class. The diagram shows that this class has a name attribute that is a string and a birthDate attribute of type Date. In Java, these two attributes could be implemented by adding two instance variables to the Person class: a variable called name of type String and a variable called birthDate of type Date. The diagram also shows that this class has a construc- tor with two parameters, a method getName( ) with no parameters that returns a String, and a getBirthDate( ) method with no parameters that returns a Date. Notice several other things about this diagram: 1. The "–" symbol in front of the attributes indicates that the attributes are pri- vate. Similarly, the "+" symbol in front of the operations indicates that they are public operations. 2. The types of the attributes, parameters, and return types of the operations are given after the names of the element and are separated from them by colons. 3. The implementation of these attributes and operations is not included in the box because a UML diagram is not usually concerned with such low-level details. Any of the parts of a class except its name can be omitted from the diagram. To avoid clutter and confusion, it is strongly recommended that the diagram leave out all details of classes that are not relevant to the discussion. It is therefore important to remember that a class with no operations shown, for example, does not imply that the class has no operations. Rather, it implies that the operations are not relevant in this diagram. UML Class diagrams show not just classes and interfaces, but relationships among them. The UML notation for subclassing is shown in Figure 16.2. The arrow pointing from the subclass to the superclass is called a generalization relationship in UML. fIgure 16-2. the uMl notation for Subclass and Superclass. fIgure 16-3. an association between Classes a and B. An association is a structural relationship between two classes. If objects of one class maintain a reference to objects of another class or if you need to navigate from objects of one class to objects of another, you would represent the connection between the classes by an association, which is drawn in UML Class diagrams as a line between the class boxes. See Figure 16.3 for an example. In this diagram, the association is implemented through an attribute x in A of type B. Association lines can have many optional adornments, such as numbers at one or both ends, indicating multiplicity (the number of objects on that end of the associa- tion). They also might have an arrow at one end, as shown in the figure, to indicate one-way navigability or one-way awareness. From objects of the class at the tail of the arrow, you can easily “get to” or are “aware of ” objects of the class at the arrow head. A plain line with no arrows could indicate two-way navigability, or it could mean that the direction of navigability is not important, and so was left out. Java programming 593 ask the expert Q What do all the other UML diagrams do? AUML 2.2 has 14 diagrams, which can be divided into two general categories: structural diagrams and behavioral diagrams. The Class diagram falls in the first group. It is beyond the scope of this book to discuss all the diagrams. Instead, we’ll just mention three of them here. The Use Case diagram is a behavioral dia- gram that is useful for representing and managing all the uses to which the soft- ware will be put. For example, a digital music manager application might be used to listen to music, import music, create and edit music play lists, and copy music to an mp3 player. All these uses would be represented in a Use Case diagram. The UML Sequence diagram is a behavioral diagram. It is used for displaying the interactions among objects along a time line. The UML State Machine dia- gram is a behavioral diagram that represents how the state of an object or system changes over time. For example, consider the software in a low-cost digital watch. Initially, it may display the current time. But after you press the correct buttons, it will display a stopwatch or timer. The watch software is now in a new state. If the watch is in stopwatch mode and you press the correct button, the time will start advancing, which is another new state for the software. The State Machine diagram shows how all these states are related and what events need to occur to switch from one state to another. 594 chapter 16 Introduction to Object-Oriented Design fIgure 16-4. a misuse of inheritance. Code reuse perspective Let us now return to the discussion of the proper use of inheritance. One of the real benefits of inheritance is code reuse. But is code reuse alone a sufficient reason for using inheritance? Let us consider an example. Suppose your design includes a Dog class and a Person class, both of which have a name instance variable and a getName( ) method. To avoid duplicating that field and method, you could remove the instance variable and method from the Person class and make the Person class a subclass of the Dog class. See Figure 16.4 for a UML diagram showing this relationship. Unfortunately, in Java, subclasses inherit everything in their superclasses. Therefore, the Person class would also inherit the bark( ) and getLastRabiesShotDate( ) meth- ods, which are rather inappropriate for Person objects. Alternatively, you could put the name instance variable and getName( ) method in the Person class and then make the Dog class a subclass of Person. Clearly this solution is just as inappropriate. In situations such as these, you really want to reuse only some of the code. If a subclass could selectively choose which code to inherit and which not to inherit, an argument favoring the use of inheritance would have more merit. What is a better way to avoid the code duplication in the Dog and Person classes? One way would be to create a NamedObject class with the name field and getName( ) method and make Dog and Person both subclasses of NamedObject. This approach works well as long as you don’t already have some other superclasses of Dog and Person. (Remember that, in Java, each class can have at most one superclass.) In summary, being able to inherit code that would otherwise have to be duplicated is a useful feature of object-oriented languages. But code reuse in and of itself rarely justifies inheritance. the Is-a relationship The problem with using inheritance for the Dog and Person class in the preceding section is that dogs are not people and people are not dogs. That is, there is no is-a relationship Java programming 595 between the concepts that the classes model. Is the combination of code reuse and the is-a relationship among the classes a sufficient reason for using subclassing? Let us consider another example. Suppose a software designer needs to model geometric shapes, and so creates a Square class and a Rectangle class. Should inheritance be used between these two classes? It is clearly the case that, from a geo- metrical perspective, every square “is a” rectangle. Furthermore, there are certainly good opportunities for code reuse between them. For example, the implementations of methods involving moving or finding the area or perimeter of the rectangles and squares are probably identical in both classes. Therefore it seems natural to make the Square class a subclass of the Rectangle class. But is this a good decision? Consider the following Java implementation of the Square and Rectangle classes using inheritance. Notice how much code reuse we have—the Square class doesn’t need to implement anything other than a constructor. public class Rectangle { private int x, y, width, height; public Rectangle(int x, int y, int w, int h) { this.x = x; this.y = y; width = w; height = h; } public int getWidth() { return width; } public int getHeight() { return height; } public int getArea() { return width * height; } public int getPerimeter() { return 2 * (width + height); } public void setTopLeft(int newx, int newy) { x = newx; y = newy; } public void setSize(int w, int h) { width = w; height = h; } } public class Square extends Rectangle { public Square(int x, int y, int side) { super(x, y, side, side); } } However, as you may have noticed, there is a serious problem with this design. Because of the fact that subclasses inherit all methods of their superclasses, the Square class now inherits a setSize( ) method that has two parameters. A call to this method can make the width and height of a square unequal, a rather undesirable out- come. A setSize( ) method for squares should just take one parameter. What can we do about this situation? Before throwing away inheritance, let’s try to patch the problem up by other means. One way to do so is to nullify the negative 596 chapter 16 Introduction to Object-Oriented Design effects of the inherited setSize( ) method by overriding it in the subclass. For example, we might add the following method to the Square class: public void setSize(int w, int h) { width = w; height = w; } which ignores the parameter h and uses w for both the height and the width. This method allows users to modify the size of the square but only in a way that preserves its “squareness.” Unfortunately, this solution is not a very good one either. To see why, suppose that the user adds the following method to his program: public int stretchAndFetch(Rectangle r, int dx) { r.setSize(r.getWidth() + dx, r.getHeight()); return r.getHeight(); } When this method is executed, the user expects that a rectangle will be stretched horizontally by the amount dx. But if, unbeknownst to the user, a Square object is passed as the first argument, then the height will be adjusted by dx as well, and the new height will be returned by the method. The user will be surprised or confused to see this new height because the user expected there to be only horizontal stretching. Code is not considered elegant if the user of that code is surprised or confused by the behavior of that code. Our problem here is that the subclass does not have behavior consistent with the behavior of its superclass. Such consistent behavior is necessary for elegant code. This guideline can also be phrased in terms of astonishment: If a client thinks she has a reference to an object of type A but actually has a reference to an object of subtype B, there should be no surprises when she invokes methods on the object. This guideline is called the principle of least astonishment. For example, a client using a Square object as the value of r in the stretchAndFetch( ) method above will almost surely be surprised by its behavior, indicating a problem with the inheritance hierarchy. What are the implications of following the principle of least astonishment? The answer depends on what we mean by a “surprise.” There are two definitions of that word that we could use in this context. In the more restrictive case, a surprise is any difference in the behaviors of objects of the two classes. If we use this definition, then, by the principle of least astonishment, we are not allowed to change any of the inherited behavior in the subclass, which means that overriding superclass methods is pretty much prohibited. Therefore, subclasses can only add new behavior rather than modify existing behavior. The new behavior is invisible when the subclass objects are being treated as if they were of the type of the superclass. This restrictive version of the principle could better be called the principle of no astonishment. A less restrictive definition of surprise would be to say that a surprise is any dif- ference in the documented behavior of objects of the two classes. If the external docu- mentation for the stretchAndFetch( ) method says that only the width is stretched, then the behavior of this method when a square is the argument is breaking the guidelines. However, if the documentation mentions nothing about the behavior of the method with regard to the height of the rectangle, then the behavior with squares does not break the guideline. In that case, it is perfectly acceptable to have the square Java programming 597 stretched both horizontally and vertically, and the principle of least astonishment will be satisfied. You may have noticed another aspect of the square/rectangle example. The origi- nal is-a relationship between geometric squares and rectangles, as viewed by math- ematicians, holds only because, in mathematics, all geometric shapes are fixed, or immutable. If a mathematician talks about stretching a rectangle, she is really talking about creating a new rectangle rather than modifying the old one. Therefore, if the Rectangle class and Square class were made immutable, they would more closely model the mathematician’s idea of rectangles and squares. In fact, if the classes were made immutable by removing the setTopLeft( ) and setSize( ) methods, it would be perfectly acceptable to make the Square class a subclass of the Rectangle class. Similar Behavior As mentioned in the preceding section, the problem with the is-a relationship between the original Square and Rectangle classes was the fact that the Square and Rectangle’s behaviors didn’t match. That is, a Square is not a Rectangle if a Rectangle has the ability to modify its width separately from its height. Another way of saying this is that the public methods of the Rectangle class were not all appropri- ate for the Square class. But what happens if we do have similar public interfaces with similar behaviors between two of our classes, in addition to code reuse and an is-a relationship? Do we now have a sufficient reason for using subclassing? Consider a classical example often used to introduce the concept of inheritance, namely, the classes of Student and Person. Clearly, a student “is a” person (as long as the student is attending an elementary school, high school, or college, for example, and not dog obedience school). A student, like a person, has all the properties and behavior of a person, such as name, address, and date of birth, and, in addition, has other attributes like the school in which he or she is currently enrolled, the number of credits earned, the grade point average, and the class schedule. The student and person clearly have common behavior, and so there is an opportunity for code reuse. Most naturally, you could argue that the Student class should be a subclass of Person. But should it? Let us suppose we include this inheritance in our design and consider a large university that uses our design to store its records on each student. Furthermore, sup- pose the university stores its employee records in Employee objects (where Employee is, by following the same line of reasoning, another subclass of Person). See Figure 16.5. fIgure 16-5. an inheritance hierarchy among Person, Student, and Employee. 598 chapter 16 Introduction to Object-Oriented Design Now, suppose one of the students graduates and starts to work for the university, and so becomes an employee. Or suppose the student becomes an employee of the university while still a student. What must the university do to update its records in this case? In the case of a student graduating and becoming an employee, the univer- sity could just replace the Student object with an Employee object. However, this approach has two potential problems. If there are many references to the Student object in the university’s records, those references will all need to be updated to refer to the new Employee object instead. Also, there might be data that needs to be pre- served in the Student object, for example, the student’s transcript, that is not included in the Employee object. Alternatively, the university could create two distinct objects to represent the per- son: an active Employee object and an inactive Student object that might be archived. However, this approach is inelegant because it duplicates all the common Person data in both objects. The problems could be resolved easily if it were possible to change an object dynamically to belong to a different class (and so change the Student object into an Employee object). However, such a change is not possible in Java. A better approach avoids inheritance altogether and looks at the student and the employee as roles being played by the person. Roles are typically temporary aspects of an object. In our example, a person is not always a student or an employee, and so these are temporary roles. Because of the temporary nature of the roles but the more permanent nature of the person, inheritance is not an appropriate way to associate them. A better design uses delegation (also called referencing), in which a Student object has an underlying Person to whom it refers. In this case, we could have exactly one Person object for each real person, which would be independent of all the roles currently played by that person. For example, the Person class might be defined as follows: public class Person { private String name; private String address; public String getAddress() { return address; } // ...other methods and data... } Then, as new roles are played, objects representing those roles, such as Student or Employee objects, can be created that include a reference to the Person playing those roles. For example, the Student class might be defined as follows: public class Student { private Person me; private AcademicRecord myRecord; public String getAddress() { return me.getAddress(); } public float getGPA() { // ...compute it from the academic record... } // ...other methods and data... } Notice how any Person-specific behavior required of a Student is performed by for- warding the request to the Person object. For example, if Student objects are asked for their addresses, the Student objects, in turn, delegate that task to their underlying Person objects. The Student object handles student-specific tasks, such as computing GPAs and managing course schedules, and the underlying Person object handles all personal tasks. Similarly, the Employee class might have a reference to the Person being employed. See Figure 16.6 for a diagram of these alternatives using the Student, Employee, and Person classes. By using such delegation of responsibilities, it now becomes easy to keep track of the changing role of a person. When a person initially becomes a student, both a Student object and Person object are created, and the Student object is given a reference to the Person object. If and when the student becomes an employee, a new Employee object is created that refers to the same Person object. In this situation, it is perfectly acceptable to have both Student and Employee objects referring to the same Person object. When the person no longer plays one of the roles (e.g., if the student graduates or quits her job at the university), that role can be deleted or archived and the other roles can remain active. In this way, the Person object can be considered to exist permanently, but the person’s roles can come and go. Furthermore, there is no duplication of data. The following guideline summarizes this discussion: If class B models a role played by class A, especially a temporary role, then B should not be a subclass of A. Instead objects of class B should have references to objects of class A. Java programming 599 fIgure 16-6. Inheritance (left) versus delegation (right). 600 chapter 16 Introduction to Object-Oriented Design polymorphism What if we have a situation in which we have code reuse, an is-a relationship, similar public behaviors between our classes, and we have the need for polymorphism? Do we now have a sufficient reason for using subclassing? Probably so. For example, suppose you wish to create a new class B to be used as the argument to a method whose parameter is of type A, where A is a class. In that case, you have no choice but to make B a subclass of A. This situation arises more often than you might at first think. For example, any method that doesn’t care what type of object is passed in as an argument will have a parameter of type Object. Since all other classes automatically extend Object, poly- morphism is being used here. Abstract classes also naturally involve polymorphism. If you want to utilize the features of such a class, you must extend it. Note that, in a well-designed system in which the guideline Code to interfaces has been followed, as many variables and parameters as possible will have an inter- face type instead of a class type, thus reducing the need for subclassing. But it is not always possible or appopriate to use interfaces everywhere. For example, the Java Swing package, discussed in the next part of this book, is a GUI framework in which much of the difficult work of dealing with buttons, windows, and menus has been implemented for you in several packages. Many of the classes in those packages extend other classes in the packages to give them needed functionality and to make it as easy as possible for the user to build a system from the provided components. Costs of Inheritance By now, you are hopefully realizing that inheritance, as wonderful as it may have first sounded, should not be used with abandon if you want a well-designed system. There are other costs to be considered when using inheritance, as well. One problem with inheritance, especially a deep inheritance tree with many gener- ations, is that the code for a method of a class low in the tree may be spread out among all its ancestors higher in the tree, which makes it harder for the reader of the code to follow the flow of execution. For example, suppose someone is reading code and sees that a method getName( ) is invoked on an object. If the object’s class does not implement getName( ), then, in order to find the implementation of that method, the reader needs to look to the object’s immediate superclass. If that class does not imple- ment getName( ), then a further search up the inheritance hierarchy needs to be made. To complicate matters, getName( ) may invoke another method getPerson( ) on the same object. There need be little relationship between the locations of getName( ) and getPerson( ) in the inheritance tree, and so the reader again needs to start at the object’s class and search up the inheritance tree to find the implementation of getPerson( ). Matters are even worse if the reader is not sure of the object’s class and knows only that the object belongs to one of a number of subclasses of a given class. In such cases, it is extremely hard, if not impossible, to figure out exactly which method body of which class gets executed at any given time. Another problem with inheritance is that all subclasses are very tightly tied with their superclasses. This coupling comes from the fact that, to guarantee certain Java programming 601 behavior in a subclass, that subclass needs to know significant parts of the implemen- tation of the methods of the superclasses. However, the details of this problem are beyond the scope of this text. Because of these costs and for all the other reasons mentioned in this section, a software designer should always carefully consider all the options when deciding on the relationships among classes. For example, sometimes two classes should be asso- ciated via a common interface, sometimes they should be connected by an association such as delegation, and sometimes inheritance is best. Try ThiS 16-1 A Pure Queue Implemented Using Delegation PureQueue.java PureQueueDemo.java This project demonstrates how to use delegation instead of inheritance to imple- ment a pure queue. As you know from earlier in this book, a stack is a list in which elements can be accessed in last-in, first-out (LIFO) order only. A queue is a similar data struc- ture except that its elements can be accessed in first-in, first-out (FIFO) order only. Queues are used in a multitude of places, including check-in lines at airline coun- ters and check-out lines at supermarkets. Queues are used in computers in a variety of ways, such as managing processes. If there are several processes vying for one CPU, then they are lined up in a queue. The operation of adding an element to the end of the queue is traditionally called enqueue, and the operation of removing and obtaining the element at the head of the queue is called dequeue. Suppose we are working in an industrial setting and we need a queue. Furthermore, we want the queue to be “pure;” that is, it must support only the queue operations just described. This will prevent the elements in the queue from being accessed out of order. In our pure queue, we want these methods to be called enqueue( ) and dequeue( ). We also want our queue to have a size( ) method that returns the number of elements in the queue and a peek( ) method that obtains the element at the head of the queue but does not remove it from the queue. For convenience, an override of toString( ) is also desired. How can we create such a queue? There are at least three ways to proceed. One way is to implement a PureQueue class “from scratch,” for example, using an array to hold the data, similar to the way that SimpleStack was implemented in several Try This examples in earlier chapters. For educational reasons, it was valuable to create such a stack class because it demonstrated several key aspects of Java. However, an important tenet in software development in the real world is Don’t reinvent the wheel. In other words, if there is a class that already does what you want, don’t create a new class to do it. Instead, reuse the existing class. It turns out that there is already an ArrayDeque class in the Java library in the java.util package that does everything we want our PureQueue class to do and more. Following the tenet mentioned above, it makes more sense to use that class instead of implementing our PureQueue class from scratch. 602 chapter 16 Introduction to Object-Oriented Design Therefore, a second way to proceed is to create a PureQueue class that inherits from java.util.ArrayDeque. However, the ArrayDeque class is not a pure FIFO queue. For example, it has methods such as push( ) and pop( ) that allow it to be used like a stack. If PureQueue were a subclass of java.util.ArrayDeque, then PureQueue would inherit more than just the desired five methods. Furthermore, the ArrayDeque class calls the enqueue and dequeue methods "offer" and "poll", which are not the names we want to use. A third alternative is to use delegation. That is, create a PureQueue class that maintains a reference to an ArrayDeque from the java.util package. In this way, the PureQueue class can have only the desired set of methods, but it will imple- ment those methods by delegating all the work to the ArrayDeque class that it references. We will use this third approach in this project. STEP-BY-STEP 1. Create a file called PureQueue.java and type in the following code: import java.util.ArrayDeque; class PureQueue {
private ArrayDeque data;
PureQueue() {
data = new ArrayDeque();
}
void enqueue(E o) { data.offer(o); } E dequeue() { return data.poll(); } E peek() { return data.peek(); }
int size() { return data.size(); }
public String toString() { return data.toString();
} }
Notice how the class has an instance variable data of type java.util.ArrayDeque. Notice also how easy it is to implement all of the methods. All the real work is being done by the data object. By using delegation in this way, we have created a class with only the methods we want and we can implement those methods very easily.
2. To test this class, create a file called PureQueueDemo.java and type in the following code:
class PureQueueDemo {

Java programming 603
public static void main(String[] args) { PureQueue q = new PureQueue(); System.out.println(q);
q.enqueue(“3”);
q.enqueue(“abc”); System.out.println(q); q.dequeue(); System.out.println(q);
} }
3. Now compile both files and run the PureQueueDemo class’s main( ) method. You should see the following output:
[]
[3, abc] [abc]
progress Check
1. What does the principle of least astonishment say?
2. If A and B are classes and if a method has a parameter of type A and if you can
use an object of type B as the argument for the method, then B must extend A.
True or False?
3. An alternative to inheritance that one should always consider is ______________.
DeSIgn patternS
We have now discussed the advantages and disadvantages of many software designs, and we have shown some guidelines and rules to follow that can help you develop good designs. In this section, we introduce more tools to help you create good software designs. These tools, which can be thought of as some of the software industry’s best practices for solving problems within certain constraints, are called design patterns. The cataloging and organization of these patterns has been going on since the late 1980s. Names were given to these patterns so that software developers would have a vocabu- lary for talking about designs at a higher level of abstraction than would otherwise be possible. For example, designers on teams can now say things like “Let’s use the Decorator pattern here to handle all the options.”
Answers:
1. If a client thinks she has a reference to an object of type A but actually has a reference to an object of subtype B, there should be no surprises when she invokes methods on the object.
2. True.
3. delegation

604 chapter 16 Introduction to Object-Oriented Design
In this section, we will introduce two of the simplest design patterns so that you
can get a feeling for what design patterns are.
adapter pattern
One of the simplest, but very useful, patterns is the Adapter pattern. A non-software- related example of the Adapter pattern will be given first. In the United States, the electri- cal plugs for most appliances have two flat prongs and an optional third round prong that fit into standard American electrical outlets. However, in other countries, the outlets are designed for appliances with plugs that have two or three round prongs or flat prongs ori- ented in different directions or in different positions relative to each other. The voltage and frequency of the electrical current may also differ in other countries. In those countries, the electrical interface does not match the interface for American appliances. So how can you use American appliances abroad? The solution is to purchase adapter plugs, with slots on one side, into which American appliances fit, and prongs on the other side that fit into the other country’s outlets. In other words, the solution is not to change the appliances or the outlets but instead create an adapter that allows the appliances to use the outlets. Let us now see how this pattern naturally appears in software design.
Suppose you are working on a team that built a large front end (for example, a web interface) for one of your company’s main applications. The back end of the application is another large system that contains all the data (maybe in a database) and contains the tools and methods for fetching and for manipulating that data. The front end was designed to use the interface of the back end; that is, it was designed to call the methods of the back end to get and manipulate the back end data.
Now suppose another company likes your front end so much that they want to use it with their back end. But what if the other company’s back end has a different interface than the back end for which your front end was designed? That is, suppose the other company’s back end has a completely different set of methods for fetching and manipu- lating the data in the back end. What is the other company to do to get your front end working with their back end? The problem that you have is incompatible interfaces, and so your front end cannot communicate with the other company’s back end.
One way for the other company to fix the problem would be to modify the front end so that it uses the interface of their back end. Alternatively, they could fix the problem by modifying their back end to use the interface expected by your front end. A third way would be to make some of the changes in your front end and some in their back end. However, you are asking for new bugs if you change the existing working code. How can the other company get your front end and their back end to communi- cate with the minimum changes to existing code?
An elegant way is to provide a new class to act as an “adapter” to adapt one inter- face to another interface. Objects of this class sit between the front end and back end. The front end communicates with the adapter class instead of the back end, and the adapter communicates with the back end. More precisely, the adapter will provide the interface that the front end expects, but it will actually get the data from the back end and transform it into the data that the front end expects.
The use of an adapter class, as in this example, to adapt an existing class to a dif- ferent interface is what is meant by the Adapter pattern.

Java programming 605 To show an example of such an adapter class, let’s move away from large front
ends and back ends. Instead, let’s consider the following simple interface and classes:
class Printer {
void printRect(RectI r) {
System.out.println(r.getWidth() + “, ” + r.getHeight()); }
}
interface RectI { int getWidth(); int getHeight();
}
class SimpleRect implements RectI { int width, height;
SimpleRect(int w, int h) { width = w; height = h;
}
public int getWidth() { return width; }
public int getHeight() { return height; } }
class NonConformingRect {
int top, left, bottom, right;
NonConformingRect(int a, int b, int c, int d) { top = a; left = b; bottom = c; right = d;
}
public int getTop() { return top; } public int getLeft() { return left; } public int getBottom() { return bottom; } public int getRight() { return right; }
}
The Printer class is our “front end.” Its printRect( ) method receives, as its argument, an object that implements the RectI interface. The SimpleRect class implements that interface, and so objects of that class can be passed as arguments to the printRect( ) method. The SimpleRect class is our “back end.”
Now suppose we want to pass NonConformingRect objects to printRect( ). This class does not implement the interface RectI, so instances cannot be passed as the argument to printRect( ). To be able to pass in NonConformingRects, you could change the Printer class or the RectI interface, but changing existing, working code is not the way to handle this situation. Instead, we will use the following adapter class:
class RectAdapter implements RectI { NonConformingRect ncRect;

606 chapter 16 Introduction to Object-Oriented Design
RectAdapter(NonConformingRect r) { ncRect = r;
}
public int getWidth() { return ncRect.getRight() – ncRect.getLeft(); }
public int getHeight() { return ncRect.getBottom() – ncRect.getTop(); } }
Notice that this class implements the RectI interface and so can be passed to printRect( ). Also note that it gets its data from a NonConformingRect.
When you use this adapter class, no changes need to be made to existing classes. Here is a complete program that demonstrates all these classes in action:
class Printer {
void printRect(RectI r) {
System.out.println(r.getWidth() + “, ” + r.getHeight()); }
}
interface RectI { int getWidth(); int getHeight();
}
class SimpleRect implements RectI { int width, height;
SimpleRect(int w, int h) { width = w; height = h;
}
public int getWidth() { return width; }
public int getHeight() { return height; } }
class NonConformingRect {
int top, left, bottom, right;
NonConformingRect(int a, int b, int c, int d) { top = a; left = b; bottom = c; right = d;
}
public int getTop() { return top; } public int getLeft() { return left; } public int getBottom() { return bottom; } public int getRight() { return right; }
}
class RectAdapter implements RectI { NonConformingRect ncRect;

RectAdapter(NonConformingRect r) { ncRect = r;
}
public int getWidth() { return ncRect.getRight() – ncRect.getLeft(); }
public int getHeight() { return ncRect.getBottom() – ncRect.getTop(); } }
class AdapterDemo {
public static void main(String[] args) {
Printer prntr = new Printer();
prntr.printRect(new SimpleRect(3,4));
prntr.printRect(new RectAdapter(new NonConformingRect(1,2,3,4)));
} }
Notice how, in the main class, the NonConformingRect object is wrapped inside a RectAdapter object before being passed to the printRect( ) method. When this pro- gram is run, you get the following output:
3, 4 2, 2
Observer pattern
Consider a program that a bank might use to keep track of savings accounts. Suppose that it has the following SavingsAccount class for storing information about one account.
class SavingsAccount {
private String owner;
private int acctNumber;
private int balance; // in US dollars
SavingsAccount(String o, int a) { owner = o;
acctNumber = a;
balance = 0;
}
// positive amount means deposit
// negative amount means withdrawal void changeBalance(int amount) {
balance += amount; }
int getBalance() { return balance; }
int getAcctNumber() { return acctNumber; } String getOwner() { return owner; }
Java programming 607
}

608 chapter 16 Introduction to Object-Oriented Design
Suppose also that many places access each savings account, such as ATMs, the vari- ous branches of the bank, and retail stores that accept a debit card on the account.
Now suppose that the bank decides to institute a new safety feature that flags all withdrawals over $1,000 so that the bank can check for fraud. How can such a feature be implemented?
One way would be to modify the code in all the places where transactions take place so that they flag large withdrawals. This approach requires far too many changes to existing code. A better way would be for the SavingsAccount class to handle the flagging. All we would need to do is modify the changeBalance( ) method to test for large withdrawals and, if found, check for fraud. Under such a design, the class could use the following implementation of the changeBalance( ) method:
void changeBalance(int amount) { balance += amount;
if(amount < -1000) checkForFraud(amount); } void checkForFraud(int amount) { System.out.println("Checking for fraudulent " + "withdrawal of amount: " + amount); } Note that a change needed to be made to only one class because the SavingsAccount class handles the fraud using its checkForFraud( ) method. However, this version is not ideal because now the savings account is no longer cohesive. It both stores account information and checks for fraud. Instead, a separate FraudHandler class should handle checking for fraud: class FraudHandler { void checkForFraud(int amount, SavingsAccount acct) { System.out.println("Checking for fraudulent withdrawal" + " of amount: " + amount + " from" + " account " + acct.getAcctNumber()); } } Using this new class, the method changeBalance( ) looks like this: void changeBalance(int amount) { balance += amount; if(amount < -1000) fraudHandler.checkForFraud(amount, this); } In this version, the SavingsAccount class has an instance variable fraudHandler of type FraudHandler to which it delegates all fraud handling. Now the savings account is more cohesive. It is a bit inelegant for the savings account to have to maintain a refer- ence to a fraud handler, since we would like to minimize coupling between classes, but we could live with this situation. Note that this division of labor has another advantage. The FraudHandler class can be reused if the bank wants to check other kinds of accounts for fraud. Java programming 609 However, suppose now that the bank decides to make more money by charging customers a fee every time they withdraw money from their savings account (after all, they are not saving much if they are always withdrawing money, right?). How can this new feature be implemented? As before, we could modify the code in all the locations where transactions occur, but that involves changing too much code. Also, as before, we could have the sav- ings account charge the fee, but, as before, that will reduce the cohesiveness of the SavingsAccount class by having it handle fees in addition to maintaining the account. A better solution would be to have a separate reusable FeeHandler class handle the fee, just as the FraudHandler deals with fraud. If the SavingsAccount class has an instance variable feeHandler of type FeeHandler, then the changeBalance( ) method can be rewritten like this: void changeBalance(int amount) { balance += amount; if(amount < -1000) fraudHandler.checkForFraud(amount, this); if(amount < 0) feeHandler.handleWithdrawalFee(this); } This design nicely separates the responsibilities among various classes. However, the SavingsAccount class is now a bit more inelegant by having a reference to a fee handler. But now, what if other actions need to be added, for example, a rewards program for people who maintain a balance of at least $10,000 every month, or an overdraft fee if the balance becomes less than 0? If we implement these new features in a similar way to the fraud detection and withdrawal fee features, our SavingsAccount class will have to be changed again and will be even more coupled to other classes. In addition, suppose the bank decides that $1,000 is not the appropriate limit for checking for fraud. In that case, the SavingsAccount class will need to be changed yet again. What can we do to minimize both the code changes and the coupling? Let’s summarize the situation. The SavingsAccount class needs to notify other classes when a special event occurs, namely, an amount being withdrawn or depos- ited. How can it do so without being tightly coupled to those classes? Our solution is to use the Observer pattern. In this design pattern, there are observ- ers, and there are subjects to be observed. The subjects are also called “publishers” or “broadcasters,” and the observers are also called “subscribers” or “listeners.” The publishers maintain a list of subscribers, and, whenever there is something to publish, they notify all the subscribers. In this pattern, a publisher can have any number of subscribers. (For an object to become a subscriber, it needs to ask the publisher to add it to the publisher’s subscription list.) In our example, the savings account is the publisher and the fraud and fee han- dlers are the subscribers. To use the Observer pattern here, the publisher (the savings account) needs to maintain a list of subscribers and notify them whenever the balance changes. It could maintain a list of subscribers using an array, for example. But what type should the array be? The answer is to use an interface. That is, define a new BalanceChangeHandler interface: 610 chapter 16 Introduction to Object-Oriented Design interface BalanceChangeHandler { void balanceChanged(int change, SavingsAccount acct); } and then add a new instance variable to the SavingsAccount class that refers to an array of BalanceChangeHandlers. All the handlers, such as the fee and fraud-detection handlers, need to implement this interface and then register with the savings account. By registering, they get added to the array of subscribers. Then, whenever the balance changes, the savings account will notify all registered subscribers by calling their balanceChanged( ) methods. In those methods, they can handle the change any way they want. Here is the complete code, including a short demonstration program to test the classes. class SavingsAccount { String owner; int acctNumber; int balance; // in US dollars BalanceChangeHandler[] subscribers; int numSubscribers; SavingsAccount(String o, int a) { owner = o; acctNumber = a; balance = 0; subscribers = new BalanceChangeHandler[20]; // At most 20 subscribers are allowed numSubscribers = 0; } void addHandler(BalanceChangeHandler h) { if(numSubscribers < 20) { subscribers[numSubscribers] = h; numSubscribers++; } } // positive amount means deposit // negative amount means withdrawal void changeBalance(int amount) { if(amount != 0) { // Change the balance balance += amount; // Notify all subscribers of the change for(int i = 0; i < numSubscribers; i++) subscribers[i].balanceChanged(amount, this); } } int getBalance() { return balance; } int getAcctNumber() { return acctNumber; } String getOwner() { return owner; } } class FeeHandler implements BalanceChangeHandler { public void balanceChanged(int change, SavingsAccount acct) { System.out.println("Deducting a fee from account " + acct.getAcctNumber()); } } class FraudHandler implements BalanceChangeHandler { public void balanceChanged(int change, SavingsAccount acct) { System.out.println("Checking for fraudulent withdrawal" + " of amount: " + change + " from" + " account " + acct.getAcctNumber()); } } interface BalanceChangeHandler { void balanceChanged(int change, SavingsAccount acct); } class SavingsAccountDemo { public static void main(String[] args) { SavingsAccount acct = new SavingsAccount("Sam", 1234); FeeHandler feeHandler = new FeeHandler(); FraudHandler fraudHandler = new FraudHandler(); acct.addHandler(feeHandler); acct.addHandler(fraudHandler); acct.changeBalance(0); // nothing happens acct.changeBalance(10); acct.changeBalance(-10); } } When the demo program is run, the following output appears: Deducting a fee from account 1234 Checking for fraudulent withdrawal of amount: 10 from account 1234 Deducting a fee from account 1234 Checking for fraudulent withdrawal of amount: -10 from account 1234 Let us summarize all the advantages of using the Observer pattern. First, you can register many different handlers with the savings account without having to change the code of the SavingsAccount class. Second, the coupling is minimized between Java programming 611 612 chapter 16 Introduction to Object-Oriented Design the savings account and the handlers. That is, the savings account need know noth- ing about the handlers other than that they implement the BalanceChangeHandler interface, which allows the account to call the handlers’ balanceChanged( ) methods. It should be mentioned that the java.util package provides a framework that sup- ports the Observer pattern. This framework is discussed in Chapter 24. These two patterns (the Adapter and Observer) are just samples of the dozens of design patterns that provide best-practice solutions to common software problems. As you learn more about software development, you will want to learn more about these other patterns so that you can become conversant in the design pattern language. 1. The software industry’s best practices for solving problems with certain con- straints are called _____________. 2. The use of a class to adapt an existing class to a different interface is the ____________ pattern. 3. In the Observer pattern, there are two kinds of classes involved: the publishers and ___________. exerCISeS 1. For methods, classes, and variables, you should use _______________ names. 2. All the principles discussed in this chapter are iron-clad rules that must be followed in order to have elegant software. True or False? 3. A good programmer writes self-documenting code and so never needs to add internal comments. True or False? 4. It is generally better to put all the important methods in one class and make most of the other classes simple servant classes. True or False? 5. Out-of-date documentation is better than no documentation at all. True or False? 6. A method with method chaining of the form a.getB( ).getC( ).getD( ). doSomething( ) does not obey ______________. 7. Suppose you have a Person class with instance variables containing the per- son’s name, birth date, address, spouse, children, and occupation. According to the Expert pattern, this class should have methods that handle any manipu- lations of this data that are needed by other classes. However, an unlimited Answers: 1. design patterns 2. Adapter 3. the subscribers progress Check Java programming 613 number of manipulations of a Person object can be performed. What is the correct number of methods that the Person class should have? 8. A class typically has both instance variables and methods. Consider the two extreme cases: a class A that has several instance variables but no methods and a class B that has several methods but no instance variables. Which one of the principles discussed in this chapter is most likely violated by such classes? 9. When you are trying to reach an executive in a company, you have at least three choices: A. Call and be put on hold until the executive is free. B. Keep calling back every few minutes until the executive is free. C. Leave a message asking the executive to call you back when she is free. Which one of these choices corresponds most closely to the Observer pattern? 10. What is one flaw in the following class that makes it inelegant? class NamedObject { private String name; NamedObject(String n) { name = n; } void setName(String n) { name = n; } } 11. Consider the following method in a class B. Assume that class A has meth- ods load( ), sort( ), store( ). void loadSortAndStore(A a) { a.load(); a.sort(); a.store(); } Is this method elegant? Why or why not? If not, explain what should be done to make it elegant. 12. If a class has an integer instance variable x, is it better to make x publicly accessible so that other objects can read and write it, or to make x private and add a getX( ) and a setX( ) method for reading and writing x? 13. Suppose you have Person objects and Location objects and you need to keep track of the place of birth of each Person. There are at least three ways to organize this information: A. Each Person object has an instance variable of type Location that stores the place of birth. B. Each Location keeps a collection of references to Person objects corre- sponding to the people born at that location. C. A third object keeps a table of Person objects and their place-of-birth Location objects. Discuss the advantages and disadvantages of each of these three designs. 14. To implement a Rectangle class that stores its position and size, you could use four integer instance variables x, y, width, and height where (x,y) is the 614 chapter 16 Introduction to Object-Oriented Design top left corner of the rectangle, or you could use eight variables x1, y1, x2, y2, x3, y3, x4, and y4, that store the (x,y) coordinates of the four corners of the rectangle. Which of these two implementations is better and why? 15. Suppose you are writing a method getChildren( ) in a Person class that returns an array of Persons. Then, among other things, you need to deal with the case where the person on whom the method is invoked has no children. What should your method return in that case? Should it return null or an array of length 0? 16. A class designer is designing a Person class that he wants to be as popular and as reusable as the String class, and so he is attempting to maximize the reusability through the addition of as many methods as he can think of. The constructor and methods he has added are listed below. Which of the meth- ods should not be included in a well-designed Person class? A. Person(int birthDate, String name, String address) // constructor B. String getName( ) C. void setName(String name) D. String toString( ) // returns the name of the person E. int getSSN( ) // returns the person’s Social Security Number F. String getSSNAsString( ) // returns the SSN as a String G. Person[ ] siblings( ) // returns an array of the siblings of the person H. Race getRace( ) I. Person getBoss( ) // returns the person who is employing this person J. boolean isDogOwner( ) K. boolean isUSCitizen( ) L. String getAddress( ) M. int numberOfCarsOwned( ) N. int getBirthdate( ) O. void setBirthdate(int date) 17. Suppose you were told to implement a class whose objects need to store 20 pieces of data and the data are of several types. Some people might argue that you should store each piece of data in a separate instance variable. Oth- ers might argue that it is ludicrous to have one instance variable for each piece of data, and so it would be better to store all the data in one instance variable, such as an array data of type Object. For example, a Person object could store the person’s first name in location data[0], the last name in data[1], the address in data[2], the age in data[3], and so on. Give your opinion on these two approaches. Discuss the approach you would use. 18. Come up with a non-software-related example of the Adapter pattern other than the example of electrical outlets mentioned in this chapter. 19. Consider the classes ParttimeEmployee and FulltimeEmployee. A part- time employee has fewer benefits than a full-time employee, and so the FulltimeEmployee class needs more fields than ParttimeEmployee. Therefore, to avoid duplication, it would seem to make sense to make Java programming 615 FullTimeEmployee a subclass of ParttimeEmployee so that it can inherit the superclass’s instance variables. Is this approach elegant? 20. Tell what is inelegant about the following class. Hint: It relates to class invariants. /* Objects of this class store a random double between 0 and 1.*/ public class RandomDoubleStore { double value = 0.0; public RandomDoubleStore() { } public void initialize() { value = Math.random(); } } 21. The text mentioned that every method should return a value or modify the state of one or more objects, but not both. It also mentioned that the tradi- tional pop( ) method for a stack does not follow this convention since it both removes the top value from the stack and returns it. If you were forced to change a stack’s implementation of pop( ) so that it followed the convention, what is the simplest way to do so? 22. Suppose a Person object has a getHeight( ) method that returns the person’s height. Consider the following method: int getAverageHeight(Person p1, Person p2, Person p3) { int p1Height = p1.getHeight(); int p2Height = p2.getHeight(); int p3Height = p3.getHeight(); return (p1Height + p2Height + p3Height) / 3; } As you can see, it computes and returns the average height of the three people. Why isn’t this method very elegant? Suggest a change to make it more elegant. 23. Suppose there is a Nameable interface defining one method: interface Nameable { String getName(); } and suppose there is a class Person that implements the Nameable interface. Finally, suppose, in another class, there is the following method: String nameOf(Person p) { return p.getName(); } What is a simple way to make the nameOf( ) method more useful? 616 chapter 16 Introduction to Object-Oriented Design 24. Suppose a person needs to model the concept of balloons, and so, wishing to use inheritance to make an elegant design, the person creates a RubberObject class and a Balloon subclass. Can you see any problems with this design? 25. A person might say that “Fluffy is a cat” and “A cat is a mammal,” and there- fore Fluffy should be a subclass of Cat and Cat should be a subclass of Mammal, because we have two is-a relationships. What is wrong with this reasoning? 26. Suppose a NamedObject class has a constructor that takes, as its only param- eter, a string that is the initial name of the object. It also has a setName( ) method that takes a string as its parameter for changing the name of the object, and a getName( ) method that returns the name. Now suppose you want to create an ImmutableNamedObject class whose initial name can- not be changed. One way to implement such a class is to make it a subclass of NamedObject and, in the subclass, override the setName( ) method so that it does nothing. What do you think of the elegance of this approach? 27. Suppose a class RentalCarCompany has three integer instance variables, numInUse, numAvail, and total, that refer to the number of cars that are currently being rented, the number currently available to be rented, and the total number of cars (the sum of the other two amounts). A. Why is this class not elegant? B. Suppose it has the following method for updating the number of cars, for example, when some cars are wrecked, bought, or sold: void updateNumCars(int newInUse, int newAvail, int newTotal) { numInUse = newInUse; numAvail = newAvail; total = newTotal; } What is inelegant about this method? 28. There are two ways that information can be transferred from a source to a destination. In the pull model, the destination goes to the source and gets the information (the destination “pulls” the information from the source to itself). In the push model, the source sends the information to the destination (the source “pushes” the information from itself to the destination). Which model most closely corresponds to the Observer pattern? Part two Introducing GUI Programming with Swing Part Two introduces the Swing toolkit. Swing is Java’s modern approach to creating graphical user interfaces (GUIs). Part Two begins by presenting the Swing design philosophy and several core concepts. Subsequent chapters explore several Swing controls, the menu system, painting, and the creation of Swing-based applets. Note: A full description of the Swing classes, interfaces, and methods is found in the JDK documentation, which is available on-line, from Oracle. ChaPter Swing Fundamentals key skills & concepts j Know the origins of Swing j Understand the importance of lightweight components and a pluggable look and feel j Understand the MVC architecture j Gain an overview of Swing components and containers j Create, compile, and run a simple Swing application j Know the fundamentals of event handling j Understand the role of layout managers j Use the JButton component j Use the JTextField component With the exception of the applet examples shown in Chapter 15, all of the programs in Part One have been console-based. This means that they do not make use of a graphi- cal user interface (GUI). While console-based programs are excellent for teaching the basics of Java, many real-world applications will be GUI-based. Therefore, this and the next four chapters explore Java’s modern GUI toolkit: Swing. Swing is a collection of classes and interfaces that offer a rich set of visual com- ponents, such as push buttons, text fields, scroll bars, check boxes, trees, tables, and menus, that can be tailored to fit nearly any need. By using Swing, your application will have a modern user interface based on GUI controls. This means that you can create programs that look like and act like other GUI applications with which you are familiar. The purpose of this chapter is to introduce Swing, including its history, basic concepts, design philosophy, and core features. As you will see, Swing is comprised of many interrelated elements. This interrelatedness makes Swing a powerful, yet streamlined, framework. It also makes it important to understand how these elements work together. This chapter also introduces an important Java feature: the event. Among other uses, the event is the mechanism by which your program is notified 619 17 620 chapter 17 Swing Fundamentals about user interactions. The chapter ends by introducing two common Swing con- trols, the button and the text field, and using them to demonstrate the core elements of Swing programming. the orIGInS and deSIGn PhIloSoPhy oF SwInG Swing did not exist in the early days of Java. Rather, it was a response to deficiencies present in Java’s original GUI subsystem: the Abstract Window Toolkit (AWT). The AWT defines a basic set of components that support a usable, but limited, graphical interface. One reason for the limited nature of the AWT is that its components rely on platform-specific native windows, or peers. Because of this they are referred to as heavyweight. The use of native peers led to several problems. First, because of differences between operating systems, a component might look, or even act, differently on dif- ferent platforms. Second, the look and feel of each component was fixed (because it is defined by the platform) and could not be (easily) changed. Third, the use of heavy- weight components caused some frustrating restrictions. For example, a heavyweight component is always opaque. Not long after Java’s original release, it became apparent that the limitations and restrictions present in the AWT were sufficiently serious that a better approach was needed. The solution was Swing. Introduced in 1997, Swing was included as part of the Java Foundation Classes (JFC). Swing was initially available for use with Java 1.1 as a separate library. However, beginning with Java 1.2, Swing (and the rest of JFC) was fully integrated into the Java library. Swing addresses the limitations associated with the AWT’s components through the use of two key features: lightweight components and a pluggable look and feel. Although these two features are largely transparent to the programmer, they are at the foundation of Swing’s design philosophy and the reason for much of its power and flexibility. Let’s look at each. With very few exceptions, Swing components are lightweight. This means that a component is written entirely in Java. Instead of having its own native peer, it uses the window provided by a heavyweight ancestor. Lightweight components have some important advantages, including efficiency and flexibility. For example, a lightweight component can be transparent, which enables nonrectangular shapes. Furthermore, because lightweight components do not translate into platform-specific peers, the look and feel of each component is determined by Swing. This means that each component can work in a consistent manner across all platforms. Because each Swing component is rendered by Java code rather than by platform- specific peers, it is possible to separate the look and feel of a component from the logic of the component, and this is what Swing does. Separating out the look and feel provides a significant advantage: it becomes possible to change the way that a component is rendered without affecting any of its other aspects. In other words, it is possible to “plug-in” a new look and feel for any given component without creating any side effects in the code that uses that component. Java Programming 621 Java provides look-and-feels, such as metal and Motif, that are available to all Swing users. The metal look and feel is also called the Java look and feel. It is a plat- form-independent look and feel that is available in all Java execution environments. It is also the default look and feel. For this reason, the examples in this book use the default Java look and feel (metal). Swing’s pluggable look-and-feel is made possible because Swing uses a modified version of a classic component architecture called Model-View-Controller (MVC). In MVC terminology, the model corresponds to the state information associated with the component. For example, in the case of a check box, the model contains a field that indicates if the box is checked or unchecked. The view determines how the compo- nent is displayed on the screen, including any aspects of the view that are affected by the current state of the model. The controller determines how the component reacts to the user. For example, when the user clicks on a check box, the controller reacts by changing the model to reflect the user’s choice (checked or unchecked). This then results in the view being updated. By separating a component into a model, a view, and a controller, the specific implementation of each can be changed without affect- ing the other two. For instance, different view implementations can render the same component in different ways without affecting the model or the controller. Although the MVC architecture and the principles behind it are conceptually sound, the high level of separation between the view and the controller was not ben- eficial for Swing components. Instead, Swing uses a modified version of MVC that combines the view and the controller into a single logical entity called the UI delegate. For this reason, Swing’s approach is called either the Model-Delegate architecture or the Separable Model architecture. Therefore, although Swing’s component architec- ture is based on MVC, it does not use a classical implementation of it. Although you won’t work directly with models or UI delegates in this book, they are, nevertheless, present behind the scene. In the course of this chapter, you will see that even though Swing embodies very sophisticated design concepts, it is easy to use. In fact, one could argue that Swing’s ease of use is its most important advantage. Simply stated, Swing makes manageable the often difficult task of developing a program’s user interface. This lets you concen- trate on the GUI, itself, rather than on implementation details. ask the expert Q You say that Swing defines the look and feel of the modern Java GUI. Does this mean that Swing replaces the AWT? A No, Swing does not replace the AWT. Rather, Swing builds on the foundation provided by the AWT. Thus, the AWT is still a crucial part of Java. Swing also uses the same event handling mechanism as the AWT. Although detailed knowledge of the AWT is not required to use Swing, those parts of the AWT required by Swing are described as needed throughout Part Two. 622 chapter 17 Swing Fundamentals Progress Check 1. A lightweight component is written in highly optimized machine code. True or False? 2. What feature enables the look and feel of a Swing component to be changed? 3. Does Swing use a standard implementation of the MVC architecture? ComPonentS and ContaInerS A Swing GUI consists of two key items: components and containers. However, this distinction is mostly conceptual because all containers are also components. The dif- ference between the two is found in their intended purpose: As the term is commonly used, a component is an independent visual control, such as a push button or slider. A container holds a group of components. Thus, a container is a special type of com- ponent that is designed to hold other components. All Swing GUIs will have at least one container. Because containers are components, a container can also hold other containers. This enables Swing to define what is called a containment hierarchy, at the top of which must be a top-level container. Let’s look a bit more closely at components and containers. Components In general, Swing components are derived from the JComponent class. (The only exceptions to this are the four top-level containers, described in the next section.) JComponent provides the functionality that is common to all components. For example, JComponent supports the pluggable look and feel. JComponent inherits the AWT classes Container and Component. Thus, a Swing component is built on and compatible with an AWT component. All of Swing’s components are represented by classes defined within the package javax.swing. Here are the ones defined by Swing components (including those used as containers) at the time of this writing. Answers: 1. False. 2. Pluggable look and feel 3. No, Swing uses a modified approach called Model-Delegate or Separable Model. Java Programming 623 JApplet JButton JCheckBox JCheckBoxMenuItem JColorChooser JComboBox JComponent JDesktopPane JDialog JEditorPane JFileChooser JFormattedTextField JFrame JInternalFrame JLabel JLayer JLayeredPane JList JMenu JMenuBar JMenuItem JOptionPane JPanel JPasswordField JPopupMenu JProgressBar JRadioButton JRadioButtonMenuItem JRootPane JScrollBar JScrollPane JSeparator JSlider JSpinner JSplitPane JTabbedPane JTable JTextArea JTextField JTextPane JTogglebutton JToolBar JToolTip JTree JViewport JWindow Notice that all component classes begin with the letter J. For example, the class for a label is JLabel, the class for a push button is JButton, and the class for a scroll bar is JScrollBar. Several of these are examined in this part of the book. Containers Swing defines two types of containers. The first are top-level containers: JFrame, JApplet, JWindow, and JDialog. These containers do not inherit JComponent. They do, however, inherit the AWT classes Component and Container. Unlike Swing’s other components, which are lightweight, the top-level containers are heavyweight. This makes the top-level containers a special case in the Swing component library. As the name implies, a top-level container must be at top of a containment hierar- chy. A top-level container cannot be contained within any other container. Furthermore, every containment hierarchy must begin with a top-level container. The one commonly used for applications is JFrame. The one used for applets is JApplet. The second type of containers supported by Swing are lightweight contain- ers. Lightweight containers do inherit JComponent. Examples of lightweight containers are JPanel and JRootPane. Lightweight containers are often used to organize and manage groups of related components collectively because a light- weight container can be contained within another container. Thus, you can use lightweight containers to create subgroups of related controls that are contained within an outer container. the top-level Container Panes Each top-level container defines a set of panes. At the top of the hierarchy is an instance of JRootPane. JRootPane is a lightweight container whose purpose is to manage the other panes. It also helps manage the optional menu bar. The panes that compose the root pane are called the glass pane, the content pane, and the layered pane. 624 chapter 17 Swing Fundamentals The glass pane is the top-level pane. It sits above and completely covers all other panes. The glass pane enables you to manage mouse events that affect the entire con- tainer (rather than an individual control) or to paint over any other component, for example. In most cases, you won’t need to use the glass pane directly. The layered pane allows components to be given a depth value. This value determines which com- ponent overlays another. (Thus, the layered pane lets you specify a Z-order (depth) for a component, although this is not something that you will usually need to do.) The layered pane holds the content pane and the (optional) menu bar. Although the glass pane and the layered panes are integral to the operation of a top-level container and serve important purposes, much of what they provide occurs behind the scene. We won’t be using them directly. The pane with which your application will interact the most is the content pane, because this is the pane to which you will add visual components. In other words, when you add a component, such as a button, to a top-level container, you will add it to the content pane. Therefore, the content pane holds the components that the user interacts with. 1. All Swing components must be stored in a ____________. 2. With only a few exceptions, Swing components are derived from JComponent. True or False? 3. In addition to the root pane, what other panes do all top-level containers have? 4. The top-level containers are a special case because they are heavyweight rather than lightweight components. True or False? layoUt manaGerS Before you can begin writing a Swing program, there is one more thing that you need to be aware of: the layout manager. The layout manager controls the position of com- ponents within a container. In other words, a layout manager determines the location of controls within a container. Java offers several layout managers. Many are provided by the AWT (within java.awt), and Swing adds some of its own. All layout managers are instances of a class that implements the LayoutManager interface. (Some will also implement the LayoutManager2 interface.) Here are a few of the layout manag- ers available to the Swing programmer. Answers: 1. Container 2. True. 3. The glass pane, the content pane, and the layered pane 4. True. Progress Check Java Programming 625 FlowLayout A simple layout that positions components left-to-right, top-to-bottom. (Positions components right-to-left for some cultural settings.) BorderLayout Positions components within the center or the borders of the container. This is the default layout for a content pane. GridLayout Lays out components within a grid. GridBagLayout Lays out different size components within a flexible grid. BoxLayout Lays out components vertically or horizontally within a box. SpringLayout Lays out components subject to a set of constraints. This chapter uses only two layout managers—BorderLayout and FlowLayout. Both are very easy to use, and they are described here. Other layout managers are described as needed. BorderLayout is the default layout manager for the content pane. It implements a layout style that defines five locations to which a component can be added. The first is the center. The other four are the sides (i.e., borders), which are called north, south, east, and west. By default, when you add a component to the content pane, you are adding the component to the center. To add a component to one of the other regions, specify its name. Although a border layout is useful is some situations, often another, more flexible layout manager is needed. One of the simplest is FlowLayout. A flow layout lays out components one row at a time, top to bottom. When one row is full, layout advances to the next row. Although this scheme gives you little control over the placement of components, it is quite simple to use. However, be aware that if you resize the frame, the position of the components will change. a FIrSt SImPle SwInG ProGram Swing programs differ from the console-based programs shown earlier in this book. They also differ from the AWT-based applets shown in Chapter 15. Not only do Swing programs use the Swing component set to handle user interaction, they also have special requirements that relate to threading. The best way to understand the structure of a Swing program is to work through an example. There are two types of Java programs in which Swing is typically used. The first is a desktop application, and the second is the applet. This section shows how to create a Swing application. The creation of a Swing applet is described in Chapter 21. Although quite short, the following program shows one way to write a Swing application. In the process, it demonstrates several key features of Swing. It uses two Swing components: JFrame and JLabel. JFrame is the top-level container that is commonly used for Swing applications. JLabel is the Swing component that creates a label, which is a component that displays information. The label is Swing’s simplest component because it is passive. That is, a label does not respond to user input. It just displays output. The program uses a JFrame container to hold an instance of a JLabel. The label displays a short text message. 626 chapter 17 Swing Fundamentals // A simple Swing program. import javax.swing.*; Swing programs must import javax.swing. class SwingDemo { SwingDemo() { Create a top-level container. // Create a new JFrame container. JFrame jfrm = new JFrame("A Simple Swing Application"); // Give the frame an initial size. jfrm.setSize(275, 100); Set the container’s size. // Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Stop the program when the user clicks the close box. // Create a text-based label. JLabel jlab = new JLabel(" Swing defines the modern Java GUI."); // Add the label to the content pane. jfrm.add(jlab); Add the label to the content pane. // Display the frame. jfrm.setVisible(true); Make the frame visible. } public static void main(String[] args) { // Create the frame on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() { Create a JLabel. public void run() { new SwingDemo(); Create the GUI on the event dispatching thread. } }); } } Swing programs are compiled and run in the same way as other Java applications. Thus, to compile this program, you can use this command line: javac SwingDemo.java To run the program, use this command line: java SwingDemo When the program is run, it will produce the window shown in Figure 17-1. the First Swing example line by line Because the SwingDemo program illustrates several key Swing concepts, we will exam- ine it carefully, line by line. The program begins by importing the following package: import javax.swing.*; Java Programming 627 FIGUre 17-1 the window produced by the SwingDemo program. This javax.swing package contains the components and models defined by Swing. For example, it defines classes that implement labels, buttons, edit controls, and menus. This package will be included in all programs that use Swing. Next, the program declares the SwingDemo class and a constructor for that class. The constructor is where most of the action of the program occurs. It begins by creating a JFrame, using this line of code: JFrame jfrm = new JFrame("A Simple Swing Application."); This creates a container called jfrm that defines a rectangular window complete with a title bar; close, minimize, maximize, and restore buttons; and a system menu. Thus, it creates a standard, top-level window. The title of the window is passed to the constructor. Next, the window is sized using this statement: jfrm.setSize(275, 100); The setSize( ) method sets the dimensions of the window, which are specified in pix- els. Its general form is shown here: void setSize(int width, int height) In this example, the width of the window is set to 275 and the height is set to 100. By default, when a top-level window is closed (such as when the user clicks the close box), the window is removed from the screen, but the application is not termi- nated. While this default behavior is useful in some situations, it is not what is needed for many applications. Instead, you will often want the entire application to terminate when its top-level window is closed. There are a couple of ways to achieve this. The easiest way is to call setDefaultCloseOperation( ), as the program does: jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); After this call executes, closing the window causes the entire application to terminate. The general form of setDefaultCloseOperation( ) is shown here: void setDefaultCloseOperation(int what) The value passed in what determines what happens when the window is closed. There are several other options in addition to JFrame.EXIT_ON_CLOSE. They are shown here: DISPOSE_ON_CLOSE HIDE_ON_CLOSE DO_NOTHING_ON_CLOSE 628 chapter 17 Swing Fundamentals Their names reflect their actions. These constants are declared in WindowConstants, which is an interface declared in javax.swing that is implemented by JFrame. The next line of code creates a JLabel component: JLabel jlab = new JLabel(" Swing defines the modern Java GUI."); JLabel is the easiest-to-use Swing component because it does not accept user input. It simply displays information, which can consist of text, an icon, or a combination of the two. The label created by the program contains only text, which is passed to its constructor. The next line of code adds the label to the content pane of the frame: jfrm.add(jlab); As explained earlier, all top-level containers have a content pane in which components are stored. Thus, to add a component to a frame, you must add it to the frame’s content pane. This is accomplished by calling add( ) on the JFrame reference (jfrm in this case). The add( ) method has several versions. The general form of the one used by the program is shown here: Component add(Component comp) By default, the content pane associated with a JFrame uses a border layout. This version of add( ) adds the component (in this case, a label) to the center location. Other versions of add( ) enable you to specify one of the border regions. When a component is added to the center, its size is automatically adjusted to fit the size of the center. The last statement in the SwingDemo constructor causes the window to become visible. jfrm.setVisible(true); The setVisible( ) method has this general form: void setVisible(boolean flag) If flag is true, the window will be displayed. Otherwise, it will be hidden. By default, a JFrame is invisible, so setVisible(true) must be called to show it. Inside main( ), a SwingDemo object is created, which causes the window and the label to be displayed. Notice that the SwingDemo constructor is invoked using these lines of code: SwingUtilities.invokeLater(new Runnable() { public void run() { new SwingDemo(); } }); This sequence causes a SwingDemo object to be created on the event-dispatching thread rather than on the main thread of the application. Here’s why. In general, Swing programs are event-driven. For example, when a user interacts with a com- ponent, an event is generated. An event is passed to the application by calling an Java Programming 629 event handler defined by the application. However, the handler is executed on the event-dispatching thread provided by Swing and not on the main thread of the appli- cation. Thus, although event handlers are defined by your program, they are called on a thread that was not created by your program. To avoid problems (such as two different threads trying to update the same component at the same time), all Swing GUI components must be created and updated from the event-dispatching thread, not the main thread of the application. However, main( ) is executed on the main thread. Thus, it cannot directly instantiate a SwingDemo object. Instead, it must create a Runnable object that executes on the event-dispatching thread, and have this object create the GUI. To enable the GUI code to be created on the event-dispatching thread, you must use one of two methods that are defined by the SwingUtilities class. These methods are invokeLater( ) and invokeAndWait( ). They are shown here: static void invokeLater(Runnable obj) static void invokeAndWait(Runnable obj) throws InterruptedException, InvocationTargetException Here, obj is a Runnable object that will have its run( ) method called by the event- dispatching thread. The difference between the two methods is that invokeLater( ) returns immediately, but invokeAndWait( ) waits until obj.run( ) returns. You can use these methods to call a method that constructs the GUI for your Swing application, or whenever you need to modify the state of the GUI from code not executed by the event-dispatching thread. You will normally want to use invokeLater( ), as the pre- ceding program does. However, when constructing the initial GUI for a Swing applet, you will want to use invokeAndWait( ). Finally, notice the syntax that creates the new Runnable. This creates an anony- mous inner class that causes an unnamed Runnable object to be created. We will look more closely at anonymous inner classes later in this chapter. ask the expert QAWhat is the getContentPane( ) method, and do I need to use it? This question brings up an important historical point. Prior to JDK 5, when adding a component to the content pane, you could not invoke the add( ) method directly on a JFrame instance. Instead, you needed to explic- itly call add( ) on the content pane of the JFrame object. The content pane can be obtained by calling getContentPane( ) on a JFrame instance. The getContentPane( ) method is shown here: Container getContentPane( ) 630 chapter 17 Swing Fundamentals ask the expert (Continued) It returns a Container reference to the content pane. The add( ) method was then called on that reference to add a component to a content pane. Thus, in the past, you had to use the following statement to add jlab to jfrm: jfrm.getContentPane().add(jlab); // old-style Here, getContentPane( ) first obtains a reference to content pane, and then add( ) adds the component to the container linked to this pane. This same procedure was also required to invoke remove( ) to remove a component and setLayout( ) to set the layout manager for the content pane. You will see explicit calls to getContentPane( ) frequently throughout pre-5.0 code. Today, the use of getContentPane( ) is no longer necessary for these purposes. You can simply call add( ), remove( ), and setLayout( ) directly on JFrame because these methods have been changed so that they automati- cally operate on the content pane. Progress Check 1. What Swing class creates a label? 2. What package must be included in all Swing programs? 3. All code that creates or modifies the GUI must be executed on the ____________ thread. ask the expert Q Earlier, you stated that it is possible to add a component to the other regions of a border layout by using an overloaded version of add( ). Can you explain? A As explained, BorderLayout implements a layout style that defines five loca- tions to which a component can be added. The first is the center. The other four are the sides (i.e., borders), which are called north, south, east, and west. By default, when you add a component to the content pane, you are adding the com- ponent to the center. To specify one of the other locations, use this form of add( ): void add(Component comp, Object loc) Here, comp is the component to add and loc specifies the location to which it is added. The loc value can be one of the following: BorderLayout.CENTER BorderLayout.EAST BorderLayout.NORTH BorderLayout.SOUTH BorderLayout.WEST Answers: 1. JLabel 2. javax.swing 3. event-dispatching event handlInG The preceding example showed the basic form of a Swing program, but it left out one important part: event handling. Because JLabel does not take input from the user, it does not generate events, so no event handling was needed. However, the other Swing controls do respond to user input, and the events generated by those interactions need to be handled. For example, an event is generated when the user clicks a button, types a key on the keyboard, or selects an item from a list. Events are also generated in ways not directly related to user input. For example, an event is generated when a timer goes off. Whatever the case, event handling is a large part of any Swing-based application. The event handling mechanism used by Swing is based on an approach called the delegation event model. Its concept is quite simple. A source generates an event and sends it to one or more listeners. In this scheme, the listener simply waits until it receives an event. Once an event arrives, the listener processes the event and then returns. The advantage of this design is that the application logic that processes events is cleanly separated from the user interface logic that generates the events. A user interface element is able to “delegate” the processing of an event to a separate piece of code. In the delegation event model, a listener must register with a source in order to receive an event notification. If this mechanism seems familiar, it should. It is, essentially, the Observer pattern described in Chapter 16. Let’s look at events, sources, and listeners a bit closer. events In the delegation model, an event is an object that describes a state change in a source. It can be generated as a consequence of a person interacting with a control in a graphi- cal user interface, or it can be generated under program control. The superclass for all events is java.util.EventObject. Many events are declared in java.awt.event. Others are found in javax.swing.event. event Sources An event source is an object that generates an event. When a source generates an event, it must send that event to all registered listeners. Therefore, in order for a listener to receive an event, it must register with the source of that event. Listeners register with a source by calling an addTypeListener( ) method on the event source object. Each type of event has its own registration method. Here is the general form: public void addTypeListener(TypeListener el ) Java Programming 631 In general, BorderLayout is most useful when you are creating a JFrame that contains a centered component (which might be a group of components held within one of Swing’s lightweight containers) that has a header and/or footer component associated with it. In other situations, one of Java’s other layout man- agers, such as FlowLayout, will be more appropriate. 632 chapter 17 Swing Fundamentals Here, Type is the name of the event and el is a reference to the event listener. For example, the method that registers a listener that receives key stroke events is called addKeyListener( ). The method that registers a mouse motion listener is called addMouseMotionListener( ). When an event occurs, all registered listeners are notified. A source must also provide a method that allows a listener to unregister an interest in a specific type of event. The general form of such a method is this: public void removeTypeListener(TypeListener el ) Here, Type is the name of the event and el is a reference to the event listener. For example, to remove a key listener, you would call removeKeyListener( ). The methods that add or remove listeners are provided by the source that generates events. For example, the JButton class, which supports a push button, provides a meth- od to add and remove an action listener, which is notified when the button is pressed. event listeners A listener is an object that is notified when an event occurs. It has two major require- ments. First, it must have registered with one or more sources to receive notifications about a specific type of event. Second, it must implement a method to receive and process that event. The methods that receive and process events are defined in a set of interfaces. The ones we will use are found in java.awt.event and javax.swing.event. For example, the ActionListener interface defines a method that receives a notification when an action, such as clicking a button, takes place. Any object may receive and process this event if it provides an implementation of the ActionListener interface. There is an important general principle that must be stated now. An event handler should do its job quickly and then return. In most cases, it should not engage in a long operation because doing so will slow down the entire application, rendering it unresponsive. If a time-consuming operation is required, then a separate thread will usually be created for this purpose. event Classes and listener Interfaces The classes that represent events are at the core of Java’s event handling mechanism. At the root of the Java event class hierarchy is EventObject, which is in java.util. It is the superclass for all events. The class AWTEvent, declared in the java.awt package, is a subclass of EventObject. It is the superclass (either directly or indirectly) of all AWT-based events used by the delegation event model. Swing uses the AWT events. It also adds several of its own. Table 17-1 shows a sampling of the event classes and listener interfaces defined in java.awt.event. Table 17-2 shows a sampling of the event classes and listener interfaces defined in javax.swing.event. The event classes and interfaces used by the examples are described as needed. adapter Classes Although it isn’t difficult to implement most of the event listener interfaces, Java offers a set of adapter classes that provide an empty implementation of event listener Java Programming 633 Table 17-1: a Sampling of event Classes in java.awt.event Event Class Description Corresponding Event Listener ActionEvent Generated when an action occurs within a control, such as when a button is pressed. ActionListener AdjustmentEvent Generated when a scroll bar is manipulated. AdjustmentListener FocusEvent Generated when a component gains or loses focus. FocusListener ItemEvent Generated when an item is selected, such as when a check box is clicked. ItemListener KeyEvent Generated when input is received from the keyboard. KeyListener MouseEvent Generated when the mouse is dragged or moved, clicked, pressed, or released; also generated when the mouse enters or exits a component. MouseListener and MouseMotionListener MouseWheelEvent Generated when the mouse wheel is moved. MouseWheelListener WindowEvent Generated when a window is activated, closed, deactivated, deiconified, iconified, opened, or quit. WindowListener Table 17-2: a Sampling of event Classes in javax.swing.event Event Class Description Corresponding Event Listener AncestorEvent Generated when an ancestor of a component has been added, moved, or removed. AncestorListener CaretEvent Generated when the position of the caret in a text component changes. CaretListener ChangeEvent Generated when a component changes its state. ChangeListener HyperlinkEvent Generated when a hyperlink is accessed. HyperlinkListener ListDataEvent Generated when the contents of a list changes. ListDataListener ListSelectionEvent Generated when a list selection changes. ListSelectionListener MenuEvent Generated when a menu selection occurs. MenuListener TableModelEvent Generated when the table model changes. TableModelListener TreeExpansionEvent Generated when a tree is expanded or collapsed. TreeExpansionListener TreeModelEvent Generated when a tree model changes. TreeModelListener TreeSelectionEvent Generated when a node on a tree is selected. TreeSelectionListener 634 chapter 17 Swing Fundamentals interface methods. Adapter classes are useful when you want to receive and process only some of the events that are associated with a particular listener interface. You can define a new class to act as an event listener by extending one of the adapter classes and implement only those methods in which you are interested. Not having to imple- ment all of the methods defined by an event listener interface saves you a considerable amount of effort and prevents your code from becoming cluttered with empty meth- ods. Also, it is common to implement an adapter through the use of an anonymous inner class, which can further simplify your code. Not all listener interfaces have corresponding adapters. For example, there is no adapt- er for ActionListener because it defines only one method. In general, there are adapters for listeners that define two or more methods. For example, the MouseMotionLister class has two methods, mouseDragged( ) and mouseMoved( ). Empty implementations of these methods are provided by MouseMotionAdapter. If you were interested in only mouse drag events, then you could simply extend MouseMotionAdapter and imple- ment mouseDragged( ). The empty implementation of mouseMoved( ) would handle the mouse motion events for you. Here is a sampling of the adapter classes. Most are defined in java.awt.event, but MouseInputAdapter is defined in javax.swing.event. Adapter Class Implements FocusAdapter FocusListener KeyAdapter KeyListener MouseAdapter MouseListener MouseMotionAdapter MouseMotionListener MouseInputAdapter MouseListener and MouseMotionListener WindowAdapter WindowListener Progress Check 1. The delegation event model is based on event sources and _________ __________. 2. What is the name of the event listener interface for action events? 3. What do adapter classes do? Answers: 1. event listeners 2. ActionListener 3. Adapter classes simplify the implementation of event listeners by providing empty implementations of all methods in the interface. Thus, you need only implement those methods in which you are interested. USInG a PUSh BUtton One of the simplest Swing controls is the push button. It is also one of the most com- monly used. A push button is an instance of JButton. JButton inherits the abstract class AbstractButton, which defines the functionality common to all buttons. Swing push buttons can contain text, an image, or both. Here we will be using only text-based push buttons, but other types of buttons are discussed in Chapter 18. JButton supplies several constructors. The one used here is JButton(String msg) The msg parameter specifies the string that will be displayed inside the button. When a push button is pressed, it generates an ActionEvent. Thus, JButton pro- vides the following methods (inherited from AbstractButton), which are used to add or remove an action listener: void addActionListener(ActionListener al ) void removeActionListener(ActionListener al ) Here, al specifies an object that will receive event notifications. This object must be an instance of a class that implements the ActionListener interface. The ActionListener interface defines only one method: actionPerformed( ). It is shown here: void actionPerformed(ActionEvent ae) This method is called when a button is pressed. In other words, it is the event han- dler that is called when a button press event has occurred. Your implementation of actionPerformed( ) must quickly respond to that event and return. As mentioned earlier, as a general rule, event handlers must not engage in long operations because doing so will slow down the entire application. If a time-consuming procedure must be performed, then a separate thread should be created for that purpose. Using the ActionEvent object passed to actionPerformed( ), you can obtain sev- eral useful pieces of information relating to the button-press event. The one used by this chapter is the action command string associated with the button. By default, this is the string displayed inside the button. The action command is obtained by calling getActionCommand( ) on the event object. It is declared like this: String getActionCommand( ) The action command identifies the button. Thus, when using two or more buttons within the same application, the action command gives you an easy way to determine which button was pressed. The following program demonstrates how to create a push button and respond to button-press events. Figure 17-2 shows how the example appears on the screen. // Demonstrate a button. import java.awt.*; import java.awt.event.*; Java Programming 635 636 chapter 17 Swing Fundamentals import javax.swing.*; class ButtonDemo implements ActionListener { JLabel jlab; ButtonDemo() { // Create a new JFrame container. JFrame jfrm = new JFrame("A Button Example"); // Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout()); // Give the frame an initial size. jfrm.setSize(220, 90); Note use of FlowLayout. // Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // Make two buttons. JButton jbtnFirst = new JButton("First"); JButton jbtnSecond = new JButton("Second"); // Add action listeners. jbtnFirst.addActionListener(this); jbtnSecond.addActionListener(this); // Add the buttons to the content pane. Create two push buttons. Set the action listeners for the buttons. } This is the ActionEvent handler for the push buttons. jfrm.add(jbtnFirst); jfrm.add(jbtnSecond); Add buttons to content pane. // Create a text-based label. jlab = new JLabel("Press a button."); // Add the label to the frame. jfrm.add(jlab); // Display the frame. jfrm.setVisible(true); // Handle button events. public void actionPerformed(ActionEvent ae) { if(ae.getActionCommand().equals("First")) jlab.setText("First button was pressed."); else jlab.setText("Second button was pressed. "); } public static void main(String[] args) { Use the action command string to determinewhich button was pressed. Java Programming 637 FIGUre 17-2 output from the JButton demonstration program. // Create the frame on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() { public void run() { new ButtonDemo(); } }); } } Let’s take a close look at the new things in this program. First, notice that, in addi- tion to javax.swing, the program now imports both the java.awt and java.awt.event packages. The java.awt package is needed because it contains the FlowLayout class, which supports the standard flow layout manager used to lay out components in a frame. The java.awt.event package is needed because it defines the ActionListener interface and the ActionEvent class. Next, the class ButtonDemo is declared. Notice that it implements ActionListener. This means that ButtonDemo objects can be used to receive action events. Next, a JLabel reference is declared. This reference will be used within the actionPerformed( ) method to display which button has been pressed. The ButtonDemo constructor begins by creating a JFrame called jfrm. It then sets the layout manager for the content pane of jfrm to FlowLayout, as shown here: jfrm.setLayout(new FlowLayout()); As explained earlier, by default, the content pane uses BorderLayout as its layout manager, but for many applications, FlowLayout is more convenient. Recall that a flow layout lays out components one “line” at a time, top to bottom. When one “line” is full, layout advances to the next “line.” Although this scheme gives you little con- trol over the placement of components, it is quite simple to use. Remember, however, that if you resize the frame, the position of the components will change. After setting the size and default close operation, ButtonDemo( ) creates two but- tons, as shown here: JButton jbtnFirst = new JButton("First"); JButton jbtnSecond = new JButton("Second"); The first button will contain the text "First", and the second will contain "Second". 638 chapter 17 Swing Fundamentals Next, the instance of ButtonDemo referred to via this is added as an action lis- tener for the buttons by these two lines: jbtnFirst.addActionListener(this); jbtnSecond.addActionListener(this); This approach means that the object that creates the buttons will also receive notifica- tions when a button is pressed. Next, the buttons are added to the content pane of jfrm: jfrm.add(jbtnFirst); jfrm.add(jbtnSecond); This means that the buttons will be shown in the window provided by jfrm. Each time a button is pressed, it generates an action event and all registered listen- ers are notified by calling the actionPerformed( ) method. The ActionEvent object representing the button event is passed as a parameter. In the case of ButtonDemo, this event is passed to this implementation of actionPerformed( ). public void actionPerformed(ActionEvent ae) { if(ae.getActionCommand().equals("First")) jlab.setText("First button was pressed."); else jlab.setText("Second button was pressed. "); } The event that occurred is passed via ae. Inside the method, the action com- mand associated with the button that generated the event is obtained by calling getActionCommand( ). (Recall that, by default, the action command is the same as the text displayed by the button.) Based on the contents of that string, the text in the label is set appropriately by use of setText( ). This method is defined by JLabel as shown here: void setText(String msg) Here, msg specifies the text that will be shown inside the label. The setText( ) method lets you set the text inside a label after it has been created. One last point: Remember that actionPerformed( ) is called on the event- dispatching thread as explained earlier. It must return quickly in order to avoid slow- ing down the application. 1. What class creates a Swing push button? 2. By default, the action command string associated with a button is the same as the text displayed within the button. True or False? Answers: 1. JButton 2. True. Progress Check Java Programming 639 Try ThiS 17-1 A Simple Stopwatch StopWatch.java Although only two Swing controls have been introduced, JLabel and JButton, you can use these controls to create a fully functional and useful application: a stop- watch. The stopwatch contains two push buttons and one label. The push buttons are called Start and Stop and are used to start and stop the stopwatch. The label displays the elapsed time. Though quite simple, this project shows the ease with which GUI interfaces can be created using Swing. STEP-By-STEP 1. Begin by creating a file called StopWatch.java and then enter the following comment and import statements: // Try This 17-1: A Simple stopwatch. import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.*; Notice that java.util is imported. This package is needed because it contains the Calendar class, which is used to obtain the current system time. 2. Begin the StopWatch class as shown here: class StopWatch implements ActionListener { JLabel jlab; long start; // holds the start time in milliseconds As the comment indicates, the start field is used to hold the start time in milliseconds. This value will be subtracted from the end time to obtain the elapsed time. 3. Begin the StopWatch constructor with the following lines: StopWatch() { // Create a new JFrame container. JFrame jfrm = new JFrame("A Simple Stopwatch"); // Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout()); // Give the frame an initial size. jfrm.setSize(230, 90); // Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 640 chapter 17 Swing Fundamentals These statements are similar to those used by the preceding examples and should be familiar to you. 4. Enter the following code, which creates the Start and Stop buttons, adds ac- tion listeners for the buttons, and then adds the buttons to the content pane. // Make two buttons. JButton jbtnStart = new JButton("Start"); JButton jbtnStop = new JButton("Stop"); // Add action listeners. jbtnStart.addActionListener(this); jbtnStop.addActionListener(this); // Add the buttons to the content pane. jfrm.add(jbtnStart); jfrm.add(jbtnStop); 5. Create and add a label using the following statements: // Create a text-based label. jlab = new JLabel("Press Start to begin timing."); // Add the label to the frame. jfrm.add(jlab); The label is used to indicate the status of the stopwatch and to display the elapsed time. 6. Conclude the StopWatch constructor by making the frame visible: // Display the frame. jfrm.setVisible(true); } 7. Add the actionPerformed( ) method shown here: // Handle button events. public void actionPerformed(ActionEvent ae) { // get the current system time Calendar cal = Calendar.getInstance(); if(ae.getActionCommand().equals("Start")) { // Store start time. start = cal.getTimeInMillis(); jlab.setText("Stopwatch is Running..."); } else // Compute the elapsed time. jlab.setText("Elapsed time is " + (double) (cal.getTimeInMillis() - start)/1000); } Java Programming 641 Notice that a Calendar object called cal is created and initialized to the current system time by calling the static Calendar method getInstance( ). Thus, each time actionPerformed( ) is called, cal will be initialized to the current system time. (For information on Calendar, see Chapter 24.) Recall that, by default, the action command for a button is the text displayed by the button. Thus, the action command for the Start button is "Start". When the Start button is pressed, the current time (in milliseconds) is obtained (by calling getTimeInMillis( ) on cal) and stored in the start field. When the Stop button is pressed, the current time is obtained and the start time is subtracted from it, yielding the elapsed time. This value is cast to double and divided by 1,000. This converts the elapsed time into seconds. 8. Conclude by adding this main( ) method: public static void main(String[] args) { // Create the frame on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() { public void run() { new StopWatch(); } }); } 9. Here is all the code assembled into a complete program. Sample output is shown here: // Try This 17-1: A Simple stopwatch. import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.*; class StopWatch implements ActionListener { JLabel jlab; long start; // holds the start time in milliseconds StopWatch() { // Create a new JFrame container. JFrame jfrm = new JFrame("A Simple Stopwatch"); 642 chapter 17 Swing Fundamentals // Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout()); // Give the frame an initial size. jfrm.setSize(230, 90); // Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // Make two buttons. JButton jbtnStart = new JButton("Start"); JButton jbtnStop = new JButton("Stop"); // Add action listeners. jbtnStart.addActionListener(this); jbtnStop.addActionListener(this); // Add the buttons to the content pane. jfrm.add(jbtnStart); jfrm.add(jbtnStop); // Create a text-based label. jlab = new JLabel("Press Start to begin timing."); // Add the label to the frame. jfrm.add(jlab); // Display the frame. jfrm.setVisible(true); } // Handle button events. public void actionPerformed(ActionEvent ae) { // get the current system time Calendar cal = Calendar.getInstance(); if(ae.getActionCommand().equals("Start")) { // Store start time. start = cal.getTimeInMillis(); jlab.setText("Stopwatch is Running..."); } else // Compute the elapsed time. jlab.setText("Elapsed time is " } + (double) (cal.getTimeInMillis() - start)/1000); Java Programming 643 public static void main(String[] args) { // Create the frame on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() { public void run() { new StopWatch(); } }); } } IntrodUCInG JtextField Another commonly used control is JTextField. It enables the user to enter a line of text. JTextField inherits the abstract class JTextComponent, which is the superclass of all text components. JTextField provides a convenient way to obtain text-based user input. JTextField defines several constructors. The one we will use is shown here: JTextField(int cols) Here, cols specifies the width of the text field in columns. It is important to understand that you can enter a string that is longer than the number of columns. It’s just that the physical size of the text field on the screen will be cols columns wide. When a user presses enter when inputting into a text field, an ActionEvent is generated. Therefore, JTextField provides the addActionListener() and removeActionListener( ) methods. To handle action events, you must implement the actionPerformed( ) method defined by the ActionListener interface. The process is similar to handling action events generated by a button, as described earlier. To obtain the string that is currently displayed in the text field, call getText( ) on the JTextField instance. It is declared as shown here: String getText( ) You can set the text in a JTextField by calling setText( ), shown next: void setText(String text) Here, text is the string that will be put into the text field. The following program demonstrates JTextField. It creates a text field that is 10 columns wide. Whenever you press enter while in the text field, the current contents are displayed via a JLabel. Its operation should be clear. Sample output is shown in Figure 17-3. 644 chapter 17 Swing Fundamentals // Demonstrate a text field. import java.awt.*; import java.awt.event.*; import javax.swing.*; class JTextFieldDemo implements ActionListener { JTextField jtf; JLabel jlab; JTextFieldDemo() { // Create a new JFrame container. JFrame jfrm = new JFrame("A Text Field Example"); // Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout()); // Give the frame an initial size. jfrm.setSize(240, 90); // Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // Create a text field instance. jtf = new JTextField(10); // Add an action listener for the text field. Create a 10-column text field. jtf.addActionListener(this); Set the action listener for the text field. // Add the text field to the content pane. jfrm.add(jtf); // Create an empty text-based label. jlab = new JLabel(""); // Add the label to the frame. jfrm.add(jlab); // Display the frame. jfrm.setVisible(true); } // Handle action events. public void actionPerformed(ActionEvent ae) { // Obtain the current text and display it in a label. jlab.setText("Current contents: " + jtf.getText()); } An action event is generated when the user presses enter when inside a text field. Java Programming 645 FIGUre 17-3: Sample output from the JTextField program. public static void main(String[] args) { // Create the frame on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() { public void run() { new JTextFieldDemo(); } }); } } Most of the program should be familiar, but notice this line from within the actionPerformed( ) method: jlab.setText("Current contents: " + jtf.getText()); As explained, when the user presses enter, an ActionEvent is generated and sent to all registered action listeners, through the actionPerformed( ) method. For TextFieldDemo, this method simply obtains the text currently held in the text field by calling getText( ) on jtf. It then displays the text through the label referred to by jlab. Like a JButton, a JTextField has an action command string associated with it. By default, the action command is the current contents of the text field. However, you can set this to an action command of your choosing by calling the setActionCommand( ) method, shown here: void setActionCommand(String cmd ) The string passed in cmd becomes the new action command. The text in the text field is unaffected. Once you set the action command string, it remains the same no matter what is entered into the text field. One reason that you might want to explicitly set the action command is to provide a way to recognize the text field as the source of an action event. This is helpful when another control in the same frame also gener- ates action events and you want to use the same event handler to process both events. Setting the action command is one way you can tell them apart. For example, in the following program, two text fields are used, and each is rec- ognized based on its action command. // Use two text fields. import java.awt.*; import java.awt.event.*; import javax.swing.*; 646 chapter 17 Swing Fundamentals class TwoTFDemo implements ActionListener { JTextField jtf1; JTextField jtf2; JLabel jlab; TwoTFDemo() { // Create a new JFrame container. JFrame jfrm = new JFrame("Use Two Text Fields"); // Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout()); // Give the frame an initial size. jfrm.setSize(240, 120); // Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // Create two text field instances. jtf1 = new JTextField(10); jtf2 = new JTextField(10); // Set the action commands. jtf1.setActionCommand("One"); jtf2.setActionCommand("Two"); // Add action listeners for the text fields. jtf1.addActionListener(this); jtf2.addActionListener(this); // Add the text fields to the content pane. jfrm.add(jtf1); jfrm.add(jtf2); // Create an empty text-based label. jlab = new JLabel(""); // Add the label to the frame. jfrm.add(jlab); // Display the frame. jfrm.setVisible(true); } // Handle action events. public void actionPerformed(ActionEvent ae) { if(ae.getActionCommand().equals("One")) Create two text fields. Set the action command strings for the text fields. Use the action command string to determine which text field fired the event. jlab.setText("ENTER pressed in tf1: " + jtf1.getText()); else jlab.setText("ENTER pressed in jtf2: " + jtf2.getText()); } public static void main(String[] args) { // Create the frame on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() { public void run() { new TwoTFDemo(); } }); } } Sample output is shown in Figure 17-4. This program creates two JTextFields: jtf1 and jtf2. Notice that the action com- mands associated with jtf1 and jtf2 are set using these lines of code: jtf1.setActionCommand("One"); jtf2.setActionCommand("Two"); Next, inside actionPerformed( ) notice how the action command is used to determine which text field generated the action event: public void actionPerformed(ActionEvent ae) { if(ae.getActionCommand().equals("One")) jlab.setText("ENTER pressed in tf1: " + jtf1.getText()); else jlab.setText("ENTER pressed in jtf2: " + jtf2.getText()); } Because the action commands for each text field have been set to a known string, this string can be used to determine which text field generated the event. Java Programming 647 FIGUre 17-4: Sample output from the two text fields program. 648 chapter 17 Swing Fundamentals ask the expert Q You just explained that the action command associated with a text field can be set by calling setActionCommand( ). Can I use this method to set the action command associated with a push button? A Yes. As you know, by default the action command associated with a push but- ton is the name of the button. To set the action command to a different value, you can use the setActionCommand( ) method. It works the same for JButton as it does for JTextField. Progress Check 1. When using JTextField, if the text entered by the user is longer than the text field, the text is truncated. True or False? 2. When the user presses enter while within a JTextField, what event is gener- ated? 3. Why is it a good idea to explicitly set the action command for a JTextField? Try ThiS 17-2 Create a Simple Code Machine Coder.java This project uses JLabel, JButton, and JTextField to create a simple code machine. The code machine works by implementing a simple substitution cipher in which each character in a string is increased by one. For example, A becomes B, B becomes C, and so on. Of course, such a naive approach is trivially easy to break, but it provides an interesting means of illustrating the ways that push buttons and text fields can interact. It also shows how events generated by different components (in this case a text field and a button) can map to the same event handler. Answers: 1. False. The width of the text can exceed the width of the field. 2. ActionEvent 3. If the action command is not set, then by default the action command is the text currently contained within the text field. Setting the action command explicitly identifies the text field independently of what it contains. Java Programming 649 STEP-By-STEP 1. Create a file called Coder.java and then enter the following comment and import statements: // Try This 17-2: A simple code machine. import java.awt.*; import java.awt.event.*; import javax.swing.*; 2. Begin creating the Coder class, like this: class Coder implements ActionListener { JTextField jtfPlaintext; JTextField jtfCiphertext; Notice that Coder implements ActionListener. It also declares fields for two text fields. jtfPlaintext will hold the plain text message entered by the user. jtfCiphertext will hold the encoded version of the message. 3. Start the Coder constructor, as shown here: Coder() { // Create a new JFrame container. JFrame jfrm = new JFrame("A Simple Code Machine"); // Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout()); // Give the frame an initial size. jfrm.setSize(340, 120); // Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); This sequence is similar to that used by other examples in this chapter and should be familiar to you. 4. Add these two JLabels: // Create two labels. JLabel jlabPlaintext = new JLabel(" Plain Text: "); JLabel jlabCiphertext = new JLabel("Cipher Text: "); 5. Create two JTextField instances and assign them to the jtfPlaintext and jtfCiphertext fields. // Create two text field instances. jtfPlaintext = new JTextField(20); jtfCiphertext = new JTextField(20); 650 chapter 17 Swing Fundamentals 6. Set the action command for the text fields and then add this as an action listener for both fields. // Set the action commands for the text fields. jtfPlaintext.setActionCommand("Encode"); jtfCiphertext.setActionCommand("Decode"); // Add action listeners for the text fields. jtfPlaintext.addActionListener(this); jtfCiphertext.addActionListener(this); It is necessary to set the action command for both JTextField instances for three reasons. First, it gives a way to identify each text field. Second, if the action command is not set, then by default the current text is used. If, by happenstance, this text is the same as the action command used by another control, a conflict will arise. Setting the action command prevents this. Third, as you will see shortly, these two action commands are the same as the action commands for two of the push buttons. This means that the same code sequence can be used to handle events from both the push button and the text field. 7. Add the text fields and labels to the content pane. // Add the text fields and labels to the content pane. jfrm.add(jlabPlaintext); jfrm.add(jtfPlaintext); jfrm.add(jlabCiphertext); jfrm.add(jtfCiphertext); The order in which these components is added is important because the labels describe the text fields. 8. Create three push buttons called Encode, Decode, and Reset, as shown here: // Create push button instances. JButton jbtnEncode = new JButton("Encode"); JButton jbtnDecode = new JButton("Decode"); JButton jbtnReset = new JButton("Reset"); 9. Add this as an action listener for the buttons and then add the buttons to the content pane. // Add action listeners for the buttons. jbtnEncode.addActionListener(this); jbtnDecode.addActionListener(this); jbtnReset.addActionListener(this); // Add the buttons to the content pane. jfrm.add(jbtnEncode); jfrm.add(jbtnDecode); jfrm.add(jbtnReset); Java Programming 651 10. Conclude the Coder constructor with a call to setVisible( ), as shown here: // Display the frame. jfrm.setVisible(true); } 11. Begin coding the actionPerformed( ) method, as shown here: // Handle action events. public void actionPerformed(ActionEvent ae) { // If action command is "Encode" then encode the string. if(ae.getActionCommand().equals("Encode")) { // This will hold the encoded string. String encStr = ""; // Obtain the plain text. String str = jtfPlaintext.getText(); // Add 1 to each character. for(int i=0; i. When this is done, the text is automatically formatted as described by the markup. In addition to other

Java programming 663
benefits, using HTML enables you to create labels that span two or more lines. For example, this creates a label that displays two lines of text, with the string “Top” over the string “Bottom”:
JLabel jlabhtml = new JLabel(“Top
Bottom”);
Actually, HTML can be used in components other than labels. For example, you can use it in a button. In general, if a component displays text, then that text can be HTML.
progress Check
1. Can a JLabel include a graphics image?
2. The contents of a JLabel must always be centered. True or False? 3. What class is commonly used to encapsulate an icon?
thE SwIng ButtonS
Chapter 17 introduced the button by describing the basics of the JButton class. However, JButton is just one of several Swing button types. Here is a list of the but- ton classes that Swing provides:
All buttons are subclasses of the AbstractButton class, which extends JComponent. AbstractButton contains many methods that provide the basic functionality common to all buttons.
Button events fall into three categories: action events, item events, and change events. An action event is generated when the user performs an action, such as click- ing a button. An item event is generated when a button is selected or deselected. A change event is fired when the state of the button changes. Keep in mind that not all three events will necessarily be meaningful to all buttons, or all button applications. For example, JButton does not generate item events. In this chapter, only action and item events are used, and these two events are described here.
Answers:
1. Yes.
2. False.
3. ImageIcon
JButton
A standard push button
JToggleButton
A two-state (on/off) button
JCheckBox
A standard check box
JRadioButton
A mutually exclusive check box

664 chapter 18 Exploring Swing Controls handling action Events
An action event is generated when the user clicks a button. The action event was intro- duced in Chapter 17. To review: An action event is represented by the ActionEvent class. Action events are handled by classes that implement the ActionListener interface. This interface specifies only one method, actionPerformed( ), which is shown here:
void actionPerformed(ActionEvent ae)
The action event is received in ae.
The ActionEvent object passed to actionPerformed( ) gives you access to several
pieces of information. Perhaps most importantly, it enables you to identify what com- ponent has generated the event. There are two ways to identify the component: by its action command string (as shown in Chapter 17) or by its object reference. You can obtain the action command string for the component that generated the event by call- ing getActionCommand( ) on the ActionEvent object. The action command identi- fies the button. You can set the action command by calling setActionCommand( ). Recall that these methods are declared as shown here:
String getActionCommand( )
void setActionCommand(String cmd)
The string passed in cmd becomes the new action command. The text in the button is unaffected.
The second way you can identify the component that generated an action event is by obtaining a reference to it by calling getSource( ) on the ActionEvent object. This method is defined by EventObject, the superclass for all event objects. It is shown here:
Object getSource( )
One advantage to using getSource( ) is that if you need to act directly on the compo- nent, you can do so through this reference. Although we won’t use this approach in the examples in this chapter, it is an option that may prove helpful in your own code.
handling Item Events
An item event occurs when an item, such as a toggle button, check box, or radio but- ton, is selected. Item events are represented by the ItemEvent class. Item events are handled by classes that implement the ItemListener interface. This interface specifies only one method: itemStateChanged( ), which is shown here:
void itemStateChanged(ItemEvent ie)
The item event is received in ie.
To obtain a reference to the item that changed, call getItem( ) on the ItemEvent
object. This method is shown here: Object getItem( )

Java programming 665
The reference returned must be cast to the component class being handled, such as JCheckBox or JRadioButton.
When an item event occurs, the component will be in one of two states: selected or deselected. The ItemEvent class defines the following static final int constants that represent these two states:
To obtain the new state, call the getStateChange( ) method defined by ItemEvent. It is shown here:
int getStateChange( )
It returns either ItemEvent.SELECTED or ItemEvent.DESELECTED. You can also determine the selected/deselected state of a button by calling isSelected( ), which is defined by AbstractButton. It is shown here:
boolean isSelected( )
It returns true if the button is selected and false otherwise.
JButton
The JButton class provides the functionality of a push button. You have already seen a simple form of it in the preceding chapter. Here we will use some of its additional features.
JButton allows an icon, a string, or both to be associated with the push button. Three of its constructors are shown here:
JButton(Icon icon) JButton(String str) JButton(String str, Icon icon)
Here, str and icon are the string and icon used for the button.
As explained, when the button is pressed, an ActionEvent is generated. Using
the ActionEvent object passed to the actionPerformed( ) method of the registered ActionListener, you can obtain the action command string associated with the button. By default, this is the string displayed inside the button. However, you can set the action command by calling setActionCommand( ) on the button. You can obtain the action command by calling getActionCommand( ) on the event object. Thus, when using two or more buttons within the same application, the action command gives you an easy way to determine which button was pressed.
In the preceding chapter, you saw an example of a text-based button. The fol- lowing demonstrates an icon-based button. It displays three push buttons and a label. Each button displays a traffic light state, using the same images as those used by the previous example. When a button is pressed, the state of the traffic light is displayed in the label. Notice the use of setActionCommand( ) to set the action commands of the icon-based buttons.
SELECTED
DESELECTED

666 chapter 18 Exploring Swing Controls // Demonstrate icon-based JButtons.
// This example displays traffic light icons inside buttons.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
public class JButtonDemo implements ActionListener { JLabel jlab;
JButtonDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JButton Example”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(300, 180);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create the buttons.
ImageIcon goIcon = new ImageIcon(“Go.gif”); JButton jbtnGo = new JButton(goIcon); jbtnGo.setActionCommand(“Go”); jbtnGo.addActionListener(this);
Create an icon-based button.
ImageIcon cautionIcon = new ImageIcon(“Caution.gif”); JButton jbtnCaution = new JButton(cautionIcon); jbtnCaution.setActionCommand(“Caution”); jbtnCaution.addActionListener(this);
ImageIcon stopIcon = new ImageIcon(“Stop.gif”); JButton jbtnStop = new JButton(stopIcon); jbtnStop.setActionCommand(“Stop”); jbtnStop.addActionListener(this);
// Add the buttons to the content pane. jfrm.add(jbtnGo);
jfrm.add(jbtnCaution); jfrm.add(jbtnStop);
// Create and add the label to content pane. jlab = new JLabel(“Select a Traffic Light”); jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }

// Handle button events.
public void actionPerformed(ActionEvent ae) {
jlab.setText(“You selected ” + ae.getActionCommand() + “.”); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new JButtonDemo();
} });
} }
Output from the button example is shown here:
Sometimes it is useful to disable a button when it is not usable. To do so, call setEnabled( ), which is inherited from JComponent. Its general form is shown here:
void setEnabled(boolean state)
If state is true, the button is enabled. If it is false, the button is disabled. A disabled button has its text and/or icon shown in gray. You might want to try disabling a button in the preceding program and observe the results.
In addition to the default icon specified by the JButton constructor, it is possible to specify icons that are displayed when certain button actions occur. Specifically, you can specify the icon that is displayed when the button is disabled, when it is pressed, and when it is rolled over by the mouse. To set these icons, you will use the following methods:
void setDisabledIcon(Icon disabledIcon) void setPressedIcon(Icon pressedIcon) void setRolloverIcon(Icon rolloverIcon)
These methods are inherited by JButton from AbstractButton. Once the specified icon has been set, it will be displayed whenever one of the actions occurs. You might
Java programming 667

668 chapter 18 Exploring Swing Controls
want to experiment with these on your own. Their addition can make for a very
dynamic GUI.
ask the Expert
Q You just mentioned that a JButton can be disabled by use of setEnabled( ). ACan other controls be disabled?
Yes, because setEnabled( ) is specified by JComponent, it applies to other
types of lightweight controls. The ability to disable/enable a component is an important part of real-world GUI design.
JtoggleButton
A useful variation on the push button is called a toggle button. A toggle button looks just like a push button, but it acts differently because it has two states: pushed and released. That is, when you press a toggle button, it stays pressed rather than popping back up as a regular push button does. When you press the toggle button a second time, it releases (pops up). Therefore, each time a toggle button is pushed, it toggles between its two states.
Toggle buttons are objects of the JToggleButton class. In addition to creating standard toggle buttons, JToggleButton is a superclass for two other Swing compo- nents that also represent two-state controls. These are JCheckBox and JRadioButton, which are described later in this chapter. Thus, JToggleButton defines the basic func- tionality of all two-state components.
JToggleButton defines several constructors. The one used by the example in this section is shown here:
JToggleButton(String str)
This creates a toggle button that contains the text passed in str. By default, the but- ton is in the off position. Other constructors enable you to create a toggle button that contains images (or images and text) or set its state.
Like JButton, JToggleButton generates an action event each time it is pressed. Unlike JButton, however, JToggleButton also generates an item event. This event is used by those components that support the concept of selection. When a JToggleButton is pressed in, it is selected. When it is popped out, it is deselected.
To handle item events, you must implement the ItemListener interface. Each time an item event is generated, it is passed to the itemStateChanged( ) method defined by ItemListener. Inside itemStateChanged( ), the getItem( ) method can be called on the ItemEvent object to obtain a reference to the JToggleButton instance that generated the event.
Probably the easiest way to determine a toggle button’s state is by calling the isSelected( ) method on the button that generated the event, as described earlier. Recall that it returns true if the button is selected and false otherwise.

Java programming 669 Here is an example that uses a toggle button. Notice how the item listener works.
It simply calls isSelected( ) to determine the button’s state.
// Demonstrate JToggleButton. import java.awt.*;
import java.awt.event.*; import javax.swing.*;
public class JToggleButtonDemo {
JLabel jlab; JToggleButton jtbn;
JToggleButtonDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JToggleButton Example”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(200, 100);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label.
jlab = new JLabel(“Button is off.”);
// Make a toggle button.
jtbn = new JToggleButton(“On/Off”);
// Add an item listener for the toggle button. jtbn.addItemListener(new ItemListener() {
handle toggle button events. Use isSelected() to determine
which state the button is in.
Create a toggle button.
Use an ItemListener to
public void itemStateChanged(ItemEvent ie) { if(jtbn.isSelected())
jlab.setText(“Button is on.”); else
jlab.setText(“Button is off.”); }
});
// Add the toggle button and label to the content pane. jfrm.add(jtbn);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }

670 chapter 18 Exploring Swing Controls
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new JToggleButtonDemo();
} });
} }
The output from the toggle button example is shown here:
Check Boxes
The JCheckBox class provides the functionality of a check box. Its immediate superclass is JToggleButton, which provides support for two-state buttons, as just described. JCheckBox defines several constructors. The one used here is
JCheckBox(String str)
It creates a check box that has the text specified by str as a label. Other constructors let you specify the initial selection state of the button and specify an icon.
When the user selects or deselects a check box, an ItemEvent is generated. You can obtain a reference to the JCheckBox that generated the event by calling getItem( ) on the ItemEvent passed to the itemStateChanged( ) method defined by ItemListener. The easiest way to determine the selected state of a check box is to call isSelected( ) on the JCheckBox instance.
The following example illustrates check boxes. It displays four check boxes and a label. When the user clicks a check box, an ItemEvent is generated. Inside the itemStateChanged( ) method, getItem( ) is called to obtain a reference to the JCheckBox object that generated the event. Next, a call to isSelected( ) determines if the box was selected or cleared. The getText( ) method gets the text for that check box and uses it to set the text inside the label.
// Demonstrate JCheckbox. import java.awt.*;
import java.awt.event.*; import javax.swing.*;

public class JCheckBoxDemo implements ItemListener { JLabel jlabChange;
JLabel jlabSupported;
JCheckBox cbWin; JCheckBox cbLinux; JCheckBox cbMac;
JCheckBoxDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JCheckBox Example”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(340, 140);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Java programming 671
// Add check boxes to the content pane. cbWin = new JCheckBox(“Windows”); cbWin.addItemListener(this); jfrm.add(cbWin);
cbLinux = new JCheckBox(“Linux”); cbLinux.addItemListener(this); jfrm.add(cbLinux);
cbMac = new JCheckBox(“Mac OS”); cbMac.addItemListener(this); jfrm.add(cbMac);
Create the check boxes.
// Create labels.
jlabChange = new JLabel(“Select Supported Operating Systems”); jfrm.add(jlabChange);
jlabSupported = new JLabel(); jfrm.add(jlabSupported);
// Display the frame.
jfrm.setVisible(true); }
// Handle item events for the check boxes. public void itemStateChanged(ItemEvent ie) {
JCheckBox cb = (JCheckBox)ie.getItem();
if(cb.isSelected())
jlabChange.setText(cb.getText() + ” has been selected”);
Listen for item events generated by the check boxes.
Determine if the check box
has been selected or cleared.

672 chapter 18 Exploring Swing Controls else
jlabChange.setText(cb.getText() + ” has been cleared”);
// Build a string the indicate all selections. String supported = “Supported Operating Systems: “; if(cbWin.isSelected()) supported += “Windows “; if(cbLinux.isSelected()) supported += “Linux “; if(cbMac.isSelected()) supported += “Mac OS”;
jlabSupported.setText(supported); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new JCheckBoxDemo();
} });
} }
Output from this example is shown here:
radio Buttons
Radio buttons are a group of mutually exclusive buttons, in which only one button can be selected at any one time. They are supported by the JRadioButton class, which extends JToggleButton. JRadioButton provides several constructors. The one used in the example is shown here:
JRadioButton(String str)
Here, str is the label for the button. Other constructors let you specify the initial selec- tion state of the button and specify an icon.
In order for their mutually exclusive nature to be activated, radio buttons must be configured into a group. Only one of the buttons in the group can be selected at any time. For example, if a user presses a radio button that is in a group, any previously

Java programming 673
selected button in that group is automatically deselected. A button group is created by the ButtonGroup class. Its default constructor is invoked for this purpose. Elements are then added to the button group via the following method:
void add(AbstractButton btn)
Here, btn is a reference to the button to be added to the group.
A JRadioButton generates action events, item events, and change events each
time the button selection changes. Often, it is the action event that is handled, which means that you will need to implement the ActionListener interface. Recall that the only method defined by ActionListener is actionPerformed(). Inside this method, you can use a number of different ways to determine which button was selected. Here are three. First, you can check its action command by calling getActionCommand( ). By default, the action command is the same as the button label, but you can set the action command to something else by calling setActionCommand() on the radio button. Second, you can call getSource() on the ActionEvent object and check that reference against the buttons. Finally, you can simply check each radio button to find out which one is currently selected by calling isSelected( ) on each button. Remember, each time an action event occurs, it means that the button being selected has changed and that one and only one button will be selected.
The following example illustrates how to use radio buttons. Three radio buttons are created. The buttons are then added to a button group. As explained, this is nec- essary to cause their mutually exclusive behavior. Pressing a radio button generates an action event, which is handled by actionPerformed(). Within that handler, the getActionCommand() method gets the text that is associated with the radio button and uses it to set the text within a label.
// Demonstrate JRadioButton import java.awt.*;
import java.awt.event.*; import javax.swing.*;
public class JRadioButtonDemo implements ActionListener { JLabel jlab;
JRadioButtonDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JRadioButton Example”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(350, 100);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

674 chapter 18 Exploring Swing Controls
// Create radio buttons and add them to content pane. JRadioButton b1 = new JRadioButton(“Debug”); b1.addActionListener(this);
jfrm.add(b1);
JRadioButton b2 = new JRadioButton(“Maximize Speed”); Create the radio
b2.addActionListener(this); jfrm.add(b2);
JRadioButton b3 = new JRadioButton(“Minimize Size”); b3.addActionListener(this);
jfrm.add(b3);
buttons.
// Define a ButtonGroup bg.add(b1); bg.add(b2); bg.add(b3);
button group.
bg = new ButtonGroup();
Add radio buttons to a button group.
label and add it to the content pane.
// Create a
jlab = new JLabel(“Select One”); jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
// Handle button selection.
public void actionPerformed(ActionEvent ae) {
jlab.setText(“You selected ” + ae.getActionCommand()); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new JRadioButtonDemo();
} });
} }
Output from the radio button example is shown here:

Java programming 675
progress Check
1. What type of event is typically handled when using JCheckBox?
2. JToggleButton creates a ______-state button.
3. For radio buttons to function correctly, they must be added to what class?
JtextField
JTextField was introduced in Chapter 17. To review, JTextField enables the user to enter a single line of text. It generates an ActionEvent when the user presses enter in the field. To handle action events, you must implement the actionListener inter- face. A JTextField has an action command string associated with it. By default, the action command is the current contents of the text field. However, you can set this to an action command of your choosing by calling the setActionCommand( ) method. To obtain the string that is currently displayed in the text field, call getText( ) on the JTextField instance. It is shown here:
String getText( )
You can set the text in a JTextField by calling setText( ), shown next:
void setText(String text)
Here, text is the string that will be put into the text field. In addition to these features with which you are already familiar, JTextField supports several others that you might find useful. A sampling is discussed here.
You can create a JTextField that contains an initial string by using one of these constructors:
JTextField(String str)
JTextField(String str, int cols)
In the first case, the text field is sized to fit the string. In the second form, the number of columns is specified.
You can obtain the portion of the text that has been selected by calling getSelectedText( ), shown here:
String getSelectedText( )
If no text has been selected, null is returned.
You can move text to or from the clipboard under program control by using the
methods cut( ), copy( ), and paste( ), shown here: void cut( )
void copy( ) void paste( )
Answers:
1. ItemEvent
2. two
3. ButtonGroup

676 chapter 18 Exploring Swing Controls
The cut( ) method removes any text that is selected within the text field and copies it to the clipboard. The copy( ) method simply copies, but does not remove, the selected text. The paste( ) method copies any text that may be in the clipboard to the text field. If the text field contains selected text, then that text is replaced by what is in the clipboard. Otherwise, the clipboard text is inserted immediately before the current cursor position.
The following program demonstrates JTextField and several of the methods just discussed. It creates a text field that is 15 columns wide. Whenever you press enter while in the text field, the current contents are displayed. If any part of the field has been selected, the selected text is also displayed. The program has two buttons called Cut and Paste. These buttons show how the standard cut and paste functions can be utilized under program control. If text has been selected, then pressing Cut removes the selected text and puts it in the clipboard. Pressing Paste copies any text in the clipboard to the text field. Of course, you can also perform cut and paste through stan- dard keyboard commands, such as ctrl-x and ctrl-v in the Windows environment. Sample output is shown here:
// Demonstrate various features of a text field. import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*; class JTextFieldDemo {
JLabel jlabAll; JLabel jlabSelected;
JTextField jtf;
JButton jbtnCut; JButton jbtnPaste;
public JTextFieldDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JTextField Example”);

// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(200, 150);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create labels.
jlabAll = new JLabel(“All text: “); jlabSelected = new JLabel(“Selected text: “);
// Create the text field.
jtf = new JTextField(“This is a test.”, 15);
// Add an action listener for the text field.
// Each time the user presses enter, the contents // of the field are displayed. Any currently
// selected text is also displayed. jtf.addActionListener(new ActionListener() {
Java programming 677
Create a text field.
public void actionPerformed(ActionEvent ae) {
jlabAll.setText(“All text: ” + jtf.getText()); Each time the user
} });
if(jtf.getSelectedText() != null) jlabSelected.setText(“Selected text: ” +
jtf.getSelectedText());
presses enter, display the entire text and any selected text.
// Create the Cut and Paste buttons. jbtnCut = new JButton(“Cut”); jbtnPaste = new JButton(“Paste”);
// Add action listener for the Cut button. jbtnCut.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) { // Cut any selected text and put it
// on the clipboard.
jtf.cut();
Remove selected text and put it in the clipboard.
jlabAll.setText(“All text: ” + jtf.getText()); if(jtf.getSelectedText() != null)
jlabSelected.setText(“Selected text: ” + jtf.getSelectedText());
} });
// Add action listener for the Paste button. jbtnPaste.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) { // Paste text from the clipboard into

678 chapter 18 Exploring Swing Controls
// the text field.
jtf.paste(); Copy text from the clipboard. }
});
// Add the components to the content pane. jfrm.add(jtf);
jfrm.add(jbtnCut);
jfrm.add(jbtnPaste);
jfrm.add(jlabAll); jfrm.add(jlabSelected);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new JTextFieldDemo();
} });
} }
Much of this program will be familiar, but there are a few key points that warrant a close look. First, when the text field jtf is created, it is given both an initial size of 15 and initial contents consisting of the string “This is a test.”
Each time the user presses enter when inside the jtf text field, an ActionEvent is generated and sent to the actionPerformed( ) method of jtf’s action listener. This method obtains the text currently held in the text field by calling getText( ) on jtf. It then displays the text through the label referred to by jlabAll. It also obtains any selected text by calling getSelectedText( ) and displays it through the jlabSelected label.
Next, look at the event handlers for the Cut and Paste buttons. The Cut button calls cut( ) to remove any selected text and put it into the clipboard. The Paste button copies text from the clipboard into the text field by calling paste( ).
Try This 18-1 A Swing-Based File Comparison Utility
SwingFC.java
Although only a small number of controls have been introduced, you can still put them to use to create a practical application. In Try This 11-1 you created a console-based file comparison utility. This project creates a Swing-based ver- sion of the program. As you will see, giving this application a Swing-based user

Java programming 679
interface substantially improves its appearance and makes it easier to use. It also adds some additional functionality because it lets you display the position of the first mismatch when two files differ. Here is how the Swing version looks:
Because Swing streamlines the creation of GUI-based programs, you might be surprised by how easy it is to create this program.
STEP-By-STEP
1. Begin by creating a file called SwingFC.java and then enter the following comment and import statements:
/*
Try This 18-1
A Swing-based file comparison utility.
Requires JDK 7 or later. */
import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.io.*;
2. Next, begin the SwingFC class as shown here: class SwingFC implements ActionListener {
JTextField jtfFirst; // holds the first file name JTextField jtfSecond; // holds the second file name
JButton jbtnComp; // button to compare the files

680 chapter 18 Exploring Swing Controls
JLabel jlabFirst, jlabSecond; // displays prompts
JLabel jlabResult; // displays results and error messages
JCheckBox jcbLoc; // check to display location of mismatch
The names of the files to compare are entered into the text fields defined by jtfFirst and jtfSecond. To compare the files, the user presses the jbtnComp button. Prompting messages are displayed in jlabFirst and jlabSecond. The results of the comparison, or any error messages, are displayed in jlabResult. The jcbLoc check box lets the user determine if the position of the first mismatch is displayed.
3. Code the SwingFC constructor like this: SwingFC() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“Compare Files”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(200, 220);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create the text fields for the file names. jtfFirst = new JTextField(14);
jtfSecond = new JTextField(14);
// Create the Compare button.
JButton jbtnComp = new JButton(“Compare”);
// Add action listener for the Compare button. jbtnComp.addActionListener(this);
// Create the labels.
jlabFirst = new JLabel(“First file: “); jlabSecond = new JLabel(“Second file: “); jlabResult = new JLabel(“”);
// Create check box.
jcbLoc = new JCheckBox(“Show position of mismatch”);
// Add the components to the content pane. jfrm.add(jlabFirst);
jfrm.add(jtfFirst);
jfrm.add(jlabSecond);

Java programming 681
jfrm.add(jtfSecond); jfrm.add(jcbLoc); jfrm.add(jbtnComp); jfrm.add(jlabResult);
// Display the frame.
jfrm.setVisible(true); }
Most of the code in this constructor should be familiar to you. However, notice one thing: an action listener is added only to the push button jbtnComp.
Action listeners are not added to the text fields. Here’s why: the contents of the text fields are needed only when the Compare button is pushed. At no other time are their contents required. Thus, there is no reason to respond to any text field events. As you begin to write more Swing programs, you will find that this is often the case when using a text field.
4. Begin creating the actionPerformed( ) event handler as shown next. This method is called when the Compare button is pressed.
// Compare the files when the Compare button is pressed. public void actionPerformed(ActionEvent ae) {
int i = 0, j = 0; int count = 0;
// First, confirm that both file names have been entered. if(jtfFirst.getText().equals(“”)) {
jlabResult.setText(“First file name missing.”);
return; }
if(jtfSecond.getText().equals(“”)) { jlabResult.setText(“Second file name missing.”); return;
}
The method begins by confirming that the user has entered a file name into each of the text fields. If this is not the case, the missing file name is reported and the handler returns.
5. Now, finish actionPerformed( ) by adding the code that actually opens the files and then compares them.
// Compare files. Use try-with-resources to manage the files. try (FileInputStream f1 =
new FileInputStream(jtfFirst.getText()); FileInputStream f2 =
{
new FileInputStream(jtfSecond.getText()))
// Check the contents of each file. do {

682 chapter 18 Exploring Swing Controls
i = f1.read();
j = f2.read(); if(i != j) break; count++;
} while(i != -1 && j != -1);
if(i != j) { if(jcbLoc.isSelected())
jlabResult.setText(“Files differ at location ” + count); else
jlabResult.setText(“Files are not the same.”); }
else
jlabResult.setText(“Files compare equal.”);
} catch(IOException exc) { jlabResult.setText(“File Error” + exc);
} }
Notice that the state of the check box is tested to determine if the location of
the first mismatch is to be displayed.
6. Finish SwingFC by adding the following main( ) method. public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new SwingFC();
}
}); }
}
7. The entire Swing-based file comparison program is shown here: /*
Try This 18-1
A Swing-based file comparison utility.
It uses the try-with-resources statement and
requires JDK 7 or later. */
import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.io.*;

Java programming 683
class SwingFC implements ActionListener {
JTextField jtfFirst; // holds the first file name JTextField jtfSecond; // holds the second file name
JButton jbtnComp; // button to compare the files
JLabel jlabFirst, jlabSecond; // displays prompts
JLabel jlabResult; // displays results and error messages
JCheckBox jcbLoc; // check to display location of mismatch SwingFC() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“Compare Files”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(200, 220);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create the text fields for the file names. jtfFirst = new JTextField(14);
jtfSecond = new JTextField(14);
// Create the Compare button.
JButton jbtnComp = new JButton(“Compare”);
// Add action listener for the Compare button. jbtnComp.addActionListener(this);
// Create the labels.
jlabFirst = new JLabel(“First file: “); jlabSecond = new JLabel(“Second file: “); jlabResult = new JLabel(“”);
// Create check box.
jcbLoc = new JCheckBox(“Show position of mismatch”);
// Add the components to the content pane. jfrm.add(jlabFirst);
jfrm.add(jtfFirst);
jfrm.add(jlabSecond);
jfrm.add(jtfSecond); jfrm.add(jcbLoc);

684 chapter 18 Exploring Swing Controls
jfrm.add(jbtnComp); jfrm.add(jlabResult);
// Display the frame.
jfrm.setVisible(true); }
// Compare the files when the Compare button is pressed. public void actionPerformed(ActionEvent ae) {
int i = 0, j = 0; int count = 0;
// First, confirm that both file names have been entered. if(jtfFirst.getText().equals(“”)) {
jlabResult.setText(“First file name missing.”);
return; }
if(jtfSecond.getText().equals(“”)) { jlabResult.setText(“Second file name missing.”); return;
}
// Compare files. Use try-with-resources to manage the files. try (FileInputStream f1 =
new FileInputStream(jtfFirst.getText()); FileInputStream f2 =
{
new FileInputStream(jtfSecond.getText()))
// Check the contents of each file. do {
i = f1.read();
j = f2.read(); if(i != j) break; count++;
} while(i != -1 && j != -1);
if(i != j) { if(jcbLoc.isSelected())
jlabResult.setText(“Files differ at location ” + count); else
jlabResult.setText(“Files are not the same.”); }
else
jlabResult.setText(“Files compare equal.”);
} catch(IOException exc) { jlabResult.setText(“File Error”);
} }

Java programming 685
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new SwingFC();
} });
} }
JScrollpane
JScrollPane is a lightweight container that automatically handles the scrolling of another lightweight component. The component being scrolled can either be an individual component, such as a table, or a group of components contained within another lightweight container, such as a JPanel. In either case, if the object being scrolled is larger than the viewable area, horizontal and/or vertical scroll bars are automatically provided, and the component can be scrolled through the pane. Because JScrollPane automates scrolling, it usually eliminates the need to manage individual scroll bars.
The viewable area of a scroll pane is called the viewport. It is a window in which the component being scrolled is displayed. Thus, the viewport displays the visible portion of the component being scrolled. The scroll bars scroll the component through the viewport. In its default behavior, a JScrollPane will dynamically add or remove a scroll bar as needed. For example, if the component is taller than the viewport, a vertical scroll bar is added. If the component will completely fit within the viewport, the scroll bars are removed.
JScrollPane defines several constructors. The one used in this chapter is shown here:
JScrollPane(Component comp)
The component to be scrolled is specified by comp. Scroll bars are automatically dis- played when the content of the pane exceeds the dimensions of the viewport.
Here are the steps to follow to use a scroll pane:
1. Create the component to be scrolled.
2. Create an instance of JScrollPane, passing to it the object to scroll.
3. Add the scroll pane to the content pane.
The following example illustrates a scroll pane. It does so by creating a multiline label. As explained in the Ask the Expert box presented earlier, this is done by use of HTML-based text. The label is then added to a scroll pane, and the scroll pane is added to the content pane. Because the label contents are larger than the frame that

686 chapter 18 Exploring Swing Controls
holds them, vertical and horizontal scroll bars appear automatically. You can use the
scroll bars to scroll the text into view.
// A simple JScrollPane example. import javax.swing.*;
class JScrollPaneDemo { JScrollPaneDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JScrollPane Example”);
// Give the frame an initial size. jfrm.setSize(200, 120);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a long, HTML-based label. JLabel jlab =
Create a multiline label.
new JLabel(“JScrollPane simplifies what would
” + “otherwise be complicated tasks.
” +
“It can be used to scroll any lightweight
” + “component or lightweight container. It is
” + “especially useful when scrolling tables, lists,
” + “or images.”);
// Create a scroll pane and have it scroll the label. JScrollPane jscrlp = new JScrollPane(jlab);
// Add the scroll pane to the frame. jfrm.add(jscrlp); Add the scroll pane to the content pane.
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new JScrollPaneDemo();
} });
} }
Create a scroll pane that contains the multiline label.

Output from the scroll pane example is shown here:
1. What method is called to obtain the selected text within a JTextField?
2. JScrollPane always shows both horizontal and vertical scroll bars. True or
False?
3. In a JScrollPane, the viewable area is called the __________.
Java programming 687
progress Check
Try This 18-2 Scroll a Jpanel
ScrollJPanelDemo.java
Because JPanel is a lightweight container that inherits JComponent, it too can be scrolled using JScrollPane. This capability makes it possible to scroll the entire contents of a JPanel with almost no effort on your part. When screen space is in short supply, scrolling a panel might be the solution to an otherwise difficult situation. You can simply add a set of components to the panel and then use a JScrollPane to scroll through the set.
Furthermore, because JPanel inherits JComponent, it is also a component. Thus, JPanel is a lightweight container that can also be used to hold other JPanels. This makes JPanel perfect for creating a multilayered containment system.
Answers:
1. getSelectedText( )
2. False. Scroll bars are shown only when needed.
3. viewport

688 chapter 18 Exploring Swing Controls
JPanel defines several constructors. In this example, only the default construc- tor is used. As the example will show, you can set the layout manager in just the same way as you do with a JFrame. By default, a JPanel is created with flow layout. It also uses double buffering. As mentioned in Chapter 15, double buffer- ing is a mechanism that is commonly employed to achieve a better user experience when screen refreshes take place. Instead of drawing each component directly on the screen, which can lead to “flicker,” the components are rendered to a separate buffer. When the rendering is complete, the buffer is copied to the screen in one fast, uninterrupted operation. In this way, the contents of a panel appear instantaneously and complete, rather than slowly and in pieces. You can turn off double buffering if desired, although you will seldom want to do so. Support for double buffering is inherited from JComponent.
This example demonstrates how to create a JPanel, add components to it, and then add the panel to a JScrollPane, to enable automatic scrolling of the panel. You will notice that the panel’s layout manager is set to GridLayout. It lays out components in a two-dimensional grid. The size of the grid can be specified using this constructor:
GridLayout(int numRows, int numCols)
Here, the number of rows is passed in numRows, and the number of columns is passed in numCols. In this example, laying out the components in a grid makes the effects of scrolling quite apparent. (Understand, however, that in your own code, you will choose a layout manager appropriate to your needs. Neither JPanel nor JScrollPane requires the use of GridLayout.) In this example, the panel contains a label and a series of check boxes. However, you can use the basic technique whenever you need to scroll the contents of a panel. Sample output is shown here:
STEP-By-STEP
1. Create a file called ScrollJPanelDemo.java and add the following comment and import statements:
// Try This 18-2: Use a JScrollPane to scroll a JPanel.
import java.awt.*; import javax.swing.*;

Java programming 689
2. Begin the ScrollJPanelDemo class like this: class ScrollJPanelDemo {
ScrollJPanelDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“Scroll a JPanel”);
// Give the frame an initial size. jfrm.setSize(280, 130);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
3. Add the following lines, which create the label and check boxes: // Create a label.
JLabel jlabOptions = new JLabel(“Select one or more options: “);
// Make some check boxes.
JCheckBox jcbOpt1 = new JCheckBox(“Option One”); JCheckBox jcbOpt2 = new JCheckBox(“Option Two”); JCheckBox jcbOpt3 = new JCheckBox(“Option Three”); JCheckBox jcbOpt4 = new JCheckBox(“Option Four”); JCheckBox jcbOpt5 = new JCheckBox(“Option Five”); JCheckBox jcbOpt6 = new JCheckBox(“Option Six”); JCheckBox jcbOpt7 = new JCheckBox(“Option Seven”); JCheckBox jcbOpt8 = new JCheckBox(“Option Eight”); JCheckBox jcbOpt9 = new JCheckBox(“Option Nine”); JCheckBox jcbOpt10 = new JCheckBox(“Option Ten”);
// No event handlers used by this example, but as an // exercise, you might try adding some.
Because the point of this program is to demonstrate scrolling a JPanel, no event handlers are included because the check boxes are simply used for their appearance. However, as an experiment, you can try adding event handlers of your own.
4. Add the code that constructs the JPanel that will be scrolled and then add the label and check boxes to it.
// Create a JPanel to hold the options check boxes. JPanel jpnl = new JPanel();
jpnl.setLayout(new GridLayout(5, 3));
// Add check boxes and label to the JPanel. jpnl.add(jlabOptions);
jpnl.add(new JLabel(“”)); // a placeholder label jpnl.add(new JLabel(“”)); // a placeholder label

690 chapter 18 Exploring Swing Controls
jpnl.add(jcbOpt1); jpnl.add(jcbOpt2); jpnl.add(jcbOpt3); jpnl.add(jcbOpt4); jpnl.add(jcbOpt5); jpnl.add(jcbOpt6); jpnl.add(jcbOpt7); jpnl.add(jcbOpt8); jpnl.add(jcbOpt9); jpnl.add(jcbOpt10);
5. Create the JScrollPane, using the panel as the object to be scrolled. Then add the scroll pane to the content pane. Finally, make the frame visible.
// Create a scroll pane that will scroll the panel. JScrollPane jscrlp = new JScrollPane(jpnl);
// Add that scroll pane to the frame. jfrm.add(jscrlp);
// Display the frame. jfrm.setVisible(true); }
6. End the class in the usual way.
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new ScrollJPanelDemo();
} });
} }
7. The entire program is shown here:
// Try This 18-2: Use a JScrollPane to scroll a JPanel.
import java.awt.*; import javax.swing.*;
class ScrollJPanelDemo { ScrollJPanelDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“Scroll a JPanel”);

Java programming 691
// Give the frame an initial size. jfrm.setSize(280, 130);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label.
JLabel jlabOptions = new JLabel(“Select one or more options: “);
// Make some check boxes.
JCheckBox jcbOpt1 = new JCheckBox(“Option One”); JCheckBox jcbOpt2 = new JCheckBox(“Option Two”); JCheckBox jcbOpt3 = new JCheckBox(“Option Three”); JCheckBox jcbOpt4 = new JCheckBox(“Option Four”); JCheckBox jcbOpt5 = new JCheckBox(“Option Five”); JCheckBox jcbOpt6 = new JCheckBox(“Option Six”); JCheckBox jcbOpt7 = new JCheckBox(“Option Seven”); JCheckBox jcbOpt8 = new JCheckBox(“Option Eight”); JCheckBox jcbOpt9 = new JCheckBox(“Option Nine”); JCheckBox jcbOpt10 = new JCheckBox(“Option Ten”);
// No event handlers used by this example, but as an // exercise, you might try adding some.
// Create a JPanel to hold the options check boxes. JPanel jpnl = new JPanel();
jpnl.setLayout(new GridLayout(5, 3));
// Add check boxes and label to the JPanel. jpnl.add(jlabOptions);
jpnl.add(new JLabel(“”)); // a placeholder label jpnl.add(new JLabel(“”)); // a placeholder label
jpnl.add(jcbOpt1); jpnl.add(jcbOpt2); jpnl.add(jcbOpt3); jpnl.add(jcbOpt4); jpnl.add(jcbOpt5); jpnl.add(jcbOpt6); jpnl.add(jcbOpt7); jpnl.add(jcbOpt8); jpnl.add(jcbOpt9); jpnl.add(jcbOpt10);
// Create a scroll pane that will scroll the panel. JScrollPane jscrlp = new JScrollPane(jpnl);
// Add that scroll pane to the frame. jfrm.add(jscrlp);

692 chapter 18 Exploring Swing Controls
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new ScrollJPanelDemo();
} });
} }
JList
In Swing, the basic list class is called JList. It supports the selection of one or more items from a list. Although the list often consists of strings, it is possible to create a list of just about any object that can be displayed. JList is so widely used in Java that it is likely that you have seen one before.
In the past, the items in a JList were represented as Object references. However, with the release of JDK 7, JList was made generic and is now declared like this:
class JList
Here, E represents the type of the items in the list. As a result, JList is now type-safe.
JList provides several constructors. The one used here is JList(E[ ] items)
This creates a JList that contains the items in the array specified by items.
Although a JList will work properly by itself, most of the time you will wrap a JList inside a JScrollPane. This way, long lists will automatically be scrollable, which simplifies GUI design. It also makes it easy to change the number of entries in
a list without having to change the size of the JList component.
A JList generates a ListSelectionEvent when the user makes or changes a selec-
tion. This event is also generated when the user deselects an item. It is handled by implementing ListSelectionListener. This listener specifies only one method, called valueChanged( ), which is shown here:
void valueChanged(ListSelectionEvent le)
Here, le is a reference to the event. Although ListSelectionEvent does provide some methods of its own, often you will interrogate the JList object itself to determine what has occurred. Both ListSelectionEvent and ListSelectionListener are packaged in javax.swing.event.

Java programming 693
By default, a JList allows the user to select multiple ranges of items within the list, but you can change this behavior by calling setSelectionMode( ), which is defined by JList. It is shown here:
void setSelectionMode(int mode)
Here, mode specifies the selection mode. It must be one of these values defined by
ListSelectionModel (which is the model used by JList):
SINGLE_SELECTION SINGLE_INTERVAL_SELECTION MULTIPLE_INTERVAL_SELECTION
The default, multiple-interval selection, lets the user select multiple ranges of items within a list. With single-interval selection, the user can select one range of items. With single selection, the user can select only a single item. Of course, a single item can be selected in the other two modes, too. It’s just that they also allow a range to be selected.
You can obtain the index of the first item selected, which will also be the index of the only selected item when using single-selection mode, by calling getSelectedIndex( ), shown here:
int getSelectedIndex( )
Indexing begins at zero. So, if the first item is selected, this method will return 0. If no item is selected, –1 is returned.
Instead of obtaining the index of a selection, you can obtain the value associated with the selection by calling getSelectedValue( ):
E getSelectedValue( )
It returns a reference to the first selected value. If no value has been selected, it returns null.
The following program demonstrates a simple JList, which holds a list of apple varieties. Each time an apple is selected in the list, a ListSelectionEvent is generated, which is handled by the valueChanged( ) method defined by ListSelectionListener. It responds by obtaining the index of the selected item and displaying the name of the selected apple in a label. Notice that it sets the preferred size of the list by calling setPreferredSize( ).
// Demonstrate a simple JList.
// This program requires JDK 7 or later.
import javax.swing.*; import javax.swing.event.*; import java.awt.*;
import java.awt.event.*;

694 chapter 18 Exploring Swing Controls class JListDemo {
JList jlst; JLabel jlab; JScrollPane jscrlp;
// Create an array of apple varieties.
String[] apples = { “Winesap”, “Cortland”, “Red Delicious”,
“Golden Delicious”, “Gala”, “Fuji”, “Granny Smith”, “Jonathan” };
JListDemo() {
// Create a new JFrame container. JFrame jfrm = new JFrame(“JList Demo”);
// Specify FlowLayout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(240, 200);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a JList.
jlst = new JList(apples);
Create a JList from an array of strings.
// Set the list selection mode to single- selection. jlst.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
// Add list to a scroll pane. Put the JList in a jscrlp = new JScrollPane(jlst); scroll pane.
// Set the preferred size of the scroll pane. jscrlp.setPreferredSize(new Dimension(120, 90));
// Make a label that displays the selection. jlab = new JLabel(“Please Choose an Apple.”);
// Add selection listener for the list. jlst.addListSelectionListener(new ListSelectionListener() {
Set the selection mode to single selection.
public void valueChanged(ListSelectionEvent le) { // Get the index of the changed item.
int idx = jlst.getSelectedIndex();
// Display selection, if item was selected. if(idx != -1)
Listen for selection events.
Get the index of the current selection.
jlab.setText(“Current selection: ” + apples[idx]);

else // Otherwise, reprompt. jlab.setText(“Please Choose an Apple.”);
} });
// Add the list and label to the content pane. jfrm.add(jscrlp);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new JListDemo();
} });
} }
Output from the list example is shown here:
Something you might like to experiment with is selecting an item in a list under program control. This can be done by calling setSelectedIndex( ), which is shown here:
void setSelectedIndex(int index)
Java programming 695

696 chapter 18 Exploring Swing Controls
Here, index specifies the index of the item in the list that you want to select. The index is zero-based, which means the first item in the list is at index zero. You can clear a selection under program control by calling clearSelection( ):
void clearSelection( )
After this method executes, all selections are cleared.
ask the Expert
Q You mention in the discussion of JList that the example sets the size of a Acomponent by use of setPreferredSize( ). Can you explain?
Yes. By default, the size of a component is determined by its contents and by
the layout manager. However, you can explicitly specify a preferred size for a component by calling setPreferredSize( ), which is defined by JComponent. It is shown here.
void setPreferredSize(Dimension newPS )
Here, newPS specifies the new preferred dimension for the component. The
Dimension class is part of the java.awt package. Here is one of its constructors: Dimension(int w, int h)
Here, w specifies the width and h specifies the height.
Once you have set the preferred size, a layout manager will use those dimen-
sions as a guide to properly sizing the component. Understand, though, that some layout managers, such as GridLayout, will ignore those dimensions.
One last point: you can also specify a minimum size and a maximum size by calling setMinimumSize( ) and setMaximumSize( ), also defined by JComponent. These are shown here.
void setMaximumSize(Dimension newSize) void setMinimumSize(Dimension newSize)
As with setPreferredSize( ), the dimensions set by these methods are suggestions that can be ignored by the layout manager.
JComboBox
Swing provides a combo box (a combination of a text field and a drop-down list) through the JComboBox class. In the past, the items in a JComboBox were repre- sented as Object references. However, with the release of JDK 7, JComboBox was made generic and is now declared like this:
class JComboBox
Here, E is the type of elements held in the list.

Java programming 697
A combo box normally displays one entry, but it will also display a drop-down list that allows a user to select a different entry. You can also create a combo box that lets the user enter a selection into the text field, but we won’t do so here.
The JComboBox constructor used by the example is shown here: JComboBox(E[ ] items)
Here, items is an array that initializes the combo box. Other constructors are available. JComboBox generates an action event when the user selects an item from the list. JComboBox also generates an item event when the state of selection changes, which occurs when an item is selected or deselected. Thus, changing a selection means that two item events will occur: one for the deselected item and another for the selected item. Often, it is sufficient to simply listen for action events, but both event types are
available for your use.
One way to obtain the item selected in the list is to call getSelectedItem( ) on the
combo box. It is shown here: Object getSelectedItem( )
You will need to cast the returned value into the type of object stored in the list.
The following example demonstrates JComboBox by reworking the previous
JList example.
// Demonstrate a simple combo box.
// This program requires JDK 7 or later.
import javax.swing.*; import java.awt.*; import java.awt.event.*;
class JComboBoxDemo {
JComboBox jcbb; JLabel jlab;
// Create an array of apple varieties.
String[] apples = { “Winesap”, “Cortland”, “Red Delicious”,
“Golden Delicious”, “Gala”, “Fuji”, “Granny Smith”, “Jonathan” };
JComboBoxDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JComboBox Demo”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(380, 240);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

698 chapter 18 Exploring Swing Controls // Create a JComboBox
jcbb = new JComboBox(apples);
// Make a label that displays the selection. jlab = new JLabel(“Please Choose an Apple.”);
// Add action listener for the combo box. jcbb.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
// Get a reference to the item selected. String item = (String) jcbb.getSelectedItem();
// Display the selected item.
jlab.setText(“Current selection: ” + item); }
});
// Add the combo box and label to the content pane. jfrm.add(jcbb);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new JComboBoxDemo();
} });
} }
Output from the combo box example is shown here:
Create a JComboBox from an array of strings.
Listen for action
events on the combo box.
Get the selected item.

Java programming 699
One useful combo box feature that you might like to try is its ability to add or remove items from the drop-down list dynamically, during program execution. This feature is supported by the methods addItem( ) and removeItem( ), shown here:
void addItem(E item)
void removeItem(Object item)
Here, item is the item to be added or removed. One important point: These methods are available only to combo boxes that are mutable. Fortunately, this is the case by default for JComboBox. When an item is added, it is added to the end of the list.
1. What control creates a list?
2. In a JList, the index of the first selected item in a list can be obtained by using
what method?
3. In a JComboBox, what method obtains the current selection?
trEES
A tree is a component that presents a hierarchical view of data. The user has the abil- ity to expand or collapse individual subtrees in this display. Trees are implemented in Swing by the JTree class. Two of its constructors are shown here:
JTree(Object[ ] obj) JTree(TreeNode tn)
In the first form, the tree is constructed from the elements in the array obj. In the sec- ond form, the tree whose root node is specified by tn specifies the tree.
Although JTree is packaged in javax.swing, its support classes and interfaces are packaged in javax.swing.tree. This is because the number of classes and interfaces needed to support JTree is quite large.
A JTree generates a variety of events. The one handled by the sample program shown in this section is TreeSelectionEvent. To listen for this event, implement TreeSelectionListener. It defines only one method, called valueChanged( ), which receives the TreeSelectionEvent object. It is shown here:
void valueChanged(TreeSelectionEvent te)
Answers:
1. JList
2. getSelectedIndex( )
3. getSelectedItem( )
progress Check

700 chapter 18 Exploring Swing Controls
You can obtain the path to the selected object by calling getPath( ), shown here,
on the event object. TreePath getPath( )
It returns a TreePath object that describes the path to the changed node. The TreePath class encapsulates information about a path to a particular node in a tree. It provides several constructors and methods. Here, only one is used: getLastPathComponent( ). Its general form is shown here:
Object getLastPathComponent( )
It returns the last node in the currently selected path.
The TreeNode interface declares methods that obtain information about a tree
node. For example, it is possible to obtain a reference to the parent node or an enu- meration of the child nodes. The MutableTreeNode interface extends TreeNode. It declares methods that can insert and remove child nodes or change the parent node.
The DefaultMutableTreeNode class implements the MutableTreeNode inter- face. It represents a node in a tree. One of its constructors is shown here:
DefaultMutableTreeNode(Object obj)
Here, obj is the object to be enclosed in this tree node. The new tree node doesn’t have a parent or children.
To create a hierarchy of tree nodes, the add( ) method of DefaultMutableTreeNode can be used. It is shown here:
void add(MutableTreeNode child)
Here, child is a mutable tree node that is to be added as a child to the current node. JTree does not provide any scrolling capabilities of its own. Instead, a JTree is typically placed within a JScrollPane. This way, a large tree can be scrolled through
a smaller viewport.
Here are the steps you can follow to use a tree:
1. Create an instance of JTree.
2. Add nodes to the tree.
3. Create a JScrollPane and specify the tree as the object to be scrolled.
4. Add the scroll pane to the content pane.
The following example illustrates how to create a tree and handle selections. It creates a tree that organizes several of Java’s keywords. The program creates a DefaultMutableTreeNode instance labeled “Java Keywords”. This is the root of the tree hierarchy. Additional subtrees for types and loops are created. Terminal nodes are added to these subtrees that correspond to keywords. In all cases, the add( ) method is called to connect these nodes to the tree. A reference to the root node in the tree is passed as the argument to the JTree constructor. The tree is then provided as the argument to the JScrollPane constructor. This scroll pane is then added to the content pane. Next, a label is created and added to the content pane.

Java programming 701
The tree selection is displayed in this label. To receive selection events from the tree, a TreeSelectionListener is registered for the tree. Inside the valueChanged( ) method, the current selection is obtained and displayed. Although this example displays only a few of Java’s keywords, you might enjoy expanding it to include additional keywords.
// Demonstrate JTree. import java.awt.*;
import javax.swing.event.*; import javax.swing.*; import javax.swing.tree.*;
public class JTreeDemo { JTree tree;
JLabel jlab;
JTreeDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JTree Example”);
// Give the frame an initial size. jfrm.setSize(300, 240);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create root node of tree.
DefaultMutableTreeNode root = Create the root node.
new DefaultMutableTreeNode(“Java Keywords”);
// Create subtree for types.
DefaultMutableTreeNode types = new DefaultMutableTreeNode(“Types”); root.add(types);
// Create subtree for floating point types. DefaultMutableTreeNode fpTypes =
new DefaultMutableTreeNode(“Floating Point”); types.add(fpTypes);
fpTypes.add(new DefaultMutableTreeNode(“float”)); fpTypes.add(new DefaultMutableTreeNode(“double”));
// Create subtree for integer types. DefaultMutableTreeNode intTypes =
new DefaultMutableTreeNode(“Integer”); types.add(intTypes);
intTypes.add(new DefaultMutableTreeNode(“byte”)); intTypes.add(new DefaultMutableTreeNode(“short”)); intTypes.add(new DefaultMutableTreeNode(“int”)); intTypes.add(new DefaultMutableTreeNode(“long”));
Create subtree for types and add it to the root.
Create the floating-point types subtree.
Create the integer types subtree.

702 chapter 18 Exploring Swing Controls
// Create nodes for char and boolean. types.add(new DefaultMutableTreeNode(“char”)); types.add(new DefaultMutableTreeNode(“boolean”));
Add nodes for char and boolean.
// Create subtree for loops.
DefaultMutableTreeNode loops = new DefaultMutableTreeNode(“Loops”); root.add(loops);
loops.add(new DefaultMutableTreeNode(“for”));
loops.add(new DefaultMutableTreeNode(“while”));
loops.add(new DefaultMutableTreeNode(“do”));
Create subtree for loops.
// Create the tree.
tree = new JTree(root); Construct a JTree from the tree just created.
// Add the tree to a scroll pane. JScrollPane jsp = new JScrollPane(tree);
Wrap the tree in a scroll
pane.
// Add the scroll pane to the center of the default BorderLayout. jfrm.add(jsp);
// Add the label to the south region of the default BorderLayout. jlab = new JLabel(“Select from the tree.”);
jfrm.add(jlab, BorderLayout.SOUTH);
// Handle tree selection events. tree.addTreeSelectionListener(new TreeSelectionListener() {
public void valueChanged(TreeSelectionEvent tse) { jlab.setText(“Selection is ” +
tse.getPath().getLastPathComponent());
} });
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new JTreeDemo();
} });
} }

Output from the tree example is shown here:
Java programming 703
Jtable
JTable is a component that displays rows and columns of data. You can drag the cur- sor on column boundaries to resize columns. You can also drag a column to a new position. Depending on its configuration, it is also possible to select a row, column, or cell within the table, and to change the data within a cell. JTable is a sophisticated component that offers many more options and features than are discussed here. (It is perhaps Swing’s most complicated component.) However, in its default configuration, JTable still offers substantial functionality that is easy to use—especially if you sim- ply want to use the table to present data in a tabular format. The overview presented here will give you a general understanding of this powerful component.
Like JTree, JTable has many classes and interfaces associated with it. These are packaged in javax.swing.table.
At its core, JTable is conceptually simple. It is a component that consists of one or more columns of information. At the top of each column is a heading. In addition to describing the data in a column, the heading also provides the mechanism by which the user can change the size of a column or change the location of a column within the table. JTable does not provide any scrolling capabilities of its own. Instead, you will normally wrap a JTable inside a JScrollPane.
JTable supplies several constructors. The one used here is JTable(Object[ ] [ ] data, Object[ ] colHeads)
Here, data is a two-dimensional array of the information to be presented, and colHeads is a one-dimensional array with the column headings.

704 chapter 18 Exploring Swing Controls
A JTable can generate several different events. However, handling these events requires a bit more work than it does to handle the events generated by the previously described components and is beyond the scope of this book. However, if you simply want to use JTable to display data and allow it to be edited (as the following example does), then you don’t need to handle any events.
Here are the steps required to set up a simple JTable that can be used to dis- play data:
1. Create an instance of JTable.
2. Create a JScrollPane object, specifying the table as the object to scroll.
3. Add the scroll pane to the content pane.
The following example illustrates how to create and use a simple table. A one- dimensional array of strings called Headings is created for the column headings. A two-dimensional array of strings called data is created for the table cells. You can see that each element in the array is an array of four strings. These arrays are passed to the JTable constructor. The table is added to a scroll pane, and then the scroll pane is added to the content pane. The table displays the data in the data array. The default table configuration also allows the contents of a cell to be edited. Changes affect the underlying array, which is data in this case.
// Demonstrate JTable. import java.awt.*; import javax.swing.*;
public class JTableDemo { JTableDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JTable Example”);
// Give the frame an initial size. jfrm.setSize(400, 300);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Initialize column headings.
String[] Headings = { “Name”, “Student ID”, “Midterm”, “Final” };
// Initialize data. String[][] data = {
{ “Tom”, ” 4-616″, ” 97″, ” 87″ },
{ “Ken”, ” 3-786″, ” 88″, ” 95″ },
{ “Rachel”, ” 4-674″, ” 92″, ” 83″ }, { “Sherry”, ” 3-235″, ” 91″, ” 99″ }, { “Adam”, ” 2-923″, ” 76″, ” 96″ },
{ “Jon”, ” 3-561″, ” 84″, ” 80″ },
{ “Stuart”, ” 1-337″, ” 62″, ” 74″ }, { “Mary”, ” 4-731″, ” 68″, ” 58″ },

{ “Todd”, ” 2-924″, ” 82″, ” 72″ },
{ “Shane”, ” 2-434″, ” 93″, ” 91″ }, { “Robert”, ” 3-769″, ” 99″, ” 92″ },
};
// Create the table.
JTable table = new JTable(data, Headings); Create a JTable using the specified
data and headings. JScrollPane jsp = new JScrollPane(table); Wrap the table in a scroll pane.
// Add the scroll pane to the content pane. jfrm.add(jsp);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new JTableDemo();
} });
} }
Output from this example is shown here:
// Add the table to a scroll pane.
Java programming 705

706 chapter 18 Exploring Swing Controls
progress Check
1. A tree control is created by use of what class?
2. When an item in a JTree is selected, what event is generated? 3. What control creates a table?
a BrIEF word aBout ModELS
To support the Model-Delegate architecture described in the preceding chapter, most Swing controls utilize a model that determines how the data associated with a con- trol is handled. For example, the model for a button is defined by the ButtonModel interface. The examples in this chapter have not made explicit use of any of the mod- els associated with a control. The reason is that often your code won’t need to use a model directly because (as a general rule) the component exposes the functionality of the model. Also, for many (perhaps most) uses, the default model provided by the controls is precisely what you want. Thus, there is often no reason to change it. However, Swing does let you work with the model directly, if necessary. This can be helpful in more advanced GUIs. The ability to access the model is another reason why Swing is so powerful.
ask the Expert
Q In addition to the controls you discussed, what other types of controls does Swing offer?
ASwing offers a rich assortment of controls that make it easy to create both pleasing and sophisticated GUIs. First, and most importantly, Swing supports a powerful menu system, which is described in Chapter 19. Second, it supports several built-in dialog controls; these are described in Chapter 20. Finally, Swing supports several other user-interface controls. For example, here are a few more that you will find interesting. Their names indicate their function.
You will want to explore these, and other, Swing controls as you advance in your GUI programming skills.
JFormattedTextField
JPasswordField
JProgressBar
JScrollBar
JSlider
JSpinner
JTabbedPane
JTextArea
JToolBar
Answers:
1. JTree
2. TreeSelectionEvent 3. JTable

Java programming 707
ExErCISES
1. Does JLabel generate an ActionEvent?
2. What event is generated when a push button is pressed?
3. Can JButton include an icon?
4. What control toggles between two states: selected and cleared?
5. When using JTextField, cut and paste is supported by what methods?
6. Show how to create a text field that has 32 columns.
7. Can a JTextField have its action command set? If so, how?
8. What Swing component creates a check box? What event is generated when
a check box is selected or deselected?
9. JRadioButton creates a list of buttons shaped like radios. True or False?
10. JList displays a list of items from which the user can select. True or False?
11. What event is generated when the user selects or deselects an item in a
JList?
12. What does JScrollPane do?
13. What method sets the selection mode of a JList? What method obtains the
index of the first selected item?
14. To display information in a tabular format, you can use __________.
15. To display information in a tree format, you can use ___________.
16. What is JComboBox?
17. Enhance the JCheckBoxDemo program discussed in this chapter so that the
text for each check box is red if the check box is selected and black if it is unselected. To set the text color to red, use HTML for the text and surround the text with the tags and .
18. Change the JCheckBoxDemo program discussed in this chapter by add-
ing a new JButton with text “Count”. When the button is clicked, the jlabSupported label displays the number of checked check boxes instead of a list of the supported operating systems.
19. Modify the program in Try This 18-2 so that the label jlabOptions is not part of the scroll pane and is centered over the top of all the check boxes regard- less of the size of the window. To do so, add jlabOptions to the north side
of the content pane of the window. To the center of the content pane, add the scrolling pane with the check boxes.
20. Two constructors for the JTree class were mentioned in this chapter, but only the second one was used. The first constructor has an array of Objects as its parameter. How is that array converted into a tree? That is, what is the root of the tree, and what are the other nodes? To find out, write a small test program.
21. In the section describing the JTree class, we used the term “root” for the node that is passed as an argument to the JTree constructor. Why use the word “root?”

708 chapter 18 Exploring Swing Controls
22. In the section describing the JTree class, we used the terms “parent node,” “child node,” “subtree,” and “terminal node.” Define these terms in your own words.
23. Write a program that creates a JFrame. The JFrame displays a JTree show- ing the inheritance hierarchy for the Java Swing classes we discussed in this chapter. The root of the tree is the JComponent class. It has nine children: AbstractButton, JComboBox, JLabel, JList, JScrollPane, JTable, JTextComponent, JTree, and JPanel. The AbstractButton class has two children: JButton and JToggleButton. The JToggleButton class has two children: JCheckBox and JRadioButton. The JTextComponent class has one child: JTextField. Put the tree in a scrolling pane. No events need to be dealt with.
24. Rework the Help demo in Try This 4-1 in Chapter 4 so that it uses a JList to display the help topics in a window. Use the JList constructor that takes an array as its parameter. The array should contain the topics (as strings). When the user clicks on an item in the list, the help information on that topic is displayed in a label at the bottom of the window.
25. Get any three pictures you want. Then write a program that creates a window containing one JToggleButton only. The button displays the first picture. When you hover the mouse over the button, it displays the second picture. When you click the button to select it, it displays the third picture. The JToggleButton class has a setSelectedIcon( ) method that sets the icon to be displayed when the button is selected. It looks like this:
void setSelectedIcon(Icon selectedIcon)
26. Modify the JComboBoxDemo example in the text so that, if an item in the JComboBox is selected, that item is deleted from the JComboBox.
27. Write a program that creates a window with the following contents:
A. a label centered across the top saying “Choose a color and style”.
B. a label centered across the bottom saying “Sample text”.
C. a column on the left consisting of a label saying “Style” and two check
boxes labeled “Bold” and “Italics”.
D. a column on the right consisting of a label saying “Color” and three radio
buttons saying “Red”, “Green”, “Black”.
The black radio button is initially selected. If the user clicks on a differ-
ent radio button, the sample text at the bottom is changed to the new color. If the user checks one or more check boxes on the left, the styles selected are applied to the sample text on the bottom. To change the style and color of the text, use HTML. For example, for red text, set the text of the bot- tom label to “Sample text.“. For bold and italics and red text, set the text of the label to “Sample text“. The tag indicates bold text, and indicates italicized text.
28. Both JComboBoxes and JLists display a list of items from which you can select one item. Why have two controls that do the same thing?

Java programming 709
29. Write a program that creates a window. In the window put a JTable with two rows and two columns, with column headers “First name” and “Last name”. Put arbitrary names in the two rows. Include a “Sort” button under the table. When the button is clicked, the program checks whether the two rows are sorted alphabetically by last name. If not, it swaps the data in the two rows. Use the getValueAt( ) and setValueAt( ) methods of the JTable class to do the checking and swapping. Here are the details of these methods:
Object getValueAt(int row, int column)
void setValueAt(Object newValue, int row, int column)
The first method returns the value at the given row and column. Note that its
return type is Object, so you will have to cast the value it returns to a string. Also, note that rows and columns start with index 0. The second method sets the value at the given row and column to the new value.
30. What is the difference between a check box and a radio button that is not part of any group of radio buttons?
31. There are two ways to handle events in JToggleButtons: You can create
an ItemListener for handling ItemEvents in the button, or you can use an ActionListener for handling ActionEvents in the button. Is there any advan- tage to using one instead of the other?
32. What is the main difference between a JButton and a JToggleButton?
33. Write a program that creates a window. In the window add a JList of strings.
The JList should use multiple selection mode. (To select more than one item, hold down the command or control key on your keyboard when you click
on an item.) Every time an item is selected in the list, your program should compare that item against all other selected items. If the selected items all are equal, a label at the bottom of the window should display the message “All x selections are equal” where x is the number of selected items. If not, it should display the message “They are not all equal”. To get all the selected items, use the getSelectedIndices( ) method of the JList class. Here are the details:
int[ ] getSelectedIndices( )
It returns an array of the indices of the selected items. If there are no selected items, it returns an array of length 0.

chapter
Working with Menus
key skills & concepts
j Know menu basics j JMenuBar
j JMenu
j JMenuItem
j Create a main menu
j Add mnemonics and accelerators to menu items j Add images and tooltips to menu items
j JRadioButtonMenuItem
j JCheckBoxMenuItem
The modern GUI is comprised of two principal features. The first are controls, which were introduced in the previous chapter. The second are menus, which are introduced here. Menus form an integral part of all but the simplest applications because they display a program’s functionality to the user. Because of their importance, Swing pro- vides extensive support for menus. Although we can’t look at all of their features here, this chapter describes their fundamentals along with several commonly used options.
Menu Basics
The Swing menu system is supported by several classes. The ones discussed in this chapter are shown here:
Menu Classes
Description
JMenuBar
An object that holds the top-level menu for the application.
JMenu
A standard menu. A menu consists of one or more JMenuItems.
JMenuItem
An object that populates menus.
JCheckBoxMenuItem
A check box menu item.
JRadioButtonMenuItem
A radio button menu item.
711
19

712 chapter 19 Working with Menus
Although menus may seem a bit intimidating at first, Swing menus are very easy to use. Swing allows a high degree of customization, if desired, but you will often use the menu classes as-is because they support all of the most needed options. For example, you can easily add images and keyboard shortcuts to a menu.
Here is brief overview of how the classes fit together. To create a main menu for an application, you will first create a JMenuBar object. This class is, loosely speak- ing, a container for menus. To the JMenuBar instance, you will add instances of JMenu. Each JMenu object defines a menu. That is, each JMenu object contains one or more selectable items. The items displayed by a JMenu are objects of JMenuItem. Thus, a JMenuItem defines a selection that can be chosen by the user.
In addition to “standard” menu items, you can also include check boxes and radio buttons in a menu. A check box menu item is created by JCheckBoxMenuItem. A radio button menu item is created by JRadioButtonMenuItem. Both of these classes extend JMenuItem. They can be used in both standard menus and popup menus.
One key aspect of Swing menus is that each menu item extends AbstractButton. Recall that AbstractButton is also the superclass of all of Swing’s button compo- nents, such as JButton. Thus, all menu items are, essentially, buttons. Obviously, they won’t actually look like buttons when used in a menu, but they will, in many ways, act like buttons. For example, selecting a menu item generates an action event in the same way that pressing a button does.
Another important point is that JMenuItem is a superclass of JMenu. This allows the creation of submenus, which are, essentially, menus within menus. To create a submenu, you first create and populate a JMenu object and then add it to another JMenu object. You will see this process in action in the following section.
As mentioned previously, when a menu item is selected, an action event is gener- ated. The action command string associated with that action event will, by default, be the name of the selection. Thus, you can determine which item was selected by examining the action command. Of course, there are other approaches. For example, you can also use a separate anonymous inner class to handle each menu item’s action events. Be aware, however, that menu systems tend to get quite large. Using a sepa- rate class to handle events for each menu item can cause a large number of classes to be created.
1. What class creates a top-level menu bar?
2. What class creates a menu item?
3. Can a menu item be a check box or a radio button?
Answers:
1. JMenuBar 2. JMenuItem 3. Yes.
progress check

an OvervieW Of JMenuBar, JMenu,
and JMenuitem
Before you can create a menu, it’s necessary to know something about the three core menu classes: JMenuBar, JMenu, and JMenuItem. These form the minimum set of classes needed to construct a main menu for an application. Thus, these classes form the foundation of Swing’s menu system.
JMenuBar
As mentioned, JMenuBar is essentially a container for menus. Like all components, it inherits JComponent (which inherits Container and Component). It has only one constructor, which is the default constructor. Therefore, the menu bar will initially be empty, and you will need to populate it with menus prior to use. Each application has one and only one menu bar.
JMenuBar defines several methods, but often you will only need to use one: add( ). The add( ) method adds a JMenu to the menu bar. It is shown here:
JMenu add(JMenu menu)
Here, menu is a JMenu instance that is added to the menu bar. A reference to the menu is returned. Menus are positioned in the bar from left to right, in the order in which they are added. If you want to add a menu at a specific location, then use this version of add( ), which is inherited from Container:
Component add(Component menu, int idx)
Here, menu is added at the index specified by idx. Indexing begins at 0, with 0 being the leftmost menu.
In some cases you might want to remove a menu that is no longer needed. You can do this by calling remove( ), which is inherited from Container. It has these two forms:
void remove(Component menu) void remove(int idx)
Here, menu is a reference to the menu to remove, and idx is the index of the menu to be removed. Indexing begins at 0.
Another method that is sometimes useful is getMenuCount( ), shown here: int getMenuCount( )
It returns the number of elements contained within the menu bar.
Once a menu bar has been created and populated, it is added to a JFrame by call- ing setJMenuBar( ) on the JFrame instance. The setJMenuBar( ) method is shown
here:
void setJMenuBar(JMenuBar mbar)
Here, mbar is a reference to the menu bar. The menu bar will be displayed in a posi- tion determined by the look and feel. Usually, this is at the top of the window.
Java programming 713

714 chapter 19 Working with Menus JMenu
JMenu encapsulates a menu, which is populated with JMenuItems. As mentioned, it is derived from JMenuItem. This means that one JMenu can be a selection in another JMenu. This enables one menu to be a submenu of another. JMenu defines several constructors. The one we will use in this chapter is shown here:
JMenu(String name)
It creates a menu that has the title specified by name. The menu is empty until menu items are added to it.
JMenu defines many methods. Here are brief descriptions of some of the more commonly used ones. To add an item to the menu, use the add( ) method, which has a number of forms, including the two shown here:
JMenuItem add(JMenuItem item) JMenuItem add(Component item, int idx)
Here, item is the menu item to add. The first form adds the item to the end of the menu. The second form adds the item at the index specified by idx. As expected, indexing starts at 0. (The second version is inherited from Container. Typically, you will pass a JMenuItem reference to item.) Both return a reference to the item added. As a point of interest, you can also use insert( ) to add menu items to a menu.
You can add a visual separator to a menu by calling addSeparator( ), shown here: void addSeparator( )
The separator is added onto the end of the menu. You can insert a separator at a speci- fied index by calling insertSeparator( ), shown next:
void insertSeparator(int idx)
Here, idx specifies the zero-based index at which the separator will be added.
You can remove an item from a menu by calling remove( ). Here are two of its
forms:
void remove(JMenuItem menu)
void remove(int idx)
Here, menu is a reference to the item to remove, and idx is the index of the item to remove.
You can obtain the number of items in the menu by calling getMenuComponent- Count( ), shown here:
int getMenuComponentCount( )
You can get an array of the items in the menu by calling getMenuComponents( ), shown next:
Component[ ] getMenuComponents( ) An array containing the components is returned.

JMenuitem
JMenuItem encapsulates an element in a menu. This element can be either a selection linked to some program action, such as Save or Close, or it can cause a submenu to be displayed. As mentioned, JMenuItem is derived from AbstractButton, and every item in a menu can be thought of as a special kind of button. Therefore, when a menu item is selected, an action event is generated. (This is similar to the way a JButton fires an action event when it is pressed.) JMenuItem defines several constructors. Here is the one we will use first:
JMenuItem(String name)
This creates a menu item with the name specified by name.
Because menu items inherit AbstractButton, you have access to the functionality
provided by AbstractButton. For example, you can enable/disable a menu item by calling setEnabled( ), shown here:
void setEnabled(boolean enable)
If enable is true, the menu item is enabled. If enable is false, the item is disabled and
cannot be selected.
1. What method adds an item to a menu?
2. What does addSeparator( ) do?
3. A menu item cannot be disabled. True or False?
create a Main Menu
Perhaps the most commonly used menu is the main menu. This is the menu defined by the menu bar, and it is the menu that defines the main functionality of an application. Fortunately, Swing makes it very easy to create and manage the main menu. This sec- tion shows how to construct a basic main menu. Subsequent sections will show how to add options to it.
Constructing the main menu requires several steps. First, create the JMenuBar object that will hold the menus. Next, construct each menu that will be in the menu bar. In general, a menu is constructed by first creating a JMenu object and then add- ing JMenuItems to it. After the menus have been created, add them to the menu bar. The menu bar, itself, must then be added to the frame by calling setJMenuBar( ). Finally, for each menu item, you must add an action listener that handles the action event fired when the menu item is selected.
Answers:
1. add( )
2. It adds a separator (which visually separates menu items) to a menu.
3. False.
Java programming 715
progress check

716 chapter 19 Working with Menus
The best way to understand the process of creating and managing menus is to work through an example. Here is a program that creates a simple menu bar that contains three menus. The first is a standard File menu that contains Open, Close, Save, and Exit selections. The second menu is called Options, and it contains two submenus called Colors and Priority. The third menu is called Help, and it has one item called About. When a menu item is selected, the name of the selection is displayed in a label in the content pane. Sample output is shown here:
// Demonstrate a simple main menu.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class MenuDemo implements ActionListener {
JLabel jlab;
MenuDemo() {
// Create a new JFrame container. JFrame jfrm = new JFrame(“Menu Demo”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(220, 200);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will display the menu selection. jlab = new JLabel();

// Create the menu bar. JMenuBar jmb = new JMenuBar();
// Create the File menu.
JMenu jmFile = new JMenu(“File”);
JMenuItem jmiOpen = new JMenuItem(“Open”); JMenuItem jmiClose = new JMenuItem(“Close”); JMenuItem jmiSave = new JMenuItem(“Save”); JMenuItem jmiExit = new JMenuItem(“Exit”); jmFile.add(jmiOpen);
jmFile.add(jmiClose);
jmFile.add(jmiSave);
jmFile.addSeparator();
jmFile.add(jmiExit);
jmb.add(jmFile);
Java programming 717
Create a menu bar.
Create the File menu items.
Add the File menu items to the File menu. Add the File menu to the menu bar.
// Create the Options menu.
JMenu jmOptions = new JMenu(“Options”);
Create the Options menu.
// Create the Colors submenu.
JMenu jmColors = new JMenu(“Colors”);
JMenuItem jmiRed = new JMenuItem(“Red”);
JMenuItem jmiGreen = new JMenuItem(“Green”);
JMenuItem jmiBlue = new JMenuItem(“Blue”);
jmColors.add(jmiRed);
jmColors.add(jmiGreen);
jmColors.add(jmiBlue);
jmOptions.add(jmColors); Add Colors submenu to the Options menu.
// Create the Priority submenu.
JMenu jmPriority = new JMenu(“Priority”); JMenuItem jmiHigh = new JMenuItem(“High”); JMenuItem jmiLow = new JMenuItem(“Low”); jmPriority.add(jmiHigh); jmPriority.add(jmiLow); jmOptions.add(jmPriority);
Create the Colors submenu.
Add Priority submenu to the Options menu.
Create the Priority submenu.
Create the Reset item and add it to the Options menu.
// Create the Reset menu item.
JMenuItem jmiReset = new JMenuItem(“Reset”); jmOptions.addSeparator(); jmOptions.add(jmiReset);
// Finally, add the entire Options menu to the menu bar
jmb.add(jmOptions);
// Create the Help menu.
JMenu jmHelp = new JMenu(“Help”);
JMenuItem jmiAbout = new JMenuItem(“About”); jmHelp.add(jmiAbout);
jmb.add(jmHelp);
Add the Options menu to the menu bar.
Create the Help menu
and add it to the menu bar.

718 chapter 19 Working with Menus
// Add action listeners for the menu items. jmiOpen.addActionListener(this); jmiClose.addActionListener(this); jmiSave.addActionListener(this); jmiExit.addActionListener(this); jmiRed.addActionListener(this); jmiGreen.addActionListener(this); jmiBlue.addActionListener(this); jmiHigh.addActionListener(this); jmiLow.addActionListener(this); jmiReset.addActionListener(this); jmiAbout.addActionListener(this);
// Add the label to the content pane. jfrm.add(jlab);
// Add the menu bar to the frame. jfrm.setJMenuBar(jmb);
// Display the frame.
jfrm.setVisible(true); }
// Handle menu item action events.
public void actionPerformed(ActionEvent ae) {
// Get the action command from the menu selection. String comStr = ae.getActionCommand();
// If user chooses Exit, then exit the program. if(comStr.equals(“Exit”)) System.exit(0);
// Otherwise, display the selection.
jlab.setText(comStr + ” Selected”); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new MenuDemo();
} });
} }
Add the action listeners for the menu items.
Add the menu bar to the frame.
Exit the program when the user chooses Exit from the File menu.
Let’s examine in detail how the menus are created, beginning with the MenuDemo constructor. It begins with the usual statements. Then, the menu bar is constructed, and a reference to it is assigned to jmb by this statement:
// Create the menu bar. JMenuBar jmb = new JMenuBar();

Java programming 719 Next, the File menu jmFile and its menu entries are created by this sequence:
// Create the File menu.
JMenu jmFile = new JMenu(“File”);
JMenuItem jmiOpen = new JMenuItem(“Open”); JMenuItem jmiClose = new JMenuItem(“Close”); JMenuItem jmiSave = new JMenuItem(“Save”); JMenuItem jmiExit = new JMenuItem(“Exit”);
The names Open, Close, Save, and Exit will be shown as selections in the menu. Next, the menu entries are added to the File menu by this sequence:
jmFile.add(jmiOpen); jmFile.add(jmiClose); jmFile.add(jmiSave); jmFile.addSeparator(); jmFile.add(jmiExit);
Finally, the file menu is added to the menu bar by this line:
jmb.add(jmFile);
Once the preceding code sequence completes, the menu bar will contain one entry: File. The File menu will contain four selections in this order: Open, Close, Save, and Exit. However, notice that a separator has been added before Exit. This visually sepa- rates the Exit menu item from the preceding three selections.
The Options menu is constructed using the same basic process as the File menu. However, the Options menu consists of two submenus, Colors and Priority, and a Reset entry. The submenus are first constructed individually and then added to the Options menu. The Reset item is added last. Then, the Options menu is added to the menu bar. The Help menu is constructed using the same process.
Notice that MenuDemo implements the ActionListener interface, and action events generated by a menu selection are handled by the actionPerformed( ) method defined by MenuDemo. Therefore, the program adds this as the action listener for the menu items. Notice that no listeners are added to the Colors or Priority items because they are not actually selections. They simply activate submenus.
Finally, the menu bar is added to the frame by the following line:
jfrm.setJMenuBar(jmb);
Menu bars are not added to the content pane. They are added directly to the JFrame.
The actionPerformed( ) method handles the action events generated by the menu. It obtains the action command string associated with the selection by calling getAction- Command( ) on the event. It stores a reference to this string in comStr. Then it tests the action command against “Exit”, as shown here:
if(comStr.equals(“Exit”)) System.exit(0);
If the action command is “Exit”, then the program terminates by calling System.exit( ). This method causes the immediate termination of a program and passes its argument as a status code to the calling process, which is usually the operating system or the browser.

720 chapter 19 Working with Menus
By convention, a status code of 0 means normal termination. Anything else indicates that the program terminated abnormally.
At this point, you might want to experiment a bit with the MenuDemo program. Try adding another menu or adding more items to an existing menu. It is important that you understand the basic menu concepts before moving on because you will be evolving the program throughout the remainder of this chapter.
add MneMOnics and acceleratOrs
tO Menu iteMs
The menu created in the preceding example is functional, but it is possible to make it better. In real applications, a menu usually includes support for keyboard shortcuts. These come in two forms: mnemonics and accelerators. As it applies to menus, a mnemonic defines a key that lets you select an item from an active menu by typing a key. Thus, a mnemonic allows you to use the keyboard to select an item from a menu that is already being displayed. An accelerator is a key that lets you select a menu item without having to activate the menu first. For example, you might use ctrl-s to activate the “save” function.
A mnemonic can be specified for both JMenuItem and JMenu objects. There are two ways to set the mnemonic for JMenuItem. First, it can be specified when an object is constructed by use of this constructor:
JMenuItem(String name, int mnem)
Here, the mnemonic is specified by mnem. Second, you can set the mnemonic by calling setMnemonic( ). To specify a mnemonic for JMenu, you must call setMnemonic( ). This method is inherited by both classes from AbstractButton and is shown here:
void setMnemonic(int mnem)
Here, mnem specifies the mnemonic. It should be one of the constants defined in java.awt.event.KeyEvent, which defines named constants for the keys on the key- board, such as KeyEvent.VK_A, KeyEvent.VK_B, KeyEvent.VK_C, and so on. The nonalphabetical keys are also defined. Mnemonics are not case sensitive, so in the example of VK_A, typing either a or A will work.
By default, the first matching letter in the menu item will be underscored. In instances in which you want to underscore a letter other than the first match, specify the index of the letter as an argument to setDisplayedMnemonicIndex( ), which is inherited by both JMenu and JMenuItem from AbstractButton. It is shown here:
void setDisplayedMnemonicIndex(int idx)
The index of the letter to underscore is specified by idx.

Java programming 721 An accelerator can be associated with a JMenuItem object. It is specified by
calling setAccelerator( ), shown next: void setAccelerator(KeyStroke ks)
Here, ks is the key combination that is pressed to select the menu item. KeyStroke is a class that contains several factory methods that construct various types of keystroke accelerators. The one used here is
static KeyStroke getKeyStroke(int ch, int modifier)
Here, ch specifies the accelerator character, which is a value of type KeyEvent, previously described. The value of modifier must be one or more of the following constants, defined in the java.awt.event.InputEvent class:
Therefore, if you pass VK_A for the key character and InputEvent.CTRL_DOWN_- MASK for the modifier, the accelerator key combination is ctrl-a.
The following sequence adds both mnemonics and accelerators to the File menu created by the MenuDemo program in the previous section. Here is how this menu looks when activated:
InputEvent.ALT_DOWN_MASK
InputEvent.ALT_GRAPH_DOWN_MASK
InputEvent.CTRL_DOWN_MASK
InputEvent.META_DOWN_MASK
InputEvent.SHIFT_DOWN_MASK

722 chapter 19 Working with Menus
// Create the File menu with mnemonics and accelerators. JMenu jmFile = new JMenu(“File”);
jmFile.setMnemonic(KeyEvent.VK_F);
JMenuItem jmiOpen = new JMenuItem(“Open”, KeyEvent.VK_O);
jmiOpen.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_O,
InputEvent.CTRL_DOWN_MASK));
JMenuItem jmiClose = new JMenuItem(“Close”, KeyEvent.VK_C);
jmiClose.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_C,
InputEvent.CTRL_DOWN_MASK));
JMenuItem jmiSave = new JMenuItem(“Save”, KeyEvent.VK_S);
jmiSave.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_S,
InputEvent.CTRL_DOWN_MASK));
JMenuItem jmiExit = new JMenuItem(“Exit”, KeyEvent.VK_E);
jmiExit.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_E,
InputEvent.CTRL_DOWN_MASK));
In each
case, the mnemonic is the first letter of the item’s name. The accelerator is the same letter in combination with the ctrl key.
The File menu has F as its mnemonic.
After making this change, you can select the File menu by typing alt-f. Then, you can use the mnemonics o, c, s, or e to select an option. Alternatively, you can select a File menu option directly by pressing ctrl-o, ctrl-c, ctrl-s, or ctrl-e.
ask the expert
Q Given that accelerators work both when a menu is displayed and when it is not displayed, why would I want to bother with also defining mnemonics
for menu selections?
AAlthough accelerators can be used by themselves, for the reason stated in your question, they have one downside: they must be used in conjunction with a modifier key, such as ctrl or alt. However, by specifying a mnemonic, you give the user the option of selecting an item by simply typing its key (without a modi- fier) when a menu is displayed. For example, if you make the mnemonic for a Save option the letter S and its accelerator ctrl-s, then when the menu is displayed, the user can select Save by simply typing s, without needing to also press the ctrl key. While it may seem like a small issue, it’s the way that many real applications work. Therefore, to give your programs a professional look and feel, both mnemonics and accelerators are needed.

Java programming 723 add iMages and tOOltips tO Menu iteMs
Menu items are not limited to only text. You can use images instead of text, or use both images and text. The easiest way to add an image is to specify it when the menu item is being constructed. For example, here are the JMenuItem constructors that allow you to add an icon to the menu item:
JMenuItem(Icon image) JMenuItem(String name, Icon image)
The first creates a menu item that displays the image specified by image. The second creates a menu item with the name specified by name and the image specified by image. For example, here an image is added to the About menu item when it is cre- ated:
ImageIcon icon = new ImageIcon(“AboutIcon.gif”); JMenuItem jmiAbout = new JMenuItem(“About”, icon);
After this addition, the icon specified by icon will be displayed next to the text “About” when the Help menu is displayed, as shown here:
You can also add an icon to a menu item after the item has been created by calling setIcon( ) (which is inherited from AbstractButton).
As a point of interest, you can specify a disabled icon, which is shown when the menu item is disabled, by calling setDisabledIcon( ). Normally, when a menu item is disabled, the default icon is shown in gray. If a disabled icon is specified, then that icon is displayed when the menu item is disabled.
A tooltip is a short piece of text that is automatically displayed when the mouse hovers over a component. It is typically used to give the user additional informa- tion about the component. In Swing, you can easily add a tooltip to any lightweight component. The reason is that JComponent (which is, of course, the base class for all Swing lightweight components) supplies a method called setToolTipText( ). It is shown here:
void setToolTipText(String tipStr)

724 chapter 19 Working with Menus
This method adds the tooltip specified by tipStr to the component. Because all menu items inherit JComponent, you can add a tooltip to a menu item. For example, this creates a tooltip for the About item:
jmiAbout.setToolTipText(“Info about the MenuDemo program.”);
1. Both setMnemonic( ) and setAccelerator( ) take objects of type KeyEvent as an argument. True or False?
2. What is the mask for the ctrl key?
3. What method sets a menu item’s tooltip text?
progress check
ask the expert
Q You mention that a tooltip can be added to any lightweight component. Does this mean that I can add tooltips to controls such as buttons, lists, and trees,
for example?
A Yes. You might want to experiment with adding tooltips to some of the exam- ples shown in the previous chapter. Just use the same approach as that shown
for menu items: call setToolTipText( ) on the control.
Try This 19-1 Dynamically Add
and Remove Menu Items
DynMenuDemo.java
It is possible to change the contents of a menu during the execution of your pro- gram. For example, you can add an item when it is needed and remove it when it is no longer needed. You can also change the name of an item at run time. These capabilities make it possible to create dynamic menus that change as necessary to meet the needs of the user. This project demonstrates the process by walking through the steps needed to add and remove additional colors to the Colors menu of the MenuDemo program shown at the start of this chapter.
The project adds a menu item to the Colors menu called More Colors. When More Colors is selected, it causes the colors Yellow, Purple, and Orange to be
Answers:
1. False, setAccelerator( ) requires a KeyStroke object. 2. InputEvent.CTRL_DOWN_MASK
3. setToolTipText( )

Java programming 725
added to the menu, and the More Colors menu item is changed to Fewer Colors. When Fewer Colors is selected, the colors are removed and Fewer Colors is changed back to More Colors. Sample output is shown here:
STEP-By-STEP
1. Copy the MenuDemo program shown at the start of this chapter into a file called DynMenuDemo.java. (If you have been following along, you can use the version of MenuDemo that includes the accelerators, mnemonics, and icon. However, for brevity, the code shown here simply uses the original MenuDemo program as the starting point.)
2. Change the name of the class from MenuDemo to DynMenuDemo. Then, add three JMenuItems called jmiyellow, jmiPurple, and jmiOrange as instance variables. Also, make the local variable jmColors into an instance variable. After these changes, the beginning of the program will look like this:
// Try This 19-1: Add and remove menu items dynamically.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class DynMenuDemo implements ActionListener {
JLabel jlab;
JMenuItem jmiYellow; JMenuItem jmiPurple; JMenuItem jmiOrange;
JMenu jmColors;

726 chapter 19 Working with Menus
3. Create a menu item called jmiMoreLess with the name More Colors and add it to the jmColors menu, as shown here:
// Create the More/Fewer Colors Menu item.
JMenuItem jmiMoreLess = new JMenuItem(“More Colors”); jmColors.add(jmiMoreLess);
4. Create the Yellow, Purple, and Orange color selections like this:
// Create the additional colors. These will be // added or removed on demand.
jmiYellow = new JMenuItem(“Yellow”);
jmiPurple = new JMenuItem(“Purple”);
jmiOrange = new JMenuItem(“Orange”);
5. Add listeners for the new menu items as shown next:
// Add listeners for the additional colors option. jmiMoreLess.addActionListener(this); jmiYellow.addActionListener(this); jmiPurple.addActionListener(this); jmiOrange.addActionListener(this);
6. Change the actionPerformed( ) method to handle the new selections, as shown here:
// Handle menu item action events.
public void actionPerformed(ActionEvent ae) {
// Get the action command from the menu selection. String comStr = ae.getActionCommand();
// If user chooses Exit, then exit the program. if(comStr.equals(“Exit”))
System.exit(0);
else if(comStr.equals(“More Colors”)) {
jmColors.add(jmiYellow); jmColors.add(jmiPurple); jmColors.add(jmiOrange);
JMenuItem mi = (JMenuItem) ae.getSource(); mi.setText(“Fewer Colors”);
} else if(comStr.equals(“Fewer Colors”)) { jmColors.remove(jmiYellow); jmColors.remove(jmiPurple); jmColors.remove(jmiOrange);
JMenuItem mi = (JMenuItem) ae.getSource();
mi.setText(“More Colors”); }
// Otherwise, display the selection.
jlab.setText(comStr + ” Selected”); }

Java programming 727
Notice that when More Colors is selected, the three new colors are added to the Colors menu and the name of the jmiMoreLess menu item is changed to Fewer Colors. When Fewer Colors is chosen, the new colors are removed from the menu and the name of jmiMoreLess is returned to More Colors. Recall that a menu item can be removed from a menu by calling remove( ).
7. After making all of the changes, the program will look like that shown here: // Try This 19-1: Add and remove menu items dynamically.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class DynMenuDemo implements ActionListener {
JLabel jlab;
JMenuItem jmiYellow; JMenuItem jmiPurple; JMenuItem jmiOrange;
JMenu jmColors;
DynMenuDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“Dynamic Menu Demo”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(220, 200);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will display the menu selection. jlab = new JLabel();
// Create the menu bar. JMenuBar jmb = new JMenuBar();
// Create the File menu.
JMenu jmFile = new JMenu(“File”);
JMenuItem jmiOpen = new JMenuItem(“Open”); JMenuItem jmiClose = new JMenuItem(“Close”); JMenuItem jmiSave = new JMenuItem(“Save”); JMenuItem jmiExit = new JMenuItem(“Exit”);

728 chapter 19 Working with Menus
jmFile.add(jmiOpen); jmFile.add(jmiClose); jmFile.add(jmiSave); jmFile.addSeparator(); jmFile.add(jmiExit); jmb.add(jmFile);
// Create the Options menu.
JMenu jmOptions = new JMenu(“Options”);
// Create the Colors submenu.
jmColors = new JMenu(“Colors”);
JMenuItem jmiRed = new JMenuItem(“Red”); JMenuItem jmiGreen = new JMenuItem(“Green”); JMenuItem jmiBlue = new JMenuItem(“Blue”); jmColors.add(jmiRed); jmColors.add(jmiGreen); jmColors.add(jmiBlue);
// Create the More/Fewer Colors Menu item.
JMenuItem jmiMoreLess = new JMenuItem(“More Colors”); jmColors.add(jmiMoreLess);
// Add Colors menu to the Options menu. jmOptions.add(jmColors);
// Create the additional colors. These will be // added or removed on demand.
jmiYellow = new JMenuItem(“Yellow”);
jmiPurple = new JMenuItem(“Purple”);
jmiOrange = new JMenuItem(“Orange”);
// Create the Priority submenu.
JMenu jmPriority = new JMenu(“Priority”); JMenuItem jmiHigh = new JMenuItem(“High”); JMenuItem jmiLow = new JMenuItem(“Low”); jmPriority.add(jmiHigh); jmPriority.add(jmiLow);
// Add the Priority menu to the Options menu. jmOptions.add(jmPriority);
// Create the Reset menu item.
JMenuItem jmiReset = new JMenuItem(“Reset”); jmOptions.addSeparator(); jmOptions.add(jmiReset);
// Finally, add the entire Options menu to the menu bar jmb.add(jmOptions);

Java programming 729
// Create the Help menu.
JMenu jmHelp = new JMenu(“Help”);
JMenuItem jmiAbout = new JMenuItem(“About”); jmHelp.add(jmiAbout);
jmb.add(jmHelp);
// Add action listeners for the menu items. jmiOpen.addActionListener(this); jmiClose.addActionListener(this); jmiSave.addActionListener(this); jmiExit.addActionListener(this); jmiRed.addActionListener(this); jmiGreen.addActionListener(this); jmiBlue.addActionListener(this); jmiHigh.addActionListener(this); jmiLow.addActionListener(this); jmiReset.addActionListener(this); jmiAbout.addActionListener(this);
// Add listeners for the additional colors option. jmiMoreLess.addActionListener(this); jmiYellow.addActionListener(this); jmiPurple.addActionListener(this); jmiOrange.addActionListener(this);
// Add the label to the content pane. jfrm.add(jlab);
// Add the menu bar to the frame. jfrm.setJMenuBar(jmb);
// Display the frame.
jfrm.setVisible(true); }
// Handle menu item action events.
public void actionPerformed(ActionEvent ae) {
// Get the action command from the menu selection. String comStr = ae.getActionCommand();
// If user chooses Exit, then exit the program. if(comStr.equals(“Exit”))
System.exit(0);
else if(comStr.equals(“More Colors”)) {
jmColors.add(jmiYellow); jmColors.add(jmiPurple); jmColors.add(jmiOrange);
JMenuItem mi = (JMenuItem) ae.getSource(); mi.setText(“Fewer Colors”);

730 chapter 19 Working with Menus
} else if(comStr.equals(“Fewer Colors”)) { jmColors.remove(jmiYellow); jmColors.remove(jmiPurple); jmColors.remove(jmiOrange);
JMenuItem mi = (JMenuItem) ae.getSource();
mi.setText(“More Colors”); }
// Otherwise, display the selection.
jlab.setText(comStr + ” Selected”); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new DynMenuDemo();
} });
} }
use JradioButtonMenuitem
and JcheckBoxMenuitem
Although the types of menu items described by the preceding examples are frequently used, Swing defines two others you will find helpful: check boxes and radio buttons. These items can streamline a GUI by allowing a menu to provide functionality that would otherwise require additional, stand-alone components. Also, sometimes includ- ing check boxes or radio buttons in a menu simply seems the most natural place for a specific set of features.
To add a check box to a menu, create a JCheckBoxMenuItem. It inherits JMenuItem. JCheckBoxMenuItem works like a stand-alone check box. For exam- ple, it generates action events and an item event when its state changes. Check boxes are especially useful in menus when you have options that can be selected and you want to display their selected/deselected status.
JCheckBoxMenuItem has several constructors. The two used here are JCheckBoxMenuItem(String name)
JCheckBoxMenuItem(String name, boolean state)
The first creates a check box menu item with the name specified by name. It is not selected. The second creates a check box menu item with the specified name and selection state. If state is true, the box is initially checked; otherwise, it is cleared.

Java programming 731
A radio button can be added to a menu by creating an object of type JRadioButtonMenuItem. It also inherits JMenuItem. JRadioButtonMenuItem works like a stand-alone radio button, generating item and action events. Like stand- alone radio buttons, menu-based radio buttons must be put into a button group in order for them to exhibit mutually exclusive selection behavior.
JRadioButtonMenuItem also has several constructors. These are the two used here: JRadioButtonMenuItem(String name)
JRadioButtonMenuItem(String name, boolean state)
The first creates a radio button menu item that is associated with the name passed in name. It is not selected. The second creates a radio button menu item with the speci- fied name and selection state. If state is true, the button is initially selected; otherwise, it is deselected.
To try check box and radio button menu items, first remove the code that creates the Options menu in the MenuDemo example program. Then substitute the following code sequence, which uses check boxes for the Colors submenu and radio buttons for the Priority submenu. After making the substitution, the Options menu will look like that shown here:
// Create the Options menu.
JMenu jmOptions = new JMenu(“Options”);
// Create the Colors submenu.
JMenu jmColors = new JMenu(“Colors”);
// Use check boxes for colors. This allows
// the user to select more than one color.
// Notice that Red is initially selected.
JCheckBoxMenuItem jmiRed = new JCheckBoxMenuItem(“Red”, true); JCheckBoxMenuItem jmiGreen = new JCheckBoxMenuItem(“Green”); JCheckBoxMenuItem jmiBlue = new JCheckBoxMenuItem(“Blue”);
Use check boxes for the colors.

732 chapter 19 Working with Menus
jmColors.add(jmiRed); jmColors.add(jmiGreen); jmColors.add(jmiBlue); jmOptions.add(jmColors);
// Create the Priority submenu.
JMenu jmPriority = new JMenu(“Priority”);
// Use radio buttons for the priority setting.
// This lets the menu show which priority is used // but also ensures that one and only one priority // can be selected at any one time. Notice that
// the High radio button is initially selected. JRadioButtonMenuItem jmiHigh =
new JRadioButtonMenuItem(“High”, true); JRadioButtonMenuItem jmiLow =
new JRadioButtonMenuItem(“Low”);
jmPriority.add(jmiHigh); jmPriority.add(jmiLow); jmOptions.add(jmPriority);
Use radio buttons for the priorities.
// Create button group for the radio button menu items.
ButtonGroup bg = new ButtonGroup(); bg.add(jmiHigh);
bg.add(jmiLow);
// Create the Reset menu item.
JMenuItem jmiReset = new JMenuItem(“Reset”); jmOptions.addSeparator(); jmOptions.add(jmiReset);
// Finally, add the entire Options menu to // the menu bar
jmb.add(jmOptions);
Put the Priority radio buttons into a button group.
ask the expert
Q Can I use icons with check box and/or radio button menu items?
AYes. For example, you can specify an icon for a radio button item using this
constructor: JRadioButtonMenuItem(Icon icon)
You can specify an icon for a check box using this constructor: JCheckBoxMenuItem(Icon icon)

Java programming 733
Other constructors are available that let you include text and/or set the selected state.
You can also set a mnemonic and/or an accelerator key for radio button and check box menu items. To do so, use setMnemonic( ) and setAccelerator( ), which were described earlier.
progress check
1. What class creates a check box menu item?
2. When JRadioButtonMenuItems are added to a menu, they are automatically
part of a button group. True or False?
ask the expert
QACan I create popup menus that are activated by right-clicking the mouse?
Yes. To create a popup menu, use JPopupMenu. As you mention in your
question, a popup menu is normally activated by clicking the right mouse but- ton when the mouse is over a component for which a popup menu has been defined. To create a popup menu, first create an object of type JPopupMenu. Then, add JMenuItems to it. You will also need to watch for mouse events (which are events of type MouseEvent) by implementing the MouseListener interface, which is declared in java.awt.event. Although the process is not overly difficult, a complete description is beyond the scope of this book.
exercises
1. What are the core Swing menu classes?
2. What class creates a menu? To create a main menu bar, what class is used?
3. What event is generated when a menu item is selected?
4. Images are not allowed in menus. True or False?
5. What method adds a menu bar to a window?
Answers:
1. JCheckBoxMenuItem
2. False. You must explicitly put radio button menu items in a button group.

734 chapter 19 Working with Menus
6. What method adds a mnemonic to a menu item?
7. Can an icon be used as a menu item? If so, does it prevent the use of a name?
8. What class creates a radio button menu item?
9. Although check box menu items are permitted, their use is discouraged
because they make a menu look strange. True or False?
10. In the course of this chapter, several changes were suggested to the
MenuDemo program that demonstrate additional menu features. Except for the dynamic menu items in Try This 19-1, integrate the other changes into the original MenuDemo program. In the process, reorganize the program for clarity by using separate methods to construct the various menus.
11. True or False?
A. You can disable a menu item without disabling the whole menu.
B. You can disable a menu without disabling all the menu items in the
menu.
12. As mentioned in the chapter, the JMenu class has a getMenuComponents( )
method that returns an array containing the components of the menu. Suppose a menu has one or more separators in it. Are those separators included in the array returned by getMenuComponents( )?
13. Suppose you have a menu m with only three parts: an Open menu item, a separator, and a Close menu item. If you then execute m.remove(1), will the separator or the Close menu item be removed?
14. Write a program that creates a window with a menu bar and a File menu. The File menu has three menu items: Open, Recent, and Exit. The Recent menu item is a submenu that initially has no menu items. Each time Open is selected, a new menu item is added to the Recent submenu. The new menu item’s name is “Open” followed by an integer that is incremented for each new menu item. For example, the first menu item in the Recent submenu should be Open1, then the next menu item should be Open2, and so on. When the Exit menu item is selected, the program quits. No action listeners are necessary for the Recent menu items.
15. Enhance the preceding exercise so that the Recent submenu displays only the five most recent menu items added.
16. Suppose you have a menu with two menu items.
A. If both menu items have the same mnemonic key, what happens when
you press that key when the menu is displayed?
B. If both menu items have the same accelerator, what happens when you
type in that accelerator key?
C. What happens if you try to use, for the mnemonic key for a menu item, a
character that isn’t part of the text of the menu item? For example, what if you try to use VK_A as the mnemonic key for the Open menu item?

Java programming 735
17. Write a program with a Help menu containing a FAQ menu item that brings up a new JFrame with a question and answer in it. Closing the new JFrame should not cause the application to quit.
18. Write a program that displays a window with four menus: File, Edit, Text, and Show. Add one menu item to each of the first three menus and add three menu items to the Show menu: File, Edit, and Text. The menu items in the Show menu should all be check box menu items, and all should be initially checked. If any of the menu items in the Show menu are unchecked by the user, then the menu with the same name should be disabled. If the menu item is later checked, the menu with the same name should be enabled.
19. Write a program that displays a window with one menu containing one menu item and containing a label in the center. Add appropriate tooltips to the menu bar, the menu, the menu item, and the label.
20. In the section of the chapter on mnemonics and accelerators, it was men- tioned that one or more modifier keys can be specified as part of the accel- erator. However, the examples in the chapter used only one modifier key.
If you want the accelerator to use more than one modifier key, you need to combine the constants in the InputEvent class corresponding to the desired modifier keys. Suppose you have a menu item m and you want an accelerator for m that consists of the letter ‘A’ in combination with both the ctrl key and the shift key. What Java statement will set the accelerator for m?

Chapter
key skills & concepts
j JOptionPane
j showMessageDialog( ) j showConfirmDialog( ) j showInputDialog( )
j showOptionDialog( )
j JDialog
j Create a modeless dialog j JFileChooser
Although the individual controls provided by Swing, such as text fields, buttons, and lists, form the foundation of any GUI, there will be times when you need to link two or more of these controls together as a unit in order to handle more sophisticated input operations. For example, if your program needs to display an error message and then offer options (such as Retry and Cancel), you will usually want to link these in a single logical and visual unit. This is accomplished by creating a dialog.
A dialog is a separate window that requests some form of response from the user. It will contain at least a message and a button, but much more sophisticated dialogs are both possible and commonplace. Dialogs are also commonly referred to as dialog boxes or dialog windows.
A dialog provides a means by which your program can achieve two important goals. First, a dialog gives you a way to organize the components necessary for complex input situations that go beyond what the basic components can handle individually. For example, a word processor would use a dialog to allow the user to select a type font, point size, and style. Such a dialog would be a composite of several individual components that, when combined, define a typeface. Second, a dialog gives your program a way to request input from the user that is necessary before the pro- gram proceeds. For example, you might use a dialog to prompt the user for a password and then wait until the password is entered. Whatever the use, dialogs are an important part of many Swing applications.
Dialogs
737
20

738 chapter 20 Dialogs
Swing provides extensive support for dialogs. The ones we will examine here are JDialog, JOptionPane, and JFileChooser. The main dialog class is JDialog, but somewhat surprisingly, you won’t often use it directly. Instead, many dialog situations can be handled by using JOptionPane, which provides a wide variety of built-in dia- log styles. JFileChooser is a built-in dialog that lets a user choose a file.
JOptionpane
In the modern GUI programming environment, dialogs are used in two basic ways. First, there are the larger, more complicated dialogs that link several input compo- nents. An example is a dialog that enables a user to configure a modem connection. Such a dialog might contain components that allow the user to specify the modem speed and protocol, enable hardware flow control, specify an initialization command, and so on. To create such a sophisticated dialog requires the use of JDialog, which is discussed later in this chapter.
The second type of dialog is much simpler. This is a dialog that prompts the user and then waits for a response. Perhaps the most common example is the “Exit? Yes/No” dialog that simply confirms if you really want to exit a program. Because these relatively simple dialogs form such an important part of Java programming, Swing provides extensive built-in support for them through the JOptionPane class.
JOptionPane is an easy-to-use dialog class that offers solutions to many com- mon dialog-based problems. JOptionPane supports the four basic types of dialogs listed here:
• Message
• Confirmation • Input
• Option
A message dialog displays a message and then waits until the user presses the OK button. This dialog provides an easy and effective way to ensure that the user is aware of some pieces of information. For example, you could use a message dialog to tell the user that a network connection has been lost by displaying “Connection Lost” inside the dialog.
A confirmation dialog asks the user a question that typically has a Yes/No answer, and then waits for a response. This dialog is used in cases in which a course of action needs to be confirmed. For example, a confirmation dialog that displays the message “Exit without saving changes?” could be used to ensure that the user does actually want to exit a program without saving the changes.
An input dialog allows the user to enter a string or select an item from a list. The advantage of this dialog is that it allows users to respond by entering a string of their own choosing. Thus, it goes beyond a simple Yes/No/OK/Cancel response. You might use this type of dialog to obtain the URL of some resource, for example.
An option dialog lets you specify a list of options from which the user will choose. Thus, it enables you to create a dialog that supplies options that are not available with the other dialogs.

Java programming 739
Interestingly, JOptionPane is not derived from JDialog. Instead, JOptionPane is a container for the components that will be used by the dialog. However, it does use JDialog. JOptionPane constructs a JDialog object automatically and adds itself to that object. It then handles the details of displaying the dialog, obtaining the response, and closing the dialog. In essence, JOptionPane provides a streamlined way to create and manage simple dialogs.
All dialogs created by JOptionPane are modal. A modal dialog demands a response before the program will continue. As a result, you cannot refocus input to another part of the application without first closing the dialog. Thus, a modal dialog stops the program until the user responds. Although modal dialogs are quite common, you can also create modeless (also called nonmodal ) dialogs. A modeless dialog does not prevent other parts of the program from being used. Thus, the rest of the program remains active, and input can be refocused to other windows. However, you cannot create a modeless dialog using JOptionPane. (Modeless dialogs are easily created by JDialog, however, as described later in this chapter.)
Although you can create a JOptionPane by using one of its constructors, you normally won’t do so. Instead, you will usually use one of its show factory methods. These methods automatically construct a dialog in one of the four styles and then return the user’s response. For example, to create a simple message dialog, you can use the showMessageDialog( ) method. It creates a dialog that displays a message and then waits until the user clicks the OK button. As you will see, the factory methods make JOptionPane extraordinarily easy to use.
JOptionPane supports two basic categories of show methods. The first creates a dialog that uses JDialog to hold the dialog. This is the type of JOptionPane that you will normally create, and it is the only type described in this book. The second category uses a JInternalFrame to hold the dialog. This type of dialog is much less common, and the topic of internal frames is beyond the scope of this book.
JOptionPane defines the following four factory methods that create standard, JDialog- based dialogs: showConfirmDialog( ), showInputDialog( ), showMessageDialog( ), and showOptionDialog( ). Each creates the type of dialog implied by its name. All are static methods. The first three have several overloaded forms. The remainder of this discussion examines each style of dialog separately.
1. What are the four types of dialogs that can be created by JOptionPane? 2. What is the difference between modal and modeless dialogs?
3. Is JOptionPane derived from JDialog?
Answers:
1. Message, confirmation, input, and option.
2. A modal dialog demands a response before other parts of the program can be
used. A modeless dialog allows the rest of the program to remain active.
3. No.
progress Check

740 chapter 20 Dialogs showMessageDialog( )
The showMessageDialog( ) method creates the simplest dialog that can be construct- ed. It displays a message and then waits until the user presses the OK button. Despite this simplicity, showMessageDialog( ) still has three forms. Its shortest version is shown here:
static void showMessageDialog(Component parent, Object msg) throws HeadlessException
Here, parent specifies the component relative to which the dialog is displayed. If you pass null for this argument, the dialog is usually displayed in the center of the screen. The message to display is passed in msg. Technically, this does not have to be a string. For example, you could pass a JLabel. However, for simple dialogs, a string is typically used. When the dialog is displayed, an OK button is included. The dialog waits until the user presses OK. Therefore, the call to showMessageDialog( ) will not return until the user either presses OK or closes the dialog by clicking the close box. (As mentioned, all dialogs created by the show methods are modal.) This means that the calling thread waits until the call returns. Because there is only one option for the user (the OK button), there is no need to return a response and the return type is void.
Notice that showMessageDialog( ) can throw a HeadlessException. This exception is thrown if you attempt to show a dialog in a noninteractive environment, such as one in which no screen, mouse, or keyboard is attached. In general, a show method will throw a HeadlessException if an attempt is made to show a dialog in a noninteractive environment.
The following program shows showMessageDialog( ) in action. It displays a dia- log that tells the user that disk space is low.
// A very simple JOptionPane demonstration.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class MsgDialogDemo {
JLabel jlab; JButton jbtnShow; JFrame jfrm;
MsgDialogDemo() {
// Create a new JFrame container.
jfrm = new JFrame(“Simple Message Dialog”);

// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(400, 250);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will show when the dialog returns. jlab = new JLabel();
// Create a button that will display the dialog. jbtnShow = new JButton(“Show Dialog”);
// Add action listener for the button. jbtnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) { jlab.setText(“Dialog Opened”);
// Create a dialog that shows a message. JOptionPane.showMessageDialog(jfrm,
“Disk space is low.”);
// This statement won’t execute until the // call to showMessageDialog() returns. jlab.setText(“Dialog Closed”);
} });
// Add the button and label to the content pane. jfrm.add(jbtnShow);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new MsgDialogDemo();
} });
} }
Create a message dialog.
Java programming 741

742 chapter 20 Dialogs
The dialog produced is shown here:
Here is how the program works. The main window contains a button called Show Dialog. When this button is pressed, the action listener linked to the button displays the dialog by calling showMessageDialog( ). The parent of the dialog is the jfrm, which is the main window of the program. The message to display is “Disk space is low.” When the call to showMessageDialog( ) executes, the dialog is displayed. At that point, the dialog has input focus and, because the dialog is modal, focus cannot be redirected to the main window. Therefore, the main window is inactive until the dialog is closed, by the user clicking either the OK button or the close box in the dialog window. When the dialog is closed, the call to showMessageDialog( ) returns and the text in jlab is set to indicate this fact.
There are two other forms of showMessageDialog( ) that let you more precisely configure various aspects of the dialog. The first is shown here:
static void showMessageDialog(Component parent, Object msg, String title, int msgT)
throws HeadlessException
The first two parameters are the same as the version of the method shown earlier. The title parameter lets you specify a title for the dialog. By default, the title is Message, but it is usually better to specify a title that fits the message that you are displaying precisely. The msgT parameter indicates the nature of the message. It must be one of the following values defined by JOptionPane:
ERROR_MESSAGE
Indicates that an error message is displayed. The standard error icon is used.
INFORMATION_MESSAGE
Indicates that an informational message is displayed. The standard information icon is used. This is the default message type.
PLAIN_MESSAGE
Indicates a “plain” message, which is one in which no icon is displayed.
QUESTION_MESSAGE
Indicates that a question message is displayed. The question mark icon is used.
WARNING_MESSAGE
Indicates that a warning message is displayed. The standard warning icon is used.

Java programming 743
Like many other aspects of Swing, the precise effect of the msgT parameter is determined by the look and feel.
To see the benefits of specifying a title and a message type, substitute the follow- ing call to showMessageDialog( ) in the preceding example:
JOptionPane.showMessageDialog(jfrm,
“Disk Space is Low.”,
“Warning”, JOptionPane.WARNING_MESSAGE);
The message dialog will now look like this:
By default, a message dialog displays a standard system icon. You can specify one of your own by using this version of showMessageDialog( ):
static void showMessageDialog(Component parent, Object msg, String title, int msgT, Icon image)
throws HeadlessException
Here, the icon to display is passed in image. Keep in mind, however, that if your message falls into one of the predefined categories, then it is probably best to use the standard icon rather than a custom one because the standard icon will be the most easily recognized.
1. What type of response does showMessageDialog( ) request?
2. What is the constant that indicates a warning message?
3. Must the message displayed by showMessageDialog( ) be a string?
Answers:
1. OK
2. WARNING_MESSAGE
3. No, it can be any type of object.
progress Check

744 chapter 20 Dialogs showConfirmDialog( )
Another very common dialog type is one that requests a basic Yes/No response from the user. In Swing, this is called a confirmation dialog, and it is created by calling showConfirmDialog( ). There are several versions of this method. The simplest one is shown here:
static int showConfirmDialog(Component parent, Object msg) throws HeadlessException
Here, parent specifies the component relative to which the dialog is displayed. If you pass null for this argument, then the dialog is usually displayed in the center of the screen. The message to display is passed in msg. This can be any type of object, but normally a string is used. The dialog automatically contains three buttons called Yes, No, and Cancel. The title of the dialog is Select an Option.
The method returns an integer value that indicates the user’s choice (that is, which button was pressed). The return value will be one of these constants defined by JOptionPane:
Notice CLOSED_OPTION. This value is returned when the user closes the dialog (by clicking on the close box) instead of pressing one of the buttons. Typically, you should handle a CLOSED_OPTION response as if it represented “No” or “Cancel”, depending on the context. A CLOSED_OPTION should never be interpreted as a YES_OPTION.
The following program creates a simple confirmation dialog and shows how to handle the responses.
// Use a simple confirmation dialog.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class ConfirmDialogDemo {
JLabel jlab; JButton jbtnShow; JFrame jfrm;
CANCEL_OPTION
Returned if the user clicks Cancel
CLOSED_OPTION
Returned if the user closes the dialog without making a choice
NO_OPTION
Returned if the user clicks No
YES_OPTION
Returned if the user clicks Yes

ConfirmDialogDemo() {
// Create a new JFrame container.
jfrm = new JFrame(“A Confirmation Dialog”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(400, 250);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will show the user’s response. jlab = new JLabel();
// Create button that will display the dialog. jbtnShow = new JButton(“Show Dialog”);
// Add action listener for the button. jbtnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) { // Create a confirmation dialog.
int response = JOptionPane.showConfirmDialog(
jfrm,
“Remove unused files?”);
Java programming 745
Create a confirmation dialog.
// Show the response. switch(response) {
Check the user’s response and respond appropriately.
case JOptionPane.YES_OPTION: jlab.setText(“You answered Yes.”); break;
case JOptionPane.NO_OPTION: jlab.setText(“You answered No.”); break;
case JOptionPane.CANCEL_OPTION: jlab.setText(“Cancel pressed.”); break;
case JOptionPane.CLOSED_OPTION: jlab.setText(“Dialog closed without response.”); break;
} }
});
// Add the button and label to the content pane. jfrm.add(jbtnShow);
jfrm.add(jlab);

746 chapter 20 Dialogs
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new ConfirmDialogDemo();
} });
} }
The dialog produced is shown here:
As you can see, the code for handling the response from the user is straightfor- ward. Because all dialogs created with JOptionPane’s show methods are modal, the call to showConfirmDialog( ) will not return until the user either chooses an option or closes the dialog window by clicking on its close box. The response is returned by showConfirmDialog( ) and is assigned to a variable called response. This variable controls a switch statement that displays the user’s choice.
Although the preceding form of showConfirmDialog( ) is quite easy to use, it may not be suitable for some applications because it always uses the title Select an Option. In certain cases, a more descriptive title for the dialog, such as “Disk Space Is Low”, would be better. Fortunately, it is easy to change the title and other aspects of the dialog by using one of the following overloaded versions of showConfirmDialog( ):
static int showConfirmDialog(Component parent, Object msg, String title, int optT)
throws HeadlessException static int showConfirmDialog(Component parent, Object msg,
String title, int optT, int msgT) throws HeadlessException static int showConfirmDialog(Component parent, Object msg,

String title, int optT, int msgT, Icon image)
throws HeadlessException
Here, parent and msg are the same as described earlier. The title of the dia- log is specified by title. The options (i.e., the buttons) from which the user can choose are specified by optT. It must be one of the following constants defined by JOptionPane:
By default, Yes, No, and Cancel are supplied. However, Cancel is not appropriate in all cases. In situations in which only a Yes or No response is meaningful, pass YES_NO_OPTION to the optT parameter. If the OK_CANCEL_OPTION is used, then the dialog might also return the value OK_OPTION.
The general type of dialog displayed is passed in msgT. It must be one of the fol- lowing constants described earlier:
The default message type is QUESTION_MESSAGE.
The icon displayed within the dialog is specified by image. By default, a question
mark is used.
The dialog displayed by the preceding example can be easily improved by adding
a title and removing the Cancel button, as shown in this version of the ActionListener from the previous example:
Java programming 747
OK_CANCEL_OPTION
The dialog includes buttons for OK and Cancel.
YES_NO_OPTION
The dialog includes buttons for Yes and No.
YES_NO_CANCEL_OPTION
The dialog includes buttons for Yes, No, and Cancel.
ERROR_MESSAGE
INFORMATION_MESSAGE
PLAIN_MESSAGE
QUESTION_MESSAGE
WARNING_MESSAGE
jbtnShow.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent le) { // Create a dialog that shows a message.
int response = JOptionPane.showConfirmDialog( jfrm,
“Remove unused files?”, “Disk Space Is Low”, JOptionPane.YES_NO_OPTION);
switch(response) {
case JOptionPane.YES_OPTION:
jlab.setText(“You answered Yes.”);
break;
case JOptionPane.NO_OPTION:
jlab.setText(“You answered No.”); break;
This is the prompt. This is the title.
Display only a Yes and No option.

748 chapter 20 Dialogs
case JOptionPane.CLOSED_OPTION: jlab.setText(“Dialog closed without response.”); break;
} }
});
After substituting the code, the dialog will look like this:
Notice that the title is now “Disk Space Is Low” and that the Cancel button has been removed.
1. By default, showConfirmDialog( ) requests a Yes/No/Cancel response. True or False?
2. What effect does passing YES_NO_OPTION to the optT parameter of showConfirmDialog( ) have?
showInputDialog( )
Although a Yes/No response is adequate for some simple dialogs, often other, more flexible input is required. To handle these cases, JOptionPane provides two other types of dialogs. One is created by showOptionDialog( ), which is described in the next section. The other is showInputDialog( ), and it is described here.
showInputDialog( ) supports several different forms. The simplest displays a text field into which the user can enter a string. This version is shown here:
static String showInputDialog(Object msg) throws HeadlessException
Here, the message to display is passed in msg. As a general rule, the dialog is cen- tered on the screen because no parent window is specified. The method returns the string entered by the user. The dialog displays buttons labeled OK and Cancel.
Answers:
1. True.
2. It causes just the Yes and No options to be displayed.
progress Check

Java programming 749
Pressing OK causes the string to be returned. Pressing Cancel (or clicking the close button on the window) causes the dialog to discard any string entered by the user and return null. Pressing OK when no string has been entered causes a zero-length string to be returned.
Here is an example that demonstrates the simplest form of showInputDialog( ). It simply prompts for a name.
// A simple input dialog.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class InputDialogDemo { JLabel jlab;
JButton jbtnShow; JFrame jfrm;
InputDialogDemo() {
// Create a new JFrame container.
jfrm = new JFrame(“A Simple Input Dialog”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(400, 250);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that shows the response. jlab = new JLabel();
// Create button that will display the dialog. jbtnShow = new JButton(“Show Dialog”);
// Add action listener for the button. jbtnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) {
// Create a dialog that inputs a string. String response = JOptionPane.showInputDialog(
“Enter Name”);
// If the response is null, then the dialog // was cancelled or closed. If response is a
Create an input dialog that reads a string.

750 chapter 20 Dialogs
// zero-length string, then no input was entered. // Otherwise, response contains a string entered
// by the user. if(response == null)
jlab.setText(“Dialog cancelled or closed”); else if(response.length() == 0)
jlab.setText(“No string entered”); else
jlab.setText(“Hi there ” + response); }
});
// Add the button and label to the content pane. jfrm.add(jbtnShow);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
A null response means that the dialog was cancelled or closed.
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new InputDialogDemo();
} });
} }
The dialog produced is shown here:
Although the input dialog created by the preceding program is fully functional, it is quite limited. For example, it always uses the title “Input”, it positions the dialog in the center of the screen rather than within the application window, and it does not let you give an initial value to the text field. Fortunately, all of these deficiencies are easy to rectify by using one of the overloaded forms of showInputDialog( ), shown here:
static String showInputDialog(Object msg, Object initVal)
throws HeadlessException

Java programming 751
static String showInputDialog(Component parent, Object msg) throws HeadlessException
static String showInputDialog(Component parent, Object msg, Object initVal ) throws HeadlessException
static String showInputDialog(Component parent, Object msg, String title, intmsgT) throwsHeadlessException
Here, parent specifies the component relative to which the dialog is displayed. The initial value to put into the text field is passed via initVal. The value passed in title specifies the title. The type of dialog is passed in msgT. It must be one of the following constants described earlier:
The default message type is QUESTION_MESSAGE.
For example, the following call to showInputDialog( ) creates a dialog that will be
positioned relative to the main window and initialized to the name “Bob Smith”.
String response = JOptionPane.showInputDialog(
jfrm, “Enter Name”, “Bob Smith”);
To see the effect of this change, substitute this call to showInputDialog( ) into the preceding program. After making this change, the dialog window will look like this:
There is one more form of showInputDialog( ) that lets you specify a list of pos- sible selections from which the user can choose and the icon that is displayed. This form is shown here:
static Object showInputDialog(Component parent, Object msg, String title, int msgT, Icon image,
Object[ ] vals, Object initVal) throws HeadlessException
ERROR_MESSAGE
INFORMATION_MESSAGE
PLAIN_MESSAGE
QUESTION_MESSAGE
WARNING_MESSAGE

752 chapter 20 Dialogs
Here, parent, title, and msgT are as just described. The icon to be displayed is passed in image. If image is null, then the standard icon associated with the specified mes- sage type is displayed. A list of selections is passed in vals. These selections are dis- played in a list. However, if vals is null, then a text field is displayed into which the user can enter a value. The initial value displayed is passed in initVal.
The dialog created by this version of showInputDialog( ) is especially useful when you want to limit the user to a range of choices. To see this type of input dialog in action, substitute the following action listener for the one shown in the example program.
jbtnShow.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent le) {
String[] names = { “Tom Jones”, “Bob Smith”, “Mary Doe”, “Nancy Oliver” };
// Create a dialog that lets the user // choose from a list of names. String response =
(String) JOptionPane.showInputDialog( jfrm,
“Choose User”,
“Select User Name”, JOptionPane.QUESTION_MESSAGE, null,
names,
“Bob Smith”);
if(response == null)
jlab.setText(“Dialog cancelled or closed”);
else if(response.length() == 0) jlab.setText(“No string entered”);
else
jlab.setText(“Hi there ” + response);
} });
This creates an input dialog that displays a list of strings.
After making this change, the dialog will look like the one shown here:

1. What two types of input are supported by showInputDialog( )? 2. When using showInputDialog( ), can you initialize the response?
showOptionDialog( )
Although the dialogs created by showMessageDialog( ), showConfirmDialog( ), and showInputDialog( ) satisfy many common dialog needs, there are situations for which they are not appropriate. For this reason JOptionPane supplies one more show method: showOptionDialog( ). This method creates a dialog that contains the elements that you specify. Thus, using showOptionDialog( ) you can create a dialog tailored more precisely to your needs.
The showOptionDialog( ) method is shown here:
static int showOptionDialog(Component parent, Object msg, String title, int optT, int msgT, Icon image,
Object[ ] options, Object initVal) throws HeadlessException
You are already familiar with most of the parameters. The parent, msg, and title specify the parent of the dialog (which can be null if the default frame is used), the prompt displayed, and the title of the dialog. The options (i.e., the buttons) from which the user can choose are specified by optT. It must be one of the following constants defined by JOptionPane:
DEFAULT_OPTION OK_CANCEL_OPTION YES_NO_OPTION YES_NO_CANCEL_OPTION
Understand, however, that the optT parameter is used only if the options parameter is null. Otherwise, it is ignored. In this case, you can use the constant DEFAULT_OPTION as a placeholder. The general type of dialog displayed is passed in msgT. It must be one of the following constants, also described earlier:
The icon displayed within the dialog is specified by image. To use the standard icon, simply pass null to this parameter. The initial selection is passed through initVal.
Answers:
1. Depending on what you request, showInputDialog( ) can have the user enter a string or select an item from a list.
2. Yes.
Java programming 753
progress Check
ERROR_MESSAGE
INFORMATION_MESSAGE
PLAIN_MESSAGE
QUESTION_MESSAGE
WARNING_MESSAGE

754 chapter 20 Dialogs
The one new parameter is options. It is an array of Object that contains the options that will be displayed in the dialog. Typically, you will pass an array of strings. In this case, each string becomes the label of a button. When you press a button, the dialog ends and the index of the string is returned. You can also pass an array of icons or an array that contains a mix of strings or icons. When an icon is passed, it is automatically embedded in an icon-based button. Other types of objects can be passed. (See “Ask the Expert” at the end of this section.)
Here is an example that uses showOptionDialog( ) to let the user choose how to connect to the network.
// Demonstrate an option dialog.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class OptionDialogDemo {
JLabel jlab; JButton jbtnShow; JFrame jfrm;
OptionDialogDemo() {
// Create a new JFrame container.
jfrm = new JFrame(“A Simple Option Dialog”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(400, 250);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will show the selection. jlab = new JLabel();
// Create button that will display the dialog. jbtnShow = new JButton(“Show Dialog”);
// Add action listener for the button. jbtnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) {
// Define the connection options.
String[] connectOpts = { “Modem”, “Wireless”,
“Satellite”, “Cable” };
These are the options that will be displayed.

// Create a dialog that lets the user
// choose how to connect to the network.
int response = JOptionPane.showOptionDialog(
Create an option dialog that displays a list
of connection options. Each option is jfrm, displayed in its own button.
Java programming 755
connectOpts, “Wireless”);
// Display the choice. switch(response) {
case 0:
jlab.setText(“Connect via modem.”); break;
The response contains the index of the option that was clicked.
“Choose Network Connection”, “Connection Type”, JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE, null,
case 1:
jlab.setText(“Connect via wireless.”); break;
case 2:
jlab.setText(“Connect via satellite.”); break;
case 3:
jlab.setText(“Connect via cable.”); break;
case JOptionPane.CLOSED_OPTION: jlab.setText(“Dialog cancelled.”); break;
} }
});
// Add the button and label to the content pane. jfrm.add(jbtnShow);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new OptionDialogDemo();
} });
} }

756 chapter 20 Dialogs
The dialog produced is shown here:
Looking closely at how the actionPerfomed( ) handler activates the dialog, first notice the String array names, which specifies the names of the various connection methods. This name, along with the other information, is passed to showOptionDialog( ). When the dialog is created, the names are used as the labels for buttons. When one of these buttons is pressed, an integer corresponding to the index of the name within the array is returned. Therefore, pressing Modem returns 0, pressing Wireless returns 1, and so on.
When specifying options, it is important to remember one point: they override the standard options. Therefore, if you specify a “Cancel” option, the value returned when it is selected will be its index in the array, not CANCEL_OPTION. The only standard option that you will be able to check for is CLOSED_OPTION because it is generated when the user clicks the window’s close box.
Although showOptionDialog( ) does offer a significant amount of flexibility in determining what a dialog contains, its use is a bit more limited than you might at first think. The reason is that you don’t have any real control over the layout of the dialog. In general, all show dialogs, including the ones created by showOptionDialog( ), use the same pattern. They all have a title, a single-line message, an icon to the left of the message, and a single line of choices. Input dialogs add a text field or list. There is no way to change this layout.
ask the expert
Q When using showOptionDialog( ), can I pass something other than strings or icons to the options parameter?
AYes. You can pass any type of object, including other Swing components. If you pass an array of components, the components are added to the dialog. Thus, it is possible to construct a dialog that contains a text field, two check boxes, and an OK button by passing references to these components. If you pass another type of object, a button is created that contains the results of calling toString( ) on the object.
Unfortunately, because of the layout limitations inherent in showOption- Dialog( ), you will usually pass either strings or icons. Other components often

Java programming 757
produce unsatisfying results. For example, if you use the following sequence to construct a dialog:
Object[] ops = { new JLabel(“Name”), new JTextField(10),
new JLabel(“Phone Number”), new JTextField(10),
“OK”, “Cancel” };
int response = JOptionPane.showOptionDialog( jfrm,
“Enter Info”,
“Get Name and Telephone”, JOptionPane.OK_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null,
ops,
“Cancel”);
it will produce the following output:
As you can see, the layout is less than optimal.
progress Check
1. showOptionDialog( ) is very limited because its options cannot be changed. True or False?
2. Why is showOptionDialog( ) not as useful as one might hope?
Answers:
1. False.
2. showOptionDialog( ) is not as useful as one might hope because its basic
format is fixed and you have limited control over the layout of the options.

758 chapter 20 Dialogs JDialog
Although JOptionPane offers the easiest way to display a dialog, it is not appli- cable to all situations. When you need a dialog that contains more fields or requires special handling, then you will need to use JDialog instead. JDialog is the Swing class that creates a dialog. JDialog is a top-level container that is not derived from JComponent. Thus, it is a heavyweight component. As explained earlier, JDialog is the class that JOptionPane uses to construct dialogs.
In general, you create and manage a JDialog much like you create a JFrame. For example, you add components to the content pane of the JDialog just like you add them to a JFrame. You can set the layout manager and specify its size. You use setVisible( ) to show or hide its window. You can also give it a menu bar. JDialog inherits several AWT classes: Container, Component, Window, and Dialog. Thus, it has all of the functionality offered by the AWT.
JDialog allows you to construct either a modal or modeless dialog. As explained previously, a modal dialog causes the application to pause until the dialog is closed. A modeless dialog allows other parts of the application to remain active. The ability to create a modeless dialog is one of the reasons you might need to create a JDialog rather than using one of the JOptionPane show methods. As you will see, it is easy to construct either style of dialog.
JDialog defines many constructors. The one we will begin with is shown here: JDialog(Frame parent, String title, boolean isModal)
It creates a dialog whose owner is specified by parent. If isModal is true, the dialog is modal. If isModal is false, the dialog is modeless. The dialog has the title specified by title.
Here are the steps that you will follow to create and display a dialog created by JDialog:
1. CreateaJDialogobject.
2. Specify the dialog’s layout manager, size, and default close policy. 3. Add components to the dialog’s content pane.
4. Show the dialog by calling setVisible(true) on it.
To remove a dialog from the screen use either setVisible(false) or dispose( ), which is inherited from Window. Use setVisible(false) when you will be reusing the dialog frequently within the same application. Use dispose( ) when the dialog is unlikely to be displayed again. Calling dispose( ) frees all resources associated with the dialog. Calling setVisible(false) simply removes the dialog from view.
The following program shows how to create a simple modal dialog by using JDialog. The dialog, which has the title Direction, allows the user to choose a direction. It displays two buttons. One is called Up and the other is called Down. When a button is pressed, the dialog is closed. The main application window contains two buttons and a label. The label displays the current direction. The button called Show Dialog displays the Direction dialog. The button called Reset Direction resets the direction displayed in the label.

// Demonstrate a simple JDialog.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class JDialogDemo { JLabel jlab;
JButton jbtnShow; JButton jbtnReset;
// These buttons are contained within the dialog. JButton jbtnUp;
JButton jbtnDown;
JDialog jdlg;
JDialogDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JDialog Demo”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(400, 200);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that shows the direction. jlab = new JLabel(“Direction is pending.”);
// Create a button that will show the dialog. jbtnShow = new JButton(“Show Dialog”);
// Create button that will reset the direction. jbtnReset = new JButton(“Reset Direction”);
// Create a simple modal dialog.
jdlg = new JDialog(jfrm, “Direction”, true); jdlg.setSize(200, 100);
jdlg.setLayout(new FlowLayout());
Java programming 759
Create and set up a modal dialog.

760 chapter 20 Dialogs
// Create buttons used by the dialog. jbtnUp = new JButton(“Up”);
jbtnDown = new JButton(“Down”);
// Add buttons to the dialog. jdlg.add(jbtnUp); jdlg.add(jbtnDown);
Add buttons and a label to the dialog.
// Add a label to the dialog. jdlg.add(new JLabel(“Press a button.”));
// Show the dialog when the Show Dialog button is pressed. jbtnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) {
jdlg.setVisible(true); }
});
// Reset the direction when the Reset Direction // button is pressed. jbtnReset.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) { jlab.setText(“Direction is pending.”);
} });
// Respond to the Up button in the dialog. jbtnUp.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent le) {
jlab.setText(“Direction is Up”);
// Hide the dialog after the user selects // a direction.
jdlg.setVisible(false);
} });
// Respond to the Down button in the dialog. jbtnDown.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) { jlab.setText(“Direction is Down”);
// Hide the dialog after the user selects // a direction.
jdlg.setVisible(false);
} });
Show the dialog when the user requests it.
Hide the dialog after the user selects a direction.

// Add the Show Dialog button and label to the content pane. jfrm.add(jbtnShow);
jfrm.add(jbtnReset);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new JDialogDemo();
} });
} }
The dialog produced by the program is shown here:
There are several important things in this program. To begin, notice how the following sequence constructs a modal JDialog:
// Create a simple modal dialog.
jdlg = new JDialog(jfrm, “Direction”, true); jdlg.setSize(200, 100);
jdlg.setLayout(new FlowLayout());
First, a modal dialog called jdlg is created that has Direction as its title, that is owned by the main window of the application, jfrm, and that is modal because true is passed as the third parameter to the JDialog constructor. Then, its size is set, and it is given a flow layout manager. At this point, the dialog is fully constructed but does not contain any components and is not visible.
Java programming 761

762 chapter 20 Dialogs
Next, two buttons and one label are created and added to jdlg:
// Create buttons used by the dialog. jbtnUp = new JButton(“Up”);
jbtnDown = new JButton(“Down”);
// Add buttons to the dialog. jdlg.add(jbtnUp); jdlg.add(jbtnDown);
// Add a label to the dialog. jdlg.add(new JLabel(“Press a button.”));
As you can see, components are added to the dialog in the same way as they are added to the main window. After this sequence executes, the dialog is fully formed, but is not visible. It won’t be made visible until the Show Dialog button (displayed in the main window) is pressed. To display the dialog, the Show Dialog button handler simply calls setVisible(true) on jdlg.
Next, notice the handlers for the Up and Down buttons that are contained within jdlg. Each simply sets the text in jlab and then calls setVisible(false), which causes the dialog to be removed from the screen. Using setVisible(false) is the most efficient way to hide a dialog that will be needed later.
Create a MODeless DIalOg
Using JDialog, you will find it quite easy to create a modeless (that is, nonmodal) dialog because, by default, JDialog creates a modeless dialog. For example, you can use this constructor to create a modeless dialog:
JDialog(Frame parent, String title)
Here, the owner is specified by parent. The dialog has the title specified by title. Alternatively, you can explicitly pass false to the third parameter of the constructor shown earlier. Furthermore, several other JDialog constructor variations are available that let you supply other options.
The advantage of a modeless dialog is that the rest of the application remains active. Of course, this is useful only when the rest of the application is not dependent on the user input requested by the dialog. For example, a photo touch-up application might have a dialog that allows you to select various touch-up filters. In this case, a modeless dialog would be the best choice because it would let the user change filters interactively without having to constantly close and then reopen the dialog. In general, most dialogs will be modal, but in cases in which a modeless dialog can be used, they tend to be very useful.
To see the effects of a modeless dialog, we will rework the preceding program so that the Direction dialog is modeless. Before we begin, run the JDialogDemo program and activate the Direction dialog. Then, try to click the Reset Direction button in the main window. As you will see, because the Direction dialog is modal, you cannot access the Reset Direction button while the dialog is active. By making the Direction

Java programming 763
dialog modeless, both windows will be active and you will be able to reset the direc- tion at any time.
To make the Direction dialog modeless requires very few changes. First, change the call to the JDialog constructor by removing the third argument, as shown here:
jdlg = new JDialog(jfrm, “Direction”);
This form of the constructor automatically creates a modeless dialog.
Next, remove the calls to setVisible(false) that are inside the event handlers for the
Up and Down buttons. In other words, these two handlers should now look like this:
// Respond to the Up button in the dialog. jbtnUp.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent le) {
jlab.setText(“Direction is Up”); }
});
// Respond to the Down button in the dialog. jbtnDown.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) { jlab.setText(“Direction is Down”);
} });
After making these changes, the Direction dialog will remain on the screen until you click its close box. Thus, you will be able to make repeated direction changes. You will also be able to press the Reset Direction button in the main window without closing the Direction dialog.
1. Is JDialog derived from JComponent?
2. Components in a JDialog must be added to the content pane. True or False? 3. What does dispose( ) do?
seleCt FIles wIth JFileChooser
One of the most common uses for a dialog is also one of the more complicated and tedious to implement: allowing the user to select a file. Thankfully, Swing provides a built-in dialog that handles this somewhat difficult task for you. This dialog is called a file chooser and is an instance of JFileChooser.
Answers:
1. No.
2. True.
3. The dispose( ) method removes a window from the screen, releasing all of
progress Check
its resources in the process.

764 chapter 20 Dialogs
JFileChooser offers two important benefits. The first is consistency. Choosing a file is a common activity. JFileChooser ensures that all file selection dialogs will look and feel the same. Thus, once users know how to use one file chooser, they can use them all. This is true even between programs written by different programmers. JFileChooser provides a standard mechanism that users understand.
The second JFileChooser benefit is efficiency. Although conceptually simple, implementing a file selection dialog requires a significant programming effort. By providing a built-in, standard implementation, Swing prevents programmers from having to duplicate this effort over and over again. Therefore, except for some special- ized applications, if you need a dialog that lets the user choose a file, you should use JFileChooser. It prevents wasted effort.
JFileChooser is derived from JComponent. It specifies several constructors. Here are three:
JFileChooser( ) JFileChooser(File dir) JFileChooser(String dir)
The first creates a file chooser that initially displays the default directory. The second and third create a file chooser that initially displays the directory specified by dir. If dir is null, the default directory is used.
After you have created a JFileChooser, it is displayed by calling one of the following methods:
int showOpenDialog(Component parent) throws HeadlessException
int showSaveDialog(Component parent) throws HeadlessException
int showDialog(Component parent, String name) throws HeadlessException
In each, parent is the component relative to which the file chooser is positioned. If parent is null, then the file chooser is typically centered on the desktop. The showOpenDialog( ) method displays the standard Open dialog. The showSaveDialog( ) displays the standard Save dialog. The only difference between the two is their title and the name on the button that signifies that a file has been chosen. For showOpenDialog( ), this button is called Open. For showSaveDialog( ), this button is called Save. To specify your own title and button name, call showDialog( ) with the desired name. This still creates a standard file chooser; only the title and button name are different. For example, if you want a file chooser that selects a file for deletion, then you would pass “Delete” to name.
Each of the methods returns an integer that indicates the outcome of the file selec- tion process. It will be one of these values defined by JFileChooser:
APPROVE_OPTION
The user selected a file.
CANCEL_OPTION
The user cancelled the selection process by clicking the Cancel button or by clicking the close box.
ERROR_OPTION
An error was encountered.

Java programming 765
Keep in mind that the user can enter any file name. It does not have to exist or even be a valid file name. Therefore, just because one of the show methods returns APPROVE_OPTION does not mean that the file will be valid.
Once a file has been chosen, you can obtain that file by calling getSelectedFile( ) on the JFileChooser instance. It is shown here:
File getSelectedFile( )
It returns a File object that represents the selected file. (Remember, this file is not opened by FileChooser.)
Recall from Chapter 11 that the File class encapsulates information about a file. File is packaged in java.io, and it contains several useful methods. For example, to obtain the name of the file, call getName( ) on the File object. It is shown here:
String getName( )
The name is returned as a string. Depending on what options you specify, it is pos- sible for the file chooser to allow you to select both files and directories. (Directories are really just special types of files.) You can determine if the File object returned by getSelectedFile( ) is actually a file by calling isFile( ) or whether it is a directory by calling isDirectory( ). These methods are shown here:
boolean isFile( ) boolean isDirectory( )
Each returns true if the object is of the indicated type and returns false otherwise. The following program demonstrates JFileChooser. It displays an Open dialog
initialized to the default directory. The file chooser dialog is shown here:

766 chapter 20 Dialogs
// Demonstrate JFileChooser.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class FileChooserDemo {
JLabel jlab; JButton jbtnShow; JFileChooser jfc;
FileChooserDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“JFileChooser Demo”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(400, 200);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will show the selected file. jlab = new JLabel();
// Create button that will show the dialog. jbtnShow = new JButton(“Show File Chooser”);
// Create the file chooser. jfc = new JFileChooser();
Create a file chooser that starts at the default directory.
// Show the file chooser when the Show File Chooser button // is pressed.
jbtnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) {
// Pass null for the parent. This centers the dialog
// on the screen.
int result = jfc.showOpenDialog(null); Display the file chooser.
if(result == JFileChooser.APPROVE_OPTION) If a file has been selected,
jlab.setText(“Selected file is: ” + jfc.getSelectedFile().getName());
else
jlab.setText(“No file selected.”);
display its name.

} });
// Add the Show File Chooser button and label to the // content pane.
jfrm.add(jbtnShow);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new FileChooserDemo();
} });
} }
The operation of the program is straightforward. When the program begins, a JFileChooser called jfc is created. Notice that no initial directory is specified, so the file chooser uses the default directory. When the Show File Chooser button is pressed, the actionPerformed( ) handler displays the file chooser dialog by calling showOpenDialog( ). When the method returns, if the return value is APPROVE_OPTION, then the name of the selected file is displayed in jlab. Otherwise, a message indicating that no file was selected is displayed. One other point: By constructing the file chooser outside of the actionPerformed( ) handler, it can be used repeatedly without having to be reconstructed each time.
Before moving on, try calling showSaveDialog( ) instead of showOpenDialog( ). As you will see, the only difference is the name.
Java programming 767
Try This 20-1 Use a File Filter with JFileChooser
FileFilterDemo.java
By default, JFileChooser displays all files in the selected directory. When using a JFileChooser, you can change this behavior by specifying a file name that includes wildcard characters. You can also change this behavior under program control by using a custom file filter. This project shows how. It creates a filter that displays Java source files. These are files that end in .java. It also displays directories, which

768 chapter 20 Dialogs
enable the user to navigate the file system. When you run the program, you will see something similar to the following:
Notice that only Java source files are displayed.
A file filter for a FileChooser is an object that extends the FileFilter abstract
class defined in the javax.swing.filechooser package. The FileFilter class defines the two methods shown here:
abstract boolean accept(File file) abstract String getDescription( )
Both must be implemented by your custom file filter. The accept( ) method must return true to accept the file passed via file. In other words, if you want the file to be displayed in the file list, return true. To prevent the file from being displayed, return false. The getDescription( ) method must return a string that describes the filter. It is displayed in the Files of Type list in the file chooser.
One important point: When you create a custom file filter, directories are not automatically displayed. If you want directories to be displayed, you must explic- itly accept them within the accept( ) method.
To enable a file chooser to use your file filter, you can call setFileFilter( ) on the JFileChooser instance. This method is shown here:
void setFileFilter(FileFilter ff )
Here, ff is the file filter that you want the file chooser to use.

Java programming 769
STEP-bY-STEP
1. Begin by creating a file called FileFilterDemo.java and then enter the fol- lowing comment and import statements:
// Try This 20-1: Demonstrate a custom file filter.
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
Notice how javax.swing.filechooser.FileFilter is imported. Its name is fully qualified. Here is why. As you learned in Chapter 11, Java also includes an interface called FileFilter that is packaged in java.io. When creating a FileChooser file filter, you often need to import both packages (java.io and javax.swing.filechooser). One way to avoid a name conflict is to import the file chooser version of FileFilter using its fully qualified name, as shown above. This approach avoids the name conflict between the two packages.
2. Define the JavaFileFilter class, as shown next. It accepts only files with the .java extension and directories.
// A custom file filter that displays Java source files // and directories.
class JavaFileFilter extends FileFilter {
public boolean accept(File file) {
// Return true if the file is a Java source file // or if it is a directory. if(file.getName().endsWith(“.java”)) return true; if(file.isDirectory()) return true;
// Otherwise, return false.
return false; }
public String getDescription() { return “Java Source Code Files”;
} }
Notice how the accept( ) method works. If a file name uses the “.java” extension or is a directory, then it returns true. In all other cases, accept( ) returns false. This means that only .java files and directories are displayed. Notice the use of the endsWith( ) method. This method is defined by the String class, and it returns true if and only if the invoking string ends with the specified character sequence.

770 chapter 20 Dialogs
3. Begin the FileFilterDemo class, as shown next. public class FileFilterDemo {
JLabel jlab; JButton jbtnShow; JFileChooser jfc;
FileFilterDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“File Filter Demo”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(400, 200);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will show the selected file. jlab = new JLabel();
// Create a button that will show the dialog. jbtnShow = new JButton(“Show File Chooser”);
// Create the file chooser. jfc = new JFileChooser();
// Set the file filter. jfc.setFileFilter(new JavaFileFilter());
Pay special attention to the last line. In order for the file filter to be in effect,
it must be set. This is done by calling setFileFilter( ) on jfc immediately
after it is created.
4. Add the ActionListener shown here:
// Show the file chooser when the Show File Chooser button // is pressed.
jbtnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) {
// Pass null for the parent. This typically centers // the dialog on the screen.
int result = jfc.showOpenDialog(null);
if(result == JFileChooser.APPROVE_OPTION) jlab.setText(“Selected file is: ” +
jfc.getSelectedFile().getName());

Java programming 771
else
jlab.setText(“No file selected.”);
} });
5. Finish the FileFilterDemo constructor as shown next:
// Add the Show File Chooser button and label to the // content pane.
jfrm.add(jbtnShow);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
6. Finish FileFilterDemo by adding the following main( ) method:
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new FileFilterDemo();
} });
} }
7. The entire program is shown here. Before moving on, you might want to experiment a bit by creating some file filters of your own design.
// Try This 20-1: Demonstrate a custom file filter.
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
// A custom file filter that displays
// Java source files and directories. class JavaFileFilter extends FileFilter {
public boolean accept(File file) {
// Return true if the file is a Java source file // or if it is a directory. if(file.getName().endsWith(“.java”)) return true; if(file.isDirectory()) return true;
// Otherwise, return false.
return false; }

772 chapter 20 Dialogs
public String getDescription() { return “Java Source Code Files”;
} }
public class FileFilterDemo {
JLabel jlab; JButton jbtnShow; JFileChooser jfc;
FileFilterDemo() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“File Filter Demo”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(400, 200);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will show the selected file. jlab = new JLabel();
// Create a button that will show the dialog. jbtnShow = new JButton(“Show File Chooser”);
// Create the file chooser. jfc = new JFileChooser();
// Set the file filter. jfc.setFileFilter(new JavaFileFilter());
// Show the file chooser when the Show File Chooser button // is pressed.
jbtnShow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) {
// Pass null for the parent. This typically centers // the dialog on the screen.
int result = jfc.showOpenDialog(null);
if(result == JFileChooser.APPROVE_OPTION) jlab.setText(“Selected file is: ” +
jfc.getSelectedFile().getName());

Java programming 773
else
jlab.setText(“No file selected.”);
} });
// Add the Show File Chooser button and label to the // content pane.
jfrm.add(jbtnShow);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new FileFilterDemo();
} });
} }
ask the expert
QAAre there other options supported by JFileChooser?
Yes, JFileChooser supports several options. Here are three you might find
interesting. By default, JFileChooser allows the user to select only files. To allow a directory to be selected, call setFileSelectionMode( ), shown here:
void setFileSelectionMode(int fsm)
Here, fsm specifies the selection mode, which must be one of these constants
defined by JFileChooser:
FILES_ONLY DIRECTORIES_ONLY FILES_AND_DIRECTORIES
Each specifies the mode indicated by its name. Therefore, to enable the selection of both files and directories, use FILES_AND_DIRECTORIES.
You can allow the user to select more than one file by calling setMultiSelectionEnabled( ), shown here:
void setMultiSelectionEnabled(boolean on)

774 chapter 20 Dialogs
ask the expert (Continued)
If on is true, then multiple file selection is allowed. If on is false, then only single files can be selected. By default, only single file selection is allowed. When using multiple selection mode, you can obtain a list of the selected files by calling getSelectedFiles( ), shown here:
File[ ] getSelectedFiles( )
It returns an array of File objects that contains the selected files (or directories). By default, hidden files are not displayed by the file chooser. To change this,
call setFileHidingEnabled( ), shown here: void setFileHidingEnabled(boolean on)
If on is true, then hidden files are not displayed. If on is false, then hidden files are shown in the file window.
progress Check
1. What method displays the Open file chooser?
2. As it relates to JFileChooser, what class do you extend to create a file filter? 3. What FileFilter method is used to filter files?
exerCIses
1. A dialog is a composite of two or more components that prompts the user and waits for a response. True or False?
2. What JOptionPane method creates an input dialog? Which one creates a message dialog?
3. What JOptionPane method would you normally use to create a dialog that confirms that the user wants to save changes to a document? Show what the call would look like.
4. When using a confirmation dialog, what return type indicates that the user clicked the Yes button?
5. What option type is used to show only the Yes and No buttons in a confirmation dialog?
Answers:
1. showOpenDialog( ) 2. FileFilter
3. accept( )

Java programming 775
6. If you want to request a string response from the user, what JOptionPane method do you call?
7. Must the message parameter to any of JOptionPane’s show methods be a string? Explain.
8. JDialog is a top-level container. True or False?
9. What are the four steps needed to create and display a JDialog-based dialog?
10. Can JDialog create a modeless dialog?
11. Explain the difference between setVisible(false) and dispose( ) as it relates
to dialogs.
12. What JFileChooser method creates a Save file chooser? Which one creates a
file chooser that uses your own title?
13. What two methods must be overridden when implementing a FileFilter for JFileChooser?
14. Chapter 19 described menus. In that chapter, the examples included a File menu that had an Exit entry. The action event handler that processed menu selections handled the Exit entry, as shown here:
// Handle menu item action events.
public void actionPerformed(ActionEvent ae) {
// Get the action command from the menu selection. String comStr = ae.getActionCommand();
// If user chooses Exit, then exit the program.
if(comStr.equals(“Exit”)) System.exit(0); .
. .
Change this code so that it activates a dialog that confirms the user really
wants to exit before terminating the program.
15. Why would you want a modal dialog, and why would you want a nonmodal
dialog? Give examples where each of them is useful other than the examples
given in this chapter.
16. Write a program that creates a window with a button labeled “Show
message”. When the button is clicked, a dialog appears asking “Do you really want to see the message?” and, if you click Yes, a second dialog appears with the message.
17. Give examples of situations in which it would be meaningful to create a message dialog of each of the following types:
A. ERROR_MESSAGE
b. INFORMATION_MESSAGE
C. PLAIN_MESSAGE
D. QUESTION_MESSAGE E. WARNING_MESSAGE

776 chapter 20 Dialogs
18. Give examples of situations in which it would be meaningful to create a con- firmation dialog with each of the following button options:
A. OK_CANCEL_OPTION
b. YES_NO_OPTION
C. YES_NO_CANCEL_OPTION
19. When calling JOptionPane’s showOptionDialog( ) method, you are asked to provide an array of options and an initial value as the last two arguments. What happens if, for the initial value, you provide null or a value that is not in the array of options?
20. What should you use as arguments to the showOptionDialog( ) method so that the dialog looks and acts as much as possible like the dialog you get when you call JOptionPane.showMessageDialog(null, “Hello”, “Message”, JOptionPane.PLAIN_MESSAGE)?
21. Write a program that creates and displays a JDialog that looks and acts as much as possible like the dialog you get when you call JOptionPane.showMessageDialog(null, “Hello”, “Hello message”, JOptionPane.PLAIN_MESSAGE).
22. As the two preceding exercises show, to display a message in a dialog box, you can use the showMessageDialog( ) or the showOptionDialog( ), or you can create a JDialog. Why does Java give you so many ways to do the same thing? In particular, you can use JDialog which can do everything the show methods do, so why bother with them?
23. Write a program that creates a window entitled “File Copier”. It contains one button saying “Choose a file to copy”. When the button is clicked, an open file chooser dialog appears. If a file is selected, a save file chooser dialog appears that allows the user to specify the name to use for the copy and the directory to contain the copy. Then the file is copied. If an IOException occurs, it does not print an error message to the console. Instead, it displays the error message in a dialog.
24. If you create a JFileChooser dialog using the constructor that takes no argu- ments and then show the dialog, it will initially display the default directory. What is meant by the “default” directory?
25. Modify the FileChooserDemo class discussed in the chapter so that the JFileChooser dialog allows multiple selections (as described in the Ask the Expert section at the end of the chapter) of both files and directories. The program should then display all the files and directories selected.
26. If you call showMessageDialog(null, obj) where obj is an object
other than a string, the dialog will display the string returned by a call
to obj.toString( ). To see this in action, create a class Data that has only a public String toString( ) method that returns the string “A Data Object was here.” Then write a program that creates an object obj of the Data class and calls showMessageDialog(null, obj).

Java programming 777
27. Write a program that displays a window with one button. When the user clicks the button, an input dialog appears asking the user for an integer num- ber of inches. If the input is a valid integer, the program displays an informa- tion message dialog telling how many miles are equal to the given number of inches. If the input is not a valid integer, an error message dialog appears. Use the parseInt( ) method discussed in Chapter 11.
28. Create a custom class that extends javax.swing.jfilechooser.FileFilter that filters out all files except directories and hidden files. Use the isHidden( ) method of the File class mentioned in Chapter 11. Then write a program that tests your new filter.

ChaPter
threading, applets, and Painting
key skills & concepts
j Use threads with Swing
j Use the Timer class
j Know Swing applet basics
j Understand the Swing applet skeleton j Construct an applet GUI
j Know painting fundamentals
j Use the graphics context
j Compute the paintable area
As the preceding chapters have shown, when you think about Swing, you usually think about its visual controls. However, there are other aspects and techniques related to Swing that do not directly involve its controls. This chapter examines three impor- tant ones: threading, applets, and painting. As you will see, each of these requires special handling when used with a Swing GUI.
Multithreading in Swing
As you know from Chapter 12, multithreading is that aspect of Java that enables dif- ferent parts of a program to execute concurrently. It gives you the ability to write very efficient programs that make maximum use of the CPU by using otherwise idle time, or in the case of multiple CPUs, it lets portions of your program run with true concur- rency, thus optimizing throughput. Multithreading also prevents the entire application from pausing when some part of it is performing a time-consuming task. It is this second reason that makes multithreading especially important to a Swing application. In Swing, time-consuming operations must be executed in their own thread to prevent the application (including its user interface) from becoming sluggish or unresponsive. Therefore, multithreading is part of many Swing programs.
779
21

780 chapter 21 threading, applets, and Painting
In general, you will use additional threads within a Swing program in the same way that you use them in any other type of Java program. Thus, what you already know about creating and managing threads also applies to Swing. However, there is a very important, additional threading issue that relates specifically to Swing, and it is the subject of this section.
In Chapter 17, you learned that any code that interacts with a visual component must be executed on the event-dispatching thread. Observing this important rule avoids problems, such as two different threads trying to update the same component at the same time. This rule is why invokeLater( ) is called within main( ) by all of the Swing programs shown previously to construct and display the GUI at program startup. It causes the GUI to be created on the event-dispatching thread.
It is important to emphasize that this same rule applies any time you need to update, change, interrogate, or alter any component. If a piece of code affects a component, it must be executed from the event-dispatching thread. Because event handlers are auto- matically executed on the event-dispatching thread, the code within an event handler can freely affect the GUI. However, code that is executing on another thread cannot. This brings up a potential problem: often, code in another thread needs to update a component. For example, consider a program that uses a JLabel to display the outside temperature, updated once every minute. To do this, a separate thread must be used to monitor the temperature. However, this thread cannot be used to update the label because it is not the event-dispatching thread. So, how does the thread that monitors the temperature update the label? Or, more generally, how does any other thread update a component in the GUI?
One solution is to use either the invokeLater( ) or the invokeAndWait( ) methods defined by SwingUtilities in much the same way as you have been using invokeLater( ) to construct and display the GUI. Let’s review them now. They are shown again here, for your convenience:
static void invokeLater(Runnable obj) static void invokeAndWait(Runnable obj)
throws InterruptedException, InvocationTargetException
Here, obj is a Runnable object that will have its run( ) method called by the event- dispatching thread. Inside run( ) put the code that interacts with a Swing component. Thus, when you need to update a component, put the code inside a Runnable object and pass that object to either invokeLater( ) or invokeAndWait( ). This causes the code to execute on the event-dispatching thread, which means that the component can be safely changed.
The difference between the two methods is that invokeLater( ) returns immedi- ately, but invokeAndWait( ) waits until obj.run( ) returns. You will normally want to use invokeLater( ). However, as you will soon see, when constructing the initial GUI for an applet, you will want to use invokeAndWait( ). For simplicity, the rest of this discussion refers to invokeLater( ), but the general principles also apply to invokeAndWait( ).

Java Programming 781
Here is an example that illustrates one way to handle a separate thread that con- tinuously updates the GUI. It is an improved version of the StopWatch class first created in Try This 17-1. This version displays the elapsed time while the stopwatch is running. It does this by creating a separate thread that updates the elapsed time label 10 times a second. Notice its use of invokeLater( ) inside the second thread. Sample output is shown here:
// An improved version of the StopWatch class from Try This 17-1. // This version uses a separate thread to display the elapsed
// time when the stopwatch is running.
import java.awt.*;
import java.awt.event.*; import javax.swing.*; import java.util.Calendar;
class ThreadStopWatch {
JLabel jlab; // display the elapsed time
JButton jbtnStart; // start the stopwatch JButton jbtnStop; // stop the stopwatch
long start; // holds the start time in milliseconds boolean running=false; // true when stopwatch is running Thread thrd; // reference to the timing thread ThreadStopWatch() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“Thread-based Stopwatch”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(230, 90);
This will refer to the thread that updates the time display as the stopwatch runs.

782 chapter 21 threading, applets, and Painting
// Terminate the program when the user closes the application.
jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create the elapsed-time label.
jlab = new JLabel(“Press Start to begin timing.”);
// Make the Start and Stop buttons. jbtnStart = new JButton(“Start”); jbtnStop = new JButton(“Stop”);
// Initially disable the Stop button. jbtnStop.setEnabled(false);
// Create the Runnable instance that will become the second thread.
Runnable myThread = new Runnable() {
// This method will run in a separate thread. public void run() {
try {
// Report elapsed time every tenth of a second. for(; ; ) {
Create a Runnable object that will execute in its own thread.
// Pause for a tenth of a second.
Thread.sleep(100); Pause for a tenth of a second.
// Invoke updateTime() on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { updateTime();
} });
}
} catch(InterruptedException exc) {
Update the time displayed. This invokes updateTime( ) on the event-dispatching thread.
System.out.println(“Call to sleep was interrupted.”);
System.exit(1); }
} };
// Create a new thread.
thrd = new Thread(myThread);
// Start the thread. thrd.start();
Create the thread. Start the thread.
// Add the action listeners for the Start and
// Stop buttons.
jbtnStart.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {

// Store start time.
start = Calendar.getInstance().getTimeInMillis();
// Reverse the state of the buttons. jbtnStop.setEnabled(true); jbtnStart.setEnabled(false);
// Start the stopwatch.
running = true; }
});
jbtnStop.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) {
long stop = Calendar.getInstance().getTimeInMillis();
// Compute the elapsed time. jlab.setText(“Elapsed time is ”
+ (double) (stop – start)/1000);
// Reverse the state of the buttons. jbtnStart.setEnabled(true); jbtnStop.setEnabled(false);
// Stop the stopwatch.
running = false; }
});
// Add the buttons and label to the content pane. jfrm.add(jbtnStart);
jfrm.add(jbtnStop);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
// Update the elapsed time display. void updateTime() {
Java Programming 783
}
if(!running) return;
This method gets executed on the event-dispatching thread.
long temp = Calendar.getInstance().getTimeInMillis(); jlab.setText(“Elapsed time is ” +
(double) (temp – start)/1000);

784 chapter 21 threading, applets, and Painting
public static void main(String[] args) {
// Create the frame on the event-dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new ThreadStopWatch();
} });
} }
Let’s look closely at how this program works. First, notice the fields running and thrd. The running variable is initially set to false. When the stopwatch is running, it is set to true. When running is true, the elapsed time is displayed. The thrd field will hold a reference to the thread that updates the time.
Next, notice how the second thread of execution is created. First, a Runnable object called myThread is created by the following code:
// Create the Runnable instance that will become the second thread. Runnable myThread = new Runnable() {
// This method will run in a separate thread. public void run() {
try {
// Report elapsed time every tenth of a second. for(; ; ) {
// Pause for a tenth of a second. Thread.sleep(100);
// Invoke updateTime() on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { updateTime();
} });
}
} catch(InterruptedException exc) {
System.out.println(“Call to sleep was interrupted.”);
System.exit(1); }
} };
The Runnable interface defines only one method: run( ). This method is executed in a separate thread of execution. In essence, when the thread starts running, it calls run( ). Inside run( ), an infinite loop is established that simply sleeps for a tenth of a second and then calls invokeLater( ). Remember, the code within the loop is execut- ing in its own thread, not the event-dispatching thread. (If it were executing in the

Java Programming 785
event-dispatching thread, the window could become sluggish or unresponsive because the loop could prevent the other parts of the program from executing.)
Now, notice the argument to invokeLater( ). It is called with Runnable whose run( ) method calls the updateTime( ) method. The updateTime( ) method is shown here:
// Update the elapsed time display. void updateTime() {
if(!running) return;
long temp = Calendar.getInstance().getTimeInMillis(); jlab.setText(“Elapsed time is ” +
(double) (temp – start)/1000);
}
The code first tests the value of running. If it is false, then the method returns immedi- ately because the stopwatch is not currently being used. Otherwise, updateTime( ) obtains the current time, subtracts the start time from it, and then updates jlab with the current elapsed time. Because updateTime( ) changes the contents of the label, it must be exe- cuted on the event-dispatching thread. This is accomplished by calling invokeLater( )
with a Runnable argument that calls updateTime( ). Thus, updateTime( ) executes on the event-dispatching thread, and it can safely update the time shown in jlab. When the program is terminated (by clicking on the close box), this thread is also automatically terminated.
After the declaration of myThread, a new thread is created that uses myThread and is then started by the following code:
// Create a new thread.
thrd = new Thread(myThread);
// Start the thread. thrd.start();
At this point, the new thread is executing. However, it isn’t being used for anything because the stopwatch has not yet been started.
When the user clicks the Start button, the current system time is obtained and stored in the start variable. The Start button is disabled, the Stop button is enabled, and running is set to true. When the Stop button is pressed, the current system time is obtained. The difference between the current time and the start time is dis- played in jlab. Then, the enabled state of the buttons is reversed and running is set to false.
As this program shows, the key to using threads safely in Swing is to make sure that any code that interacts with a Swing component is executed on the event-dis- patching thread. If you are not sure which thread is executing a piece of code, you can call isEventDispatchThread( ) defined by SwingUtilities.

786 chapter 21 threading, applets, and Painting
Progress Check
1. Why must your code interact with Swing components through the event- dispatching thread?
2. What does invokeLater( ) do? uSe timer
The preceding stopwatch example showed how a separate thread of execution can be used in conjunction with invokeLater( ) to interact with a Swing component. As you will see, it is actually a bit more complicated than it needs to be. In some cases, you don’t really need to create a separate thread explicitly. Instead, what you need is a timer that generates an event at periodic intervals. For example, to scroll a banner, you can use a timer to redraw the banner repeatedly in order to achieve an animated appearance. (See Try This 21-1.)
The timer class defined by Swing is called Timer. It is packaged in javax.swing. It must not be confused with another class called Timer that is packaged in java.util. You will need to specify explicitly which timer you are using when importing both packages into the same program.
Swing’s Timer automatically fires an action event that will be received by the specified listener. Because this is an event, it will automatically be executed on the event-dispatching thread. Therefore, the actionPerformed( ) method defined by the ActionListener registered with the timer will be executed on the event-dispatch- ing thread as normal. There is no need to use invokeLater( ) or invokeAndWait( ). Thus, to use Timer, you will simply create a Timer instance, specifying the action listener that will receive the event.
Timer defines only one constructor, shown here: Timer(int period, ActionListener al )
Here, period specifies the length of time between events in milliseconds. In other words, period specifies the timing interval. The action listener that will receive the events is specified by al. You can specify additional action listeners that will be noti- fied when the timer goes off by calling addActionListener( ) on the timer.
To start the timer, call start( ). To stop the timer, call stop( ). These methods are shown here:
void start( ) void stop( )
Answers:
1. It avoids conflicts between threads, such as two different threads trying to update the same component at the same time.
2. It causes a Runnable object to be executed on the event-dispatching thread. It returns immediately rather than waiting for the thread to end.

Java Programming 787 By default, the timer continues to fire events at the specified interval. You can
cause the timer to fire only one event by calling setRepeats( ), shown here: void setRepeats(boolean repeats)
Here, if repeats is true, the time repeats. If it is false, the time stops after one interval.
As mentioned, the thread-based stopwatch program shown in the previous sec- tion is more complicated than it needs to be. Instead of explicitly creating a separate thread, a timer can be used. This approach is shown by the following version of the program.
// This version of the stopwatch uses the Timer class.
import java.awt.*;
import java.awt.event.*; import javax.swing.*; import java.util.Calendar;
class TimerStopWatch {
JLabel jlab; // display the elapsed time
JButton jbtnStart; // start the stopwatch JButton jbtnStop; // stop the stopwatch
long start; // holds the start time in milliseconds Timer swTimer; // the timer for the stopwatch TimerStopWatch() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“Timer-based Stopwatch”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(230, 90);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create the elapsed-time label.
jlab = new JLabel(“Press Start to begin timing.”);
Use a Timer to update the time display.

788 chapter 21 threading, applets, and Painting
// Make the Start and Stop buttons. jbtnStart = new JButton(“Start”); jbtnStop = new JButton(“Stop”); jbtnStop.setEnabled(false);
// This action listener is called when the timer // goes off.
ActionListener timerAL = new ActionListener() {
public void actionPerformed(ActionEvent ae) { updateTime();
} };
// Create a timer that goes off every tenth of a second. swTimer = new Timer(100, timerAL);
// Add the action listeners for the start and
// stop buttons.
jbtnStart.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
// Store start time.
start = Calendar.getInstance().getTimeInMillis();
// Reverse the state of the buttons. jbtnStop.setEnabled(true); jbtnStart.setEnabled(false);
// Start the stopwatch.
swTimer.start(); }
});
jbtnStop.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) {
long stop = Calendar.getInstance().getTimeInMillis();
// Compute the elapsed time. jlab.setText(“Elapsed time is ”
+ (double) (stop – start)/1000);
// Reverse the state of the buttons. jbtnStart.setEnabled(true); jbtnStop.setEnabled(false);
// Stop the stopwatch.
swTimer.stop(); }
});
This listener is notified when the timer goes off.
Create the timer. Notice that timerAL is specified to handle the action events generated by the timer.

// Add the buttons and label to the content pane. jfrm.add(jbtnStart);
jfrm.add(jbtnStop);
jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
// Update the elapsed time display. Notice
// that the running variable is no longer needed. void updateTime() {
long temp = Calendar.getInstance().getTimeInMillis(); jlab.setText(“Elapsed time is ” +
(double) (temp – start)/1000);
}
public static void main(String[] args) {
// Create the frame on the event-dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() {
new TimerStopWatch();
} });
} }
As you can see, the program is substantially shorter because it does not contain the code that creates a thread. It also does not need to use the running variable. The use of Timer greatly simplifies the task. Notice how little code is required to use the timer. First, it is created by this single line:
swTimer = new Timer(100, timerAL);
This constructs a timer that goes off once every tenth of a second. Here, timerAL specifies the action listener that will receive the action events generated by the timer. It is shown next:
ActionListener timerAL = new ActionListener() { public void actionPerformed(ActionEvent ae) {
updateTime(); }
};
The actionPerformed( ) method simply calls updateTime( ). Because this code is already executing on the event-dispatching thread, there is no need for invokeLater( ).
The timer is started when the user clicks the Start button. It is stopped when Stop is clicked. As you will see when you try the program, the timer can be repeatedly started and stopped. There is no restriction in this regard.
Java Programming 789

790 chapter 21 threading, applets, and Painting
In general, when you need to use a separate thread whose sole purpose is to keep the GUI updated, using javax.swing.Timer is a better choice than manually creating your own thread. However, if you will be using a separate thread to perform other duties, then you have no choice but to create one explicitly.
1. What method starts a Timer?
2. What event does a Timer generate?
Progress Check
ask the expert
Q What is the SwingWorker class?
ABeginning with JDK 6, Swing has provided a class called SwingWorker that can be used to simplify the solution to some types of multithreading tasks. Here are two of SwingWorker’s principal advantages. First, it provides a built-in means of executing code on the event-dispatching thread. This means that you can avoid the use of invokeLater( ) and invokeAndWait( ). Second, it streamlines the creation and management of background threads.
SwingWorker is an abstract generic class that is declared like this: SwingWorker
Here, T specifies the result type of its doInBackground( ) method (discussed shortly), and V represents the type of any interim results. When either (or both) is not needed by a worker thread, Void can be used.
To create a SwingWorker, you must extend it, providing at minimum an implementation for doInBackground( ). Inside this method you will put the code that you want executed in a background thread. It is shown here:
protected T doInBackground() throws Exception
It should throw an exception if, for any reason, the background task fails.
Once you create a SwingWorker, you can start the thread by calling execute( ),
shown here:
final void execute( )
The task is executed on a worker thread that is automatically provided.
Answers:
1. start( )
2. Timer generates an action event.

Java Programming 791
To obtain the value returned by doInBackground( ), called get( ). Here is one version:
final T get( ) throws InterruptedException, ExecutionException
This method will wait until a value is available; it should not be called from the event-dispatching thread until that value has been returned by doInBackground( ). When doInBackground( ) has finished, the done( ) method is called on the
event-dispatching thread. It is shown here: protected void done( )
You can override this method to obtain the result returned by doInBackground( ). You can “publish” interim results by calling publish( ), shown here:
protected final void publish(V … data)
Here, data is a variable-length argument that contains the data that you want to make other parts of your application aware of. It does this by working with another SwingWorker method called process( ). Importantly, process( ) is called on the event-dispatching thread. This means that you can use the information that it receives to update the GUI. The data is passed to process( ) in a List, which is part of Java’s Collections Framework. (List is described in Chapter 25.) The process( ) method is shown here:
protected void process(List list)
Since process( ) is called on the event-dispatching thread, it is possible that two or more calls to publish( ) will occur before process( ) is actually executed. Therefore, you must cycle through list to ensure that you have retrieved all of the data. You can use a for-each style for loop for this purpose, as shown in the example that follows.
To see SwingWorker in action, you can substitute the SwingWorker shown here for the Runnable code in the first stopwatch example, ThreadStopWatch.
// Create a new Swingworker thread to update the time.
final SwingWorker sw = new SwingWorker() {
public Void doInBackground() { try {
// Report elapsed time every tenth of a second. for(;;) {
// Pause for a tenth of a second. Thread.sleep(100); publish(Calendar.getInstance().getTimeInMillis());
}
} catch(InterruptedException exc) {
System.out.println(“Call to sleep was interrupted.”);
System.exit(1); }
return null; // placeholder return value }

792 chapter 21 threading, applets, and Painting
ask the expert (Continued)
// Update the elapsed time display. This is called on // the event-dispatching thread
protected void process(List times) {
if(!running) return;
for(long curTime : times) jlab.setText(“Elapsed time is ” +
} };
sw.execute();
(double) (curTime – start)/1000);
You will also need to add this import statement: import java.util.List;
After making these changes, the program will function the same, only now SwingWorker is being used to provide the background thread.
Create Swing aPPletS
All of the preceding Swing examples are stand-alone Java applications that run on the desktop, but you can also use Swing to create the GUI for an applet. Applets were introduced in Chapter 15, where the general form of an AWT-based applet was described. As you will see, although Swing-based applets are similar to AWT-based applets shown in Chapter 15, some special rules apply.
As you know from Chapter 15, all applets are based on the Applet class. However, to create a Swing-based applet, you will use JApplet, which inherits Applet. JApplet is a top-level container and is not derived from JComponent. Because JApplet is a top-level Swing container, it includes the various panes described in Chapter 17. This means that all components are added to its content pane, in the same way that you have been adding com- ponents to JFrame’s content pane. Furthermore, all interaction with Swing components must take place on the event-dispatching thread, as described by the previous section.
Recall that applets are not executed directly on the desktop. Instead, they are executed within a Java-enabled browser or by an applet viewer, such as appletviewer supplied by the JDK. During development, it is easier to test applets by using an applet viewer than it is to load them into a browser. However, for final testing, a browser should be used.
All applets (whether or not they use Swing) have the same lifecycle methods. Recall that these are init( ), start( ), stop( ), and destroy( ). They are defined by Applet and are inherited by JApplet. Default empty implementations for all of these methods are provided. Therefore, applets do not need to override those methods they do not use.
Like a Swing application, an applet must interact with its components using the event-dispatching thread. This means that you cannot use the init( ) method itself to build the initial GUI. Instead, inside init( ) you will call invokeAndWait( ) to specify

Java Programming 793 a Runnable object whose run( ) method will be executed on the event-dispatching
thread. Using this approach, a skeletal form of the init( ) method is shown here:
public void init() { try {
SwingUtilities.invokeAndWait(new Runnable () { public void run() {
guiInit(); // a method that initializes the Swing components }
});
} catch(Exception exc) {
System.out.println(“Can’t create because of ” + exc); }
}
A Swing-based applet must create its GUI on the event-dispatching thread.
Inside run( ), a method called guiInit( ) is called. This is a method that you provide that sets up and initializes the Swing components. Of course, the name of the method is arbitrary.
ask the expert
Q The applications throughout this book call invokeLater( ) to construct the GUI. Why does an applet use invokeAndWait( )?
AApplets must use invokeAndWait( ) because the init( ) method must not return until the entire initialization process has been completed. In essence, the start( ) method cannot be called until after initialization, which means that the GUI must be fully constructed.
a Simple Swing applet
Here is a simple Swing-based applet that displays two buttons. Each time a button is clicked, a message is displayed that states which button was clicked. Sample output of the applet being executed by appletviewer is shown here:

794 chapter 21 threading, applets, and Painting // A simple Swing-based applet
import javax.swing.*; import java.awt.*; import java.awt.event.*;
/*
This HTML can be used to launch the applet:

*/
public class MyApplet extends JApplet { JButton jbtnOne;
JButton jbtnTwo;
JLabel jlab;
// Called first. public void init() {
try {
SwingUtilities.invokeAndWait(new Runnable () {
public void run() {
guiInit(); // initialize the GUI
} });
} catch(Exception exc) {
System.out.println(“Can’t create because of ” + exc);
} }
// Set up and initialize the GUI. private void guiInit() {
// Set the applet to use flow layout. setLayout(new FlowLayout());
// Create two buttons and a label. jbtnOne = new JButton(“One”); jbtnTwo = new JButton(“Two”);
jlab = new JLabel(“Press a button.”);
// Add action listeners for the buttons. jbtnOne.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent le) { jlab.setText(“Button One pressed.”);
} });

jbtnTwo.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent le) {
jlab.setText(“Button Two pressed.”); }
});
// Add the components to the applet’s content pane. add(jbtnOne);
add(jbtnTwo);
add(jlab);
} }
There are two important things about this applet. First, the init( ) method initializes the Swing GUI by setting up a call to guiInit( ). This is accomplished through the use of invokeAndWait( ). Inside guiInit( ), two buttons and a label are created. Then, an action listener is added to each button. They simply set the text in the label to indicate which button was pressed. Although this example is quite simple, this same general approach must be used when building any Swing GUI that will be used by an applet.
The second point of interest in the applet is the fact that neither start( ), stop( ), nor destroy( ) is used by the applet. This is not uncommon for simple applets. In such cases, there is actually no reason to specify empty implementations because Applet provides default implementations for you. Therefore, if you don’t need to use one of the applet lifecycle methods, you don’t need to override it.
1. What class is used to create a Swing-based applet?
2. What method do you call to construct the GUI on the event-dispatching thread
when a Swing-based applet initializes?
Java Programming 795
Progress Check
Try This 21-1 Scroll Text in an Applet
ScrollText.java
This project demonstrates both Swing-based applets and Swing timers. It uses a timer to scroll a text message within a JLabel. As you will see, the code to accom- plish this is surprisingly short and concise because Swing’s Timer class makes the process extremely easy to code.
There is one other point of interest in this program. Recall that Try This 15-1 created an AWT-based applet that displayed a moving banner. It was mentioned
Answers:
1. JApplet
2. invokeAndWait( )

796 chapter 21 threading, applets, and Painting
there that some flicker would be experienced and that the way to avoid the flicker was to use double-buffering. Fortunately, Swing uses double-buffering by default. Therefore, when you run this example, the scrolling banner will appear smooth and no flicker will be seen. The use of double-buffering is another important advantage that Swing brings to GUI design.
Sample output from the applet is shown here:
STEP-By-STEP
1. Create a file called ScrollText.java and add the following comments and import statements:
// Try This 21-1: A Swing-based applet that scrolls // text through a label.
import javax.swing.*; import java.awt.*; import java.awt.event.*;
/*
This HTML can be used to launch the applet:

*/
2. Begin creating the ScrollText class as shown here: public class ScrollText extends JApplet {
JLabel jlab;
String msg = ” Swing makes the GUI move! “; ActionListener scroller;
Timer stTimer; // this timer controls the scroll rate

Java Programming 797
Because ScrollText is a Swing-based applet, it extends JApplet. It then declares a label that will be used to display the scrolling message, the message that will be scrolled, an action listener that will perform the scrolling, and a timer that controls the rate of scroll.
3. Add the init( ) method shown next:
// Initialize the applet. public void init() {
try {
SwingUtilities.invokeAndWait(new Runnable () {
public void run() { guiInit();
} });
} catch(Exception exc) {
System.out.println(“Can’t create because of ” + exc);
} }
This method simply invokes guiInit( ) on the event-dispatching thread as
described earlier.
4. Add the start( ), stop( ), and destroy( ) methods, shown here:
// Start the timer when the applet is started. public void start() {
stTimer.start(); }
// Stop the timer when the applet is stopped. public void stop() {
stTimer.stop(); }
// Stop the timer when the applet is destroyed. public void destroy() {
stTimer.stop(); }
Although very short, these methods perform important functions. Each time the applet is displayed in a page, the timer is started. Each time the browser stops the applet, the timer is stopped. The timer is also stopped when the ap- plet is destroyed.
5. Finish the applet with the guiInit( ) method shown here: // Initialize the timer GUI.
private void guiInit() {
// Create the label that will scroll the message. jlab = new JLabel(msg); jlab.setHorizontalAlignment(SwingConstants.CENTER);

798 chapter 21 threading, applets, and Painting
// Create the action listener for the timer. scroller = new ActionListener() {
public void actionPerformed(ActionEvent ae) { // Left-scroll the message one character. char ch = msg.charAt(0);
msg = msg.substring(1, msg.length());
msg += ch;
jlab.setText(msg); }
};
// Create the timer.
stTimer = new Timer(200, scroller);
// Add the label to the applet content pane.
add(jlab); }
}
This method creates the label in which the text is scrolled. The text is aligned in the center. This is done to make the scrolling text more visually appealing. It is not technically necessary. Next, an action listener is created that scrolls the text left one character each time it is called. This listener is then passed to the Timer constructor when the timer is created. The timing period is one-fifth of a second, but you might want to experiment with the delay period. Obviously, the shorter the period, the faster the scroll. Finally, the label is added to the content pane.
6. The entire ScrollText applet is shown here:
// Try This 21-1: A Swing-based applet that scrolls
// text through a label.
import javax.swing.*; import java.awt.*; import java.awt.event.*;
/*
This HTML can be used to launch the applet:

*/
public class ScrollText extends JApplet {
JLabel jlab;
String msg = ” Swing makes the GUI move! “;

Java Programming 799
ActionListener scroller;
Timer stTimer; // this timer controls the scroll rate
// Initialize the applet. public void init() {
try {
SwingUtilities.invokeAndWait(new Runnable () {
public void run() { guiInit();
} });
} catch(Exception exc) {
System.out.println(“Can’t create because of ” + exc);
} }
// Start the timer when the applet is started. public void start() {
stTimer.start(); }
// Stop the timer when the applet is stopped. public void stop() {
stTimer.stop(); }
// Stop the timer when the applet is destroyed. public void destroy() {
stTimer.stop(); }
// Initialize the timer GUI. private void guiInit() {
// Create the label that will scroll the message. jlab = new JLabel(msg); jlab.setHorizontalAlignment(SwingConstants.CENTER);
// Create the action listener for the timer. scroller = new ActionListener() {
public void actionPerformed(ActionEvent ae) { // Left-scroll the message one character. char ch = msg.charAt(0);
msg = msg.substring(1, msg.length());
msg += ch;
jlab.setText(msg); }
};

800 chapter 21 threading, applets, and Painting
// Create the timer.
stTimer = new Timer(200, scroller);
// Add the label to the applet content pane.
add(jlab); }
}
Painting
The primary focus of the preceding chapters has been on elements of the Swing com- ponent set and the techniques required to use them. However, there is another part of Swing that lets you create your own visual output by writing directly into the display area of a frame, panel, or one of Swing’s other components, such as JLabel. Although many (perhaps most) uses of Swing will not involve drawing directly to the surface of a component, it is available for those applications that need this capability. To write output directly to the surface of a component involves one or more drawing methods, such as drawLine( ) or drawRect( ), and requires that you take some manual control over the painting process. Although a detailed discussion of painting is beyond the scope of this book, this section covers the basic techniques.
Painting Fundamentals
The first thing to understand about painting in Swing is that it is a somewhat compli- cated process. In fact, Swing has an entire subsystem dedicated to managing painting, which is built on the original AWT-based approach. Before examining the specifics of Swing-based painting, it is useful to review the AWT mechanism that underlies it.
To begin, recall that JComponent inherits the AWT class Component. This class defines a method called paint( ). This method is called when the component needs to be displayed on the screen. As a general rule, paint( ) is not called by your program. Rather, paint( ) is called by the run-time system whenever a component must be rendered. This situation can occur for several reasons. For example, the win- dow in which the component is displayed can be overwritten by another window and then uncovered. Or the window might be minimized and then restored. The paint( ) method is also called when a program begins running. When writing AWT-based code, an application will override paint( ) when it needs to write output directly to the surface of the component.
Although Swing’s lightweight components do inherit the paint( ) method from Component, you will not override it to paint directly to the surface of a compo- nent. The reason is that Swing uses a bit more sophisticated approach to painting that involves three distinct methods: paintComponent( ), paintBorder( ), and paintChildren( ). These methods paint the indicated portion of a component and divide the painting process into its three distinct, logical actions. In a lightweight

Java Programming 801
component, the original AWT method paint( ) simply executes calls to these methods, in the order just shown.
To paint to the surface of a Swing component, you will create a subclass of the component and then override its paintComponent( ) method. This is the method that paints the interior of the component. You will not normally override the other two painting methods. As a general rule, when overriding paintComponent( ), the first thing you must do is call super.paintComponent( ), so that the superclass portion of the painting process takes place. After that, write the output that you want to display.
The paintComponent( ) method is shown here: protected void paintComponent(Graphics g)
Notice that the method is protected. Thus, it can be called by a subclass. The parameter g is the graphics context to which output is written.
the graphics Context
In Java, each component has a graphics context associated with it. This context is encapsulated by the java.awt.Graphics class, and it maintains various pieces of information about the display environment, such as the drawing color and font. As just described, this context is passed to the various paint methods, such as paintComponent( ). When you paint to a component, you will do so through this context, using methods that it provides.
Graphics defines many methods that write output to the component. One, drawString( ), was used in Chapter 15. Here are five more examples:
void drawLine(int startX, int startY, int endX, int endY) void drawRect(int left, int top, int width, int height) void fillRect(int left, int top, int width, int height)
void drawOval(int left, int top, int width, int height) void fillOval(int left, int top, int width, int height)
The drawLine( ) method draws a line in the current drawing color that begins at startX,startY and ends at endX,endY. drawRect( ) draws a rectangle in the current drawing color that begins at left,top and is width wide and height tall. fillRect( ) is the same as drawRect( ) except that the rectangle is filled with the current drawing color. drawOval( ) draws an oval in the current drawing color that begins at left,top and is width wide and height tall. fillOval( ) is the same as drawOval( ) except that the oval is filled with the current drawing color. On your own, you should explore the Graphics class in Java’s documentation to learn about its other capabilities.
For all components, the origin of the display area is located at the upper-left cor- ner and has the coordinates 0,0. Furthermore, all display locations are relative to this origin. All coordinates are specified in terms of pixels. Therefore, if you write output at location 12,14, the output is written 12 pixels right and 14 pixels down from the upper-left corner.

802 chapter 21 threading, applets, and Painting Compute the Paintable area
When drawing to the surface of a component, you may need to restrict your output to the area that is inside a border. Although Swing automatically clips any output that will exceed the boundaries of a component, it is still possible to paint into the border region, which will then get overwritten when the border is drawn. To avoid this, you can compute the paintable area of the component. This is the area defined by the cur- rent size of the component minus the space used by the border. Therefore, before you paint to a component, you must obtain the width of the border and then adjust your drawing accordingly.
To obtain the border width, call getInsets( ), shown here: Insets getInsets( )
This method is defined by Container and overridden by JComponent. It returns an Insets object that contains the dimensions of the border. The inset values can be obtained by using these fields:
int top;
int bottom; int left;
int right;
These values are then used to compute the drawing area given the width and the height of the component. You can obtain the width and height of the component by calling getWidth( ) and getHeight( ) on the component. They are shown here:
int getWidth( ) int getHeight( )
By subtracting the value of the insets, you can compute the overall width and height of the drawable area within a component.
request Painting
As just explained, normally a component is painted only when its paint( ) method is called, which in the case of a Swing component causes calls to paintComponent( ), paintBorder( ), and paintChildren( ). To request painting, you will use the repaint( ) method, in the same way as described in Chapter 15. Calling it causes the system to call paint( ) as soon as it is possible to do so. As explained, this causes a call to paintComponent( ). Therefore, to output to the surface of a component, your pro- gram will store the output until paintComponent( ) is called. Inside the overridden paintComponent( ), you will draw the stored output.
a Paint example
Here is a program that puts into action the preceding discussion. It creates a class called PaintPanel that extends JPanel. We will use the surface of a PaintPanel to

Java Programming 803
draw output. PaintPanel specifies a border. This way, you can easily see its paint- able area. The program then uses an object of that class to display a bar graph that plots randomly generated data. In addition to the bar graph, the program includes two buttons. One allows you to display a different set of values. The other lets you change the size of the border around the graph. Sample output is shown here:
// Paint lines to a panel.
import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.*;
// This class extends JPanel. It overrides
// the paintComponent() method so that random // data is plotted in the panel.
class PaintPanel extends JPanel {
Insets ins; // holds the panel’s insets
Random rand; // used to generate random numbers PaintPanel(int w, int h) {
PaintPanel extends JPanel.
// Use a red line border. setBorder(BorderFactory.createLineBorder(Color.RED, 1));
// Set the preferred dimension as specified. setPreferredSize(new Dimension(w, h));

804 chapter 21 threading, applets, and Painting rand = new Random();
}
// Override the paintComponent() method. protected void paintComponent(Graphics g) {
Override paintComponent( ) to paint to the surface of the component.
Remember to call the superclass implementation.
// Always call the superclass method first. super.paintComponent(g);
// Get the height and width of the component. int height = getHeight();
int width = getHeight();
// Get the insets. ins = getInsets();
// Fill the panel by plotting random data
// in the form of a bar graph.
for(int i=ins.left+5; i <= width-ins.right-5; i += 4) { // Obtain a random number between 0 and // the maximum height of the drawing area. int h = rand.nextInt(height-ins.bottom); // If a generated value is in or too close to the // border, change it to just inside the border. if(h <= ins.top) h = ins.top+1; // Draw a line that represents the data. g.drawLine(i, height-ins.bottom, i, h); } } // Change the border size. public void changeBorderSize(int size) { setBorder( BorderFactory.createLineBorder(Color.RED, size)); } } // Demonstrate painting directly onto a panel. class PaintDemo { JButton jbtnMore; JButton jbtnSize; JLabel jlab; PaintPanel pp; boolean big; // use to toggle size of panel PaintDemo() { Draw the graph of random data. // Create a new JFrame container. JFrame jfrm = new JFrame("Painting Demo"); // Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout()); // Give the frame an initial size. jfrm.setSize(240, 260); // Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // Create the panel that will be painted. pp = new PaintPanel(100, 100); // Make the buttons. jbtnMore = new JButton("Show More Data"); jbtnSize = new JButton("Change Border Size"); // Describe the graph. jlab = new JLabel("Bar Graph of Random Data"); // Repaint the panel when the Show More Data button // is clicked. jbtnMore.addActionListener(new ActionListener() { Java Programming 805 public void actionPerformed(ActionEvent ae) { pp.repaint(); } }); // Set the border size of the panel when the // Change Border Size button is clicked. // Changing the border size automatically // results in a repaint. jbtnSize.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { if(!big) pp.changeBorderSize(5); else pp.changeBorderSize(1); big = !big; } }); // Add the buttons, label, and panel to the content pane. jfrm.add(jlab); jfrm.add(pp); jfrm.add(jbtnMore); jfrm.add(jbtnSize); Request that the panel be painted. Change the border size of the graph. 806 chapter 21 threading, applets, and Painting big = false; // Display the frame. jfrm.setVisible(true); } public static void main(String[] args) { // Create the frame on the event-dispatching thread. SwingUtilities.invokeLater(new Runnable() { public void run() { new PaintDemo(); } }); } } This program is a bit more complicated than many other programs in this chap- ter. It also introduces a few new elements. Therefore, it warrants a close examination. The PaintPanel class extends JPanel and overrides the paintComponent( ) method. This enables PaintPanel to write directly to the surface of the component when paint- ing takes place. The PaintPanel constructor takes two parameters that specify the preferred width and height of the panel. The constructor also specifies a 1-pixel-wide red border. It does this by use of the following call to setBorder( ): setBorder(BorderFactory.createLineBorder(Color.RED, 1)); The setBorder( ) method is defined by JComponent. It attaches a border to the com- ponent. A border is an object of type Border, which is defined in javax.swing.border. Swing provides several different built-in borders, which can be obtained by use of the static methods in BorderFactory, which is in javax.swing. The one used here is a simple line border. It is created by this method: static Border createLineBorder(Color color, int width) The color of the border is specified by color. You can design your own colors, but often you will use one of the constants defined by the Color class, such as Color.RED, Color.BLUE, or Color.GREEN. The Color class is packaged in java.awt. The width of the border is passed in width. Inside the override of paintComponent( ), notice that it first calls super.paint- Component( ). As explained, this is necessary to ensure that the component is properly drawn. Next the width and height of the panel are obtained along with the insets. These values are used to restrict the height and position of the graph bars to within the drawing area of the panel. The drawing area is the overall width and height of a component less the border widths. The computations are designed to work with differently sized PaintPanels and borders. Next, paintComponent( ) uses the Random class to obtain pseudorandom num- bers. (Pseudorandom numbers approximate a sequence of random values.) This class is described in Chapter 24, when Java’s utilities classes are examined. Since it is used here, a brief description is warranted. Random is Java’s random number generator. You can obtain the values generated by Random in a variety of ways. Here, its Java Programming 807 nextInt( ) method is called. It has two forms. The one used in the program is shown here: int nextInt(int max) Here, max specifies an upper bound for the value. The method will return a pseudo- random integer that will be within the range zero to max-1. The bound used by the program is height-ins.bottom This bound ensures that the pseudorandom value is within the lower bound of the panel. The upper bound is handled by this line: if(h <= ins.top) h = ins.top+1; This ensures that the line is not drawn into the top border. The line is actually drawn, using this statement: g.drawLine(i, height-ins.bottom, i, h); Remember, the coordinate system begins in the upper-left corner. So the coordinates might seem reversed until you think about it a bit. The changeBorderSize( ) method changes the border size of the panel. Because paintComponent( ) automatically displays data that fills the current size of the drawing area of the panel, the border width can be changed without any problems. The PaintDemo class demonstrates PaintPanel. It creates a PaintPanel called pp with the dimensions 100 by 100. It also creates two buttons called jbtnMore and jbtnSize. When jbtnMore is clicked, repaint( ) is called on pp. This results in PaintPanel’s paintComponent( ) being called. Thus, each time jbtnMore is pressed, new randomly generated data is displayed. When jbtnSize is clicked, the width of the border is toggled between 1 and 5. Because paintComponent( ) com- putes the boundaries of the drawing area dynamically, the border can be set to any valid arbitrary value. 1. To write output directly into the drawing area of a Swing component, what method must you override? 2. What method obtains the width of the current border? 3. How do you cause the paintComponent( ) method to be called? Answers: 1. paintComponent( ) 2. getInsets( ) 3. To cause paintComponent( ) to be called, call repaint( ). Progress Check 808 chapter 21 threading, applets, and Painting exerCiSeS 1. Any code that affects a Swing component must be executed on the _____ ______ thread. 2. When using javax.swing.Timer, what event is generated when the timer goes off? 3. What methods start and stop javax.swing.Timer? 4. What is SwingWorker? 5. What method must an applet use to create its GUI? 6. Can your program paint directly onto the surface of a component? 7. What three paint methods are called when a Swing component must display itself? 8. What methods obtain the current width and height of a component? 9. Rework the applet in Try This 21-1 so that the direction of scroll reverses at periodic intervals. For example, have the text scroll left for a while, and then right for a while, and so on. The precise timing is up to you, but the answer shown in Appendix C reverses scroll direction every 20 seconds. 10. Write a program that displays a window containing a picture of a traffic light, similar to those shown in Chapter 18, except the traffic light should show all three colors at once. Use a rectangle 30 pixels wide by 100 pixels high and use a circle of diameter 20 pixels for each of the three colors. You will need to use another method defined in the Graphics class: void setColor(Color color) This method sets the color that will be used by the graphics context for future drawing. For this exercise, use the color constants Color.BLACK, Color.RED, Color.yELLOW, and Color.GREEN. 11. Extend the preceding exercise so that it uses a Timer to run the traffic light. The traffic light should display only green for 10 seconds (during which the other two circles are filled with white), then only yellow for 5 seconds, and then only red for 15 seconds. It should repeat this pattern forever. 12. If g refers to a Graphics object, what is the difference, if any, between the call to g.drawLine(10, 20, 50, 60) and the call to g.drawLine(50, 60, 10, 20)? 13. If g refers to a Graphics object, what is the difference, if any, between the call to g.drawRect(10, 20, 50, 60) and the call to g.drawRect(60, 80, –50, –60)? 14. Write a program that creates a window with a tall, narrow rectangle displayed in it and with a ball inside the rectangle. The ball moves at a constant speed down the rectangle until it reaches the bottom and then reverses direction and heads up at a constant speed. It keeps bouncing forever back and forth between the top and bottom edges of the rectangle. Use a Timer to move the ball. Java Programming 809 15. Redo exercise 10 of the exercises in Chapter 15 using a JApplet instead of an Applet. That is, create a JApplet that draws a house. Note that with a JApplet, you shouldn’t override its paint( ) method to draw in the applet. Instead, you should subclass JPanel (or some other JComponent), override the paintComponent( ) method in the subclass so that it draws a house, and then add an instance of the subclass to the applet’s content pane. 16. The TimerStopWatch example in the chapter creates a JFrame to contain the stopwatch. Modify the example so that the stopwatch is in a JApplet instead. 17. Write a program that creates a window containing a JTextArea inside a JScrollPane. A JTextArea is a Swing component that can display several lines of text. Here is one of the constructors: public JTextArea(int rows, int cols) This constructor creates an empty JTextArea with the given number of rows and columns. Use this constructor to create a JTextArea with 20 rows and 30 columns. To add lines of text to it, use its append( ) method, shown here: void append(String text) This method appends the given text to the text being displayed. Create a separate thread that repeatedly (forever) sorts longer and longer integer arrays using bubble sort. It first creates and sorts an array of length 1,000, then creates and sorts an array of length 1,200, and so on. Each array should have length 200 more than the preceding array and should initially be in reverse order (largest to smallest). Bubble sort will sort it from smallest to largest. The thread also should keep track of how long it takes to sort the array each time. Whenever it finishes a sort, it inserts a new line at the end of the JTextArea indicating the length of the array and how long it took to sort it. 18. True or False? A. Only two threads are used in the ThreadStopWatch program at the beginning of this chapter, namely, the event-dispatching thread and the thread that calls updateTime( ) every tenth of a second. B. Whenever you create a JApplet, you need to implement start( ), stop( ), init( ), and destroy( ) methods for it. C. WhenspecifyingthepositionofafigureforpaintinginaJComponent, the position (0,0) corresponds to the center of the component. Part three exploring the Java aPI Library Part Three examines key portions of the Java Application Programming Interface (API) library. The API library contains the standard classes and interfaces supplied with the JDK. As you might expect, it is very large, and a full examination of its contents is far beyond the scope of this book. Instead, we will focus on several core elements of the library that are frequently used when writing Java programs and that were not described elsewhere in this book. Chapter 22 examines string handling via the String class. Chapter 23 describes key portions of java.lang. Chapter 24 examines several parts of java.util. Chapter 25 discusses the Collections Framework. Chapter 26 looks at networking fundamentals. Chapter 27 concludes the book by examining the concurrency API, including the Fork/Join Framework. In addition to the packages described here, another key part of the Java API is contained in java.io. It was covered in Chapter 11, and that discus- sion is not repeated here. Note: The material presented here and elsewhere in this book offers over- views and summaries of portions of the Java API. A complete description of the Java API library is found in the Java documentation, which is avail- able online from Oracle. Furthermore, Java’s history is one of innovation and evolution. Therefore, it is possible that additions or changes have been made to the API library since this book was written. ChaPter String handling key skills & concepts j The String constructors j Three string-related language features j Override toString( ) j Use length( ) j Obtain characters from a string j Compare strings j Use indexOf( ) and lastIndexOf( ) j Obtain a modified string j Change the case of characters within a string j Understand how StringBuffer and StringBuilder relate to String One of the most commonly used Java classes is String. This is because string handling is an integral part of many Java programs. A brief overview of String was presented in Chapter 5. In this chapter, we will explore it in greater detail. It is important to state at the outset that String supports a wide range of functionality and it is not possible to examine all of its aspects here. Rather, our purpose is to give you a general under- standing and a solid working knowledge of its core features. String is a class that you will want to reexamine from time to time as you advance in your study of Java. The String class is packaged in java.lang. Thus, it is automatically available to all programs. Although the next chapter examines other aspects of java.lang, because of String’s widespread use and importance, it merits an entire chapter of its own. We will begin by reviewing String’s fundamentals. StrIng FundamentaLS As you already know from Chapter 5, in Java a string is a sequence of characters. But unlike some other languages that implement strings as character arrays, Java imple- ments strings as objects of type String. Implementing strings as objects allows Java 813 22 814 chapter 22 Swing handling to provide a full complement of features that make string handling convenient. For example, Java has methods to compare two strings, search for a substring, concatenate two strings, and change the case of letters within a string. Also, String objects can be constructed a number of ways, making it easy to obtain a string when needed. The String class implements the following interfaces: Comparable, CharSequence, and Serializable. The Comparable interface specifies how objects are compared. CharSequence defines a set of methods that are applicable to a char- acter sequence. Serializable simply indicates that the state of a String can be saved and restored using Java’s serialization mechanism.
When you create a String object, you are creating a string that cannot be changed. That is, once a String object has been constructed, you cannot change the characters that comprise that string. This may seem to be a serious restriction, but as explained in Chapter 5, such is not the case. You can still perform all types of string operations. The difference is that each time you need an altered version of an existing string, a new String object is created that contains the modifications. The original string is left unchanged. This approach is used because fixed, immutable strings can be implemented more efficiently than changeable ones.
It is important to emphasize that when we say that the strings within objects of type String are immutable, we mean that the contents of a String instance cannot be altered after it has been created. However, a variable declared as a String reference can be changed to refer to a different String object.
Note: For those cases in which a modifiable string is desired, Java provides two options: StringBuffer and StringBuilder. They are briefly mentioned at the end of this chapter. Both hold strings that can be modified after they are created.
The String class is declared final, which means that it can’t be subclassed. This allows certain optimizations that increase performance to take place on common string operations.
the StrIng ConStruCtorS
The String class supports a large number of constructors. We will look at several examples. To create an empty String, call the default constructor. For example,
String str = new String();
will create an instance of String with no characters in it.
Frequently, you will want to create strings that have initial values. The String
class provides a variety of constructors to handle this task. For example, to create a String initialized by an array of characters, use the constructor shown here:
String(char[ ] chrs)
You can specify a subrange of a character array as an initializer using the following
constructor:
String(char[ ] chrs, int startIndex, int numChrs)

Java Programming 815
Here, startIndex specifies the index at which the subrange begins, and numChrs speci- fies the number of characters to use.
When constructing a String from an array, the contents of the array are copied into the String. In other words, the array does not underlie the String instance. This means that the two are separate. Therefore, after the String has been constructed, altering the array does not change the contents of the string.
You can construct a String object that contains the same character sequence as another String object using this constructor:
String(String strObj)
Here, strObj is a String object.
Here is a program that puts the preceding constructors into action. In each case,
notice how a String instance is constructed.
// Demonstrate several String constructors. class StringConsDemo {
public static void main(String[] args) { char[] digits = new char[16];
// Create an array that contains the digits 0 through 9 // plus the hexadecimal values A through F.
for(int i=0; i < 16; i++) { if(i < 10) digits[i] = (char) ('0'+i); else digits[i] = (char) ('A' + i - 10); } // Create a string that contains all of the array. String digitsStr = new String(digits); System.out.println(digitsStr); // Create a string the contains a portion of the array. String nineToTwelve = new String(digits, 9, 4); System.out.println(nineToTwelve); // Construct a string from a string. String digitsStr2 = new String(digitsStr); System.out.println(digitsStr2); // Now, create an empty string. String empty = new String(); // This will display nothing: System.out.println("Empty string: " + empty); } Construct strings in a variety of ways. } 816 chapter 22 Swing handling The output is shown here: 0123456789ABCDEF 9ABC 0123456789ABCDEF Empty string: String also provides several constructors that initialize a string when given a byte array. Here are two examples: String(byte[ ] chrs) String(byte[ ] chrs, int startIndex, int numChrs) Here, chrs specifies the array of bytes. The second form allows you to specify a subrange. In each of these constructors, the byte-to-character conversion is done by using the default character mapping. (A character mapping defines the relationship between bytes and characters.) Extended versions of the byte-to-string constructors are also defined in which you can specify the character mapping. As you know from the discussion of I/O in Chapter 11, at the lowest level I/O is byte oriented. Thus, the byte-array constructors can be especially useful when building a string from input provided by a byte stream. In addition to the constructors just described, you can construct a String from a StringBuilder or a StringBuffer object. You can also construct a String from an array of Unicode code points. 1. What are three ways of passing characters as arguments to String constructors? 2. A Java string is mutable. True or False? 3. You need to explicitly import a package to use strings in Java. True or False? three StrIng-reLated Language FeatureS Because strings are a common and important part of programming, Java supports three especially useful string features directly within the syntax of the language. These are the automatic creation of new String instances from string literals, concatenation of multiple String objects by use of the + operator, and the conversion of other data types to a string representation. There are explicit methods available to perform all of these functions, but Java’s built-in support makes them more convenient. Answers: 1. In character arrays, byte arrays, and other strings. 2. False. 3. False. The java.lang package, which contains the String class, is automati- Progress Check cally imported. String Literals As you know, a string literal is created by specifying a quoted string. For each string literal in your program, Java automatically constructs a String object. Thus, you can use a string literal to initialize a String object. For example, the following code creates a String that contains the string "this is an example string literal". String str = "this is an example string literal"; // use string literal In this case, str is assigned a reference to the object that represents the quoted string. Because a String object is created for every string literal, you can use a string literal any place you can use a String instance. For example, you can pass a string lit- eral as an argument to a method that is expecting a String. Therefore, given a method called myMethod( ) that is declared like this: void myMethod(String arg) { ... the following call is legal: myMethod("a string literal"); String Concatenation In general, Java does not allow operations on String objects through operators. One exception to this rule is the + operator, which concatenates two strings, producing a String object as the result. This allows you to chain together a series of + operations. For example, the following fragment concatenates three strings: String age = "19"; String str = "He is " + age + " years old."; System.out.println(str); This displays the string "He is 19 years old." One practical use of string concatenation is found when you are creating very long strings. Instead of letting long strings wrap around within your source code, you can break them into smaller pieces, using the + to concatenate them. Here is an example: // Using concatenation to prevent long lines. class ConCat { public static void main(String[] args) { String longStr = "This could have been " + "a very long line that would have " + "wrapped around. But string concatenation " + "prevents this."; System.out.println(longStr); } } String Concatenation with other data types You can concatenate strings with other types of data. For example, consider this slightly different version of the earlier example: Java Programming 817 818 chapter 22 Swing handling int age = 19; String str = "He is " + age + " years old."; System.out.println(str); In this case, age is an int rather than another String, but the output produced is the same as before. This is because the int value in age is automatically converted into its string representation as a String object. This string is then concatenated as before. The compiler will convert an operand to its string equivalent whenever the other oper- and of the + is an instance of String. Be careful when you mix other types of operations with string concatenation expres- sions, however. You might get surprising results. Consider the following: String str = "four: " + 2 + 2; System.out.println(str); This fragment displays four: 22 rather than the four: 4 that you probably expected. Here’s why. The concatenation of "four:" with the string equivalent of 2 takes place first. This result is then concatenated with the string equiva- lent of 2 a second time. To complete the integer addition first, you must use parenthe- ses, like this: String str = "four: " + (2 + 2); Now str contains the string "four: 4". overriding toString( ) When Java converts an object into its string representation during concatenation, it does so by calling the object’s toString( ) method. As you know, every class imple- ments toString( ) because it is defined by Object. It has this general form: String toString( ) It returns a string that describes the object. Although the Object class provides a default implementation of toString( ), it may not be adequate for some uses. Frankly, for most important classes that you create, you will want to override toString( ) and provide your own string representation for objects of your class. Fortunately, this is easy to do. When overriding toString( ) for your class, simply return a String object that contains a human-readable string that appropriately describes an object of your class. By overriding toString( ) for classes that you create, you allow them to be fully inte- grated into Java’s programming environment. For example, they can be meaningfully used in print( ) and println( ) statements and in concatenation expressions. The fol- lowing program demonstrates this by overriding toString( ) for the Box class: // Override toString() for Box class. class Box { double width; double height; double depth; Box(double w, double h, double d) { width = w; height = h; depth = d; } // Provide string representation of Box. public String toString() { return "Dimensions are " + width + " by " + depth + " by " + height + "."; } } class OverrideToString { public static void main(String[] args) { Override toString( ) for Box. Box b = new Box(10, 12, 14); String str = "Box b: " + b; // toString() called here System.out.println(b); // toString() called here. System.out.println(str); } } Dimensions are 10.0 by 14.0 by 12.0 Box b: Dimensions are 10.0 by 14.0 by 12.0 As you can see, Box’s toString( ) method is automatically invoked when a Box object is used in a concatenation expression or in a call to println( ). The output of this program is shown here: Java Programming 819 ask the expert Q Why would anyone want to create an empty string? Since strings are immu- table, you can’t add new characters to them. This means that an empty string will always be empty. Can you give me an example that uses an empty string? AYes. An empty string is useful in a loop in which strings are concatenated. In such a case, the empty string is often the appropriate starting string. Here is an example: String[] data = {"abc, "def", "ghi"}; String result = ""; for(String s : data) result += s; 820 chapter 22 Swing handling ask the expert (Continued) Note that the string variable result is initialized to an empty string. Thus, after the first concatenation, result will contain only the string "abc" since "abc" was concatenated with the empty string. Thus, the empty string provides the proper starting condition. Try This 22-1 Add a toString( ) Method to the genSimpleStack Class GenStackToStringDemo.java GenSimpleStack.java As mentioned earlier, for many classes you create, you will want to override the toString( ) method inherited from Object so that it returns a meaningful string rep- resentation for an object of your class. In this project you will apply this principle to the GenSimpleStack class created in Try This 14-1 in Chapter 14. You will first see what the version of toString( ) inherited from Object returns for GenSimpleStack. You will then create an override of toString( ) for GenSimpleStack that returns a more useful result. Step-By-Step 1. The first step is to write a program that displays the result of calling toString( ) on a GenSimpleStack object. Put the following code into a file called GenStacktoStringDemo.java and save the file in the same directory as the Java files for the StackFullexception, Stackemptyexception, and GenSimpleStack classes and the IGenSimpleStack interface from Try This 14-1. class GenStackToStringDemo { public static void main(String[] args) throws StackFullException, StackEmptyException { Integer iStore[] = new Integer[10]; GenSimpleStack stack =
new GenSimpleStack(iStore);
System.out.println(“Empty stack: ” + stack);
stack.push(1); stack.push(2); stack.push(3); stack.push(4); stack.pop();
System.out.println(“Non-empty stack: ” + stack); }
}

Java Programming 821
2. Before overriding toString( ) for the GenSimpleStack class, compile the program from Step 1 and run it. You will see output similar to the following, although you will likely see different characters after the ‘@’ character.
Empty stack: GenSimpleStack@7369ca65 Non-empty stack: GenSimpleStack@7369ca65
These strings are generated by the Object class’s toString( ) method. Notice that the first part of the string is the name of the class, the last part is a sequence of hexadecimal characters and there is an ‘@’ character separating them. This string is useful in that it tells us the class of the object, but in most applications, you would like a more meaningful string representation.
3. Add the following method to GenSimpleStack from Try This 14-1. This method overrides toString( ) so that it returns a more meaningful result. Compile the class.
// Override toString() for GenSimpleStack. public String toString() {
String result = “(“;
// Add the string representations of all the // items in the stack, separated by commas. for(int i = 0; i < tos; i++) { result += data[i]; if(i < tos-1) // if not the last item, // add a comma and space result += ", "; } // Add the right parenthesis and return it. result += ")"; return result; } 4. Compile and run the GenStacktoStringDemo program again. You will see the following output: Empty stack: () Non-empty stack: (1, 2, 3) The elements of the stack are listed inside parentheses and separated by commas, with the top of the stack on the right end. These strings are more meaningful than the ones generated by Object’s version of toString( ). Notice that, in the for loop, the toString( ) method that you created im- plicitly calls the toString( ) methods of all the items in the stack. In this way, if all classes provide helpful toString( ) methods, then even complex objects like stacks that contain objects of other classes can generate useful string representations. 822 chapter 22 Swing handling 5. For your convenience, here is the complete GenSimpleStack class that includes the override of toString( ): class GenSimpleStack implements IGenSimpleStack { private T[] data; // this array holds the stack private int tos; // index of top of stack
// Construct an empty stack with the given array as storage. GenSimpleStack(T[] arrayRef) {
data = arrayRef;
tos = 0; }
// Push an item onto the stack.
public void push(T obj) throws StackFullException {
if (isFull())
throw new StackFullException(data.length);
data[tos] = obj;
tos++; }
// Pop an item from the stack.
public T pop() throws StackEmptyException {
if (isEmpty())
throw new StackEmptyException();
tos–;
return data[tos];
}
// Override toString() for GenSimpleStack. public String toString() {
String result = “(“;
// Add the string representations of all the // items in the stack, separated by commas. for (int i = 0; i < tos; i++) { result += data[i]; if (i < tos - 1) // if not the last item, // add a comma and space result += ", "; } // Add the right parenthesis and return it. result += ")"; return result; } Java Programming 823 // Return true if the stack is empty. public boolean isEmpty() { return tos == 0; } // Return true if the stack is full. public boolean isFull() { return tos == data.length; } } the length() method Since strings aren’t arrays, they don’t have a length field. However, String does have a method called length( ) that returns the length of a string. A string’s length is the number of characters that it contains. The length( ) method is shown here: int length( ) For example, String str = "Theta"; System.out.println(str.length()); displays 5, because there are five characters in str. As demonstrated in the next sec- tion, length( ) makes it easy to perform operations over the individual characters of a string. 1. To obtain the number of characters in a string, you use the string’s length field, like you do for an array. True or False? 2. Most classes should override the _______________ method to create meaning- ful string representations of its instances. 3. What does the + operator do if its operands are strings? Answers: 1. False. You use the length( ) method in the String class. 2. toString( ) 3. It concatenates the strings. Progress Check 824 chapter 22 Swing handling obtaInIng the CharaCterS wIthIn a StrIng The String class provides three ways in which characters (that is, values of type char) can be obtained from a String object. Each is examined here. Although the characters that comprise a string cannot be indexed as if they were a character array, a number of String methods employ an index (in other words, an offset) into the string for their operation. Like arrays, string indices begin at zero. charat( ) To obtain a single character from a String, you can use the charAt( ) method. It has this general form: char charAt(int where) Here, where is the index of the character that you want to obtain. The value of where must be nonnegative and specify a location within the string. The charAt( ) method returns the character at the specified location. The following program shows charAt( ) in action. It is used to display a string using double-spacing. In the process, it also demonstrates the length( ) method. // Demonstrate charAt() and length(). class CharAtAndLength { public static void main(String[] args) { String str = "Programming is both art and science."; // Cycle through all characters in the string. for(int i=0; i < str.length(); i++) System.out.print(str.charAt(i) + " "); System.out.println(); } } The output is shown here: Programming is both art and science. In the program, notice how length( ) is used to control the number of iterations and charAt( ) is used to obtain each character in sequence. getChars( ) If you need to obtain more than one character at a time, you can use the getChars( ) method. It has this general form: void getChars(int sourceStart, int sourceEnd, char[ ] target, int targetStart) Here, sourceStart specifies the index of the beginning of the substring to obtain, and sourceEnd specifies an index that is one past the end of the desired substring. Thus, the substring contains the characters from sourceStart through sourceEnd–1. The array that will receive the characters is specified by target. The index within target at which the substring will be copied is passed in targetStart. Care must be taken to ensure that the target array is large enough to hold the number of characters in the specified substring. The following program demonstrates getChars( ): class GetCharsDemo { public static void main(String[] args) { String str = "Programming is both art and science."; int start = 15; int end = 23; char[] buf = new char[end - start]; str.getChars(start, end, buf, 0); System.out.println(buf); } } Here is the output of this program: both art toChararray( ) If you want to convert all the characters in a String object into a character array, the easiest way is to call toCharArray( ). It returns an array of characters for the entire string. It has this general form: char[ ] toCharArray( ) For example, here is how to obtain an array that contains the entire contents of str: String str = "Programming is both art and science."; char[] chrs = str.toCharArray(); System.out.println(chrs); After this sequence executes, chrs will contain the characters that were in str, and the println( ) statement will display Programming is both art and science. One other point: The toCharArray( ) method is essentially a convenience, since it is pos- sible to use getChars( ) to achieve the same result. Java Programming 825 ask the expert Q Earlier, you mentioned that a string literal can be used any place that a String instance can. Does this mean that I can call a String method directly on a string literal? AYes, you can call methods directly on a quoted string. For example, the fol- lowing statement calls length( ) on the string literal "mystring". System.out.println("mystring".length()); As you might expect, it displays 8. Here is another example, System.out.println("Code and Data".charAt(9)); This displays the character D. 826 chapter 22 Swing handling Progress Check 1. To get the sixth character of a string s, what method call should you make? 2. The getChars( ) method returns a new array of characters. True or False? 3. Any modification to the char array returned by s.toCharArray( ) causes a cor- responding modification to the string s. True or False? StrIng ComParISon The String class includes a number of methods that compare strings or substrings within strings. Several examples are described here. equals( ) and equalsIgnoreCase( ) To compare two strings for equality, use equals( ). It has this general form: boolean equals(Object str) Here, str is the object being compared with the invoking String object. This method is specified by Object and overridden by String. The equals( ) method returns true if the strings contain the same characters in the same order. It returns false if the strings differ, or if str is not a String. The comparison is case sensitive. To perform a case-insensitive comparison (that is, a comparison that ignores dif- ferences in the case of the characters), call equalsIgnoreCase( ). When it compares two strings, it considers A-Z to be the same as a-z, for example. It has this general form: boolean equalsIgnoreCase(String str) Here, str is the String object being compared with the invoking String object. It returns true if, independent of case differences, the strings contain the same characters in the same order, and false otherwise. Here is an example that demonstrates equals( ) and equalsIgnoreCase( ): // Demonstrate equals() and equalsIgnoreCase(). class EqualityDemo { public static void main(String[] args) { String str1 = "table"; String str2 = "table"; String str3 = "chair"; String str4 = "TABLE"; Answers: 1. s.charAt(5) 2. False. It puts characters in an array that you provide as one of the method’s arguments. 3. False. if(str1.equals(str2)) System.out.println(str1 + " equals " + str2); else System.out.println(str1 + " does not equal " + str2); if(str1.equals(str3)) System.out.println(str1 + " equals " + str3); else System.out.println(str1 + " does not equal " + str3); if(str1.equals(str4)) System.out.println(str1 + " equals " + str4); else System.out.println(str1 + " does not equal " + str4); if(str1.equalsIgnoreCase(str4)) System.out.println("Ignoring case differences, " + str1 + " equals " + str4); else System.out.println(str1 + " does not equal " + str4); } } The output from the program is shown here: table equals table table does not equal chair table does not equal TABLE Ignoring case differences, table equals TABLE equals( ) Versus == These two comparisons produce different results. Java Programming 827 Before moving on, it is important to emphasize that the equals( ) method and the = = operator perform two different operations. As just explained, the equals( ) method compares the characters inside a String object. The = = operator compares two object references to see whether they refer to the same instance. Thus, they perform two fundamentally different operations. The following program shows how two differ- ent String objects can contain the same characters, but references to these objects will not compare as equal: // equals() vs == class EqualsNotEqualTo { public static void main(String[] args) { String str1 = "Alpha"; String str2 = new String(str1); System.out.println(str1 + " equals " + str2 + " is " + str1.equals(str2)); System.out.println(str1 + " == " + str2 + " is " + (str1 == str2)); } } 828 chapter 22 Swing handling The variable str1 refers to the String instance created by the literal "Alpha". The object referred to by str2 is created with str1 as an initializer. Thus, the contents of the two String objects are identical, but they are distinct objects. This means that str1 and str2 do not refer to the same objects and are, therefore, not ==, as is shown here by the program’s output: Alpha equals Alpha is true Alpha == Alpha is false regionmatches( ) The regionMatches( ) method compares a subset (that is, a region) of a string with a subset of another string. There is an overloaded form that allows you to ignore case in such comparisons. Here are the general forms for these two methods: boolean regionMatches(int startIndex, String str2, int str2StartIndex, int numChrs) boolean regionMatches(boolean ignoreCase, int startIndex, String str2, int str2StartIndex, int numChrs) For both versions, startIndex specifies the index at which the region to compare begins within the invoking String object. The String being compared is specified by str2. The index at which the comparison will start within str2 is specified by str2StartIndex. The length of the region being compared is passed in numChrs. The first version is case sensitive. In the second version, if ignoreCase is true, the case of the characters is ignored. Otherwise, case is significant. Here is an example: // Demonstrate RegionMatches. class CompareRegions { public static void main(String[] args) { String str1 = "Standing at river’s edge."; String str2 = "Running at river’s edge."; if(str1.regionMatches(9, str2, 8, 12)) System.out.println("Regions match."); if(!str1.regionMatches(0, str2, 0, 12)) System.out.println("Regions do not match."); } } The output is Regions match. Regions do not match. startswith( ) and endswith( ) String defines two methods that are, more or less, specialized forms of regionMatches( ). The startsWith( ) method determines whether a given String begins with a specified Java Programming 829 string. Conversely, endsWith( ) determines whether the String in question ends with a specified string. They have the following general forms: boolean startsWith(String str) boolean endsWith(String str) Here, str is the string being tested. In the case of startsWith( ), if str matches the beginning of the invoking string, true is returned. In the case of endsWith( ), if str matches the end of the invoking string, true is returned. Otherwise, both methods return false on a mismatch. The comparisons are case sensitive. For example, given String str = "Status: Complete"; Then the following two expressions are true: str.startsWith("Status:") and str.endsWith("Complete") There is a second form of startsWith( ) that lets you specify a starting point. It is shown here: boolean startsWith(String str, int startIndex) Here, startIndex specifies the index into the invoking string at which point the search will begin. compareto( ) and comparetoIgnoreCase( ) Often, it is not enough to simply know whether two strings, or portions of two strings, are identical. For sorting applications, you need to know which is less than, equal to, or greater than the next. A string is less than another if it comes before the other in dictionary order. A string is greater than another if it comes after the other in dictionary order. The method compareto( ) serves this purpose. It is specified by the Comparable interface, which String implements. The compareto( ) method has this general form:
int compareTo(String str)
Here, str is the String being compared with the invoking String. The comparison is case
sensitive. The result of the comparison is returned and is interpreted, as shown here:
If you want to perform a case-insensitive comparison, use comparetoIgnoreCase( ), as shown here:
Value
Meaning
Less than zero
The invoking string is less than str.
Greater than zero
The invoking string is greater than str.
Zero
The two strings are equal.
int compareToIgnoreCase(String str)

830 chapter 22 Swing handling
This method returns the same results as compareto( ), except that case differences are ignored.
The following example shows the difference between compareto( ) and compare- toIgnoreCase( ).
// Demonstrate compareTo() and compareToIgnoreCase().
class CompareStrings {
public static void main(String[] args) {
String str1 String str2 String str3
int result;
= “alpha”; = “ALPHA”; = “Beta”;
// Demonstrate the differences between compareTo() // and compareToIgnoreCase().
result = str1.compareTo(str2);
if(result != 0)
System.out.println(“Using compareTo(): ” + str1+”and” +str2+”differ”);
result = str1.compareToIgnoreCase(str2); if(result == 0)
System.out.println(“Using compareToIgnoreCase(): ” + str1+”and” +str2+”arethesame\n”);
// Now, compare alpha to Beta using compareTo(). System.out.println(“Using compareTo() to compare ” + str1 +
” with ” + str3); result = str1.compareTo(str3);
if(result < 0) System.out.println(str1 + " is less than " + str3); else if(result == 0) System.out.println(str1 + " is equal to " + str3); else if(result > 0)
System.out.println(str1 + ” is greater than ” + str3);
System.out.println();
// Next, compare alpha to Beta using compareToIgnoreCase(). System.out.println(“Using compareToIgnoreCase() to compare ” +
str1 + ” with ” + str3); result = str1.compareToIgnoreCase(str3);
if(result < 0) System.out.println(str1 + " is less than " + str3); else if(result == 0) System.out.println(str1 + " is equal to " + str3); else if(result > 0)
System.out.println(str1 + ” is greater than ” + str3);
These two comparisons produce a different ordering.

} }
The output is shown here.
Using compareTo(): alpha and ALPHA differ
Using compareToIgnoreCase(): alpha and ALPHA are the same
Using compareTo() to compare alpha with Beta alpha is greater than Beta
Using compareToIgnoreCase() to compare alpha with Beta alpha is less than Beta
Do you see something unusual in the output? Notice that when “alpha” is com- pared to “Beta” using compareto( ), alpha is greater than Beta. However, when the comparison is done using comparetoIgnoreCase( ), alpha is less than Beta. Here’s why. Even though Beta comes after alpha in alphabetical order, if you use a case sen- sitive comparison on the strings, alpha will be greater than Beta because Beta begins with an uppercase letter. In ASCII/Unicode, uppercase letters have a lower value than do the lowercase letters. However, when case is ignored, as is the case in the second comparison, the expected order is obtained. This is why comparetoIgnoreCase( ) is often a useful alternative when sorting strings.
uSIng indexof( ) and lastIndexof( )
The String class provides two methods that allow you to search a string for a speci- fied character or substring, and obtain an index to that item if it is found. They are
j indexOf( ) Searches for the first occurrence of a character or substring.
j lastIndexOf( ) Searches for the last occurrence of a character or substring.
These two methods are overloaded in several different ways. In all cases, the methods return the index at which the character or substring was found, or –1 on failure.
To search for the first occurrence of a character, use int indexOf(int ch)
To search for the last occurrence of a character, use int lastIndexOf(int ch)
Here, ch is the character being sought.
To search for the first or last occurrence of a substring, use
int indexOf(String str)
int lastIndexOf(String str)
Here, str specifies the substring.
You can specify a starting point for the search using these forms:
int indexOf(int ch, int startIndex)
int lastIndexOf(int ch, int startIndex)
int indexOf(String str, int startIndex)
int lastIndexOf(String str, int startIndex)
Java Programming 831

832 chapter 22 Swing handling
Here, startIndex specifies the index at which point the search begins. For indexOf( ), the search runs from startIndex to the end of the string. For lastIndexOf( ), the search runs from startIndex to zero.
The following example shows how to use several of the various index methods to search the contents of Strings:
// Demonstrate indexOf() and lastIndexOf().
class IndexOfDemo {
public static void main(String[] args) {
String str = “alpha beta gamma theta zeta”;
System.out.println(“The string is: ” + str); System.out.println(“The first index of t is ” + str.indexOf(‘t’));
System.out.println(“The last index of t is ” + str.lastIndexOf(‘t’)); System.out.println(“The first index of eta is ” + str.indexOf(“eta”)); System.out.println(“The last index of eta is ” + str.lastIndexOf(“eta”)); System.out.println(“The first index of eta after position 10 is ” +
str.indexOf(“eta”, 10));
} }
Here is the output of this program:
The string is: alpha beta gamma theta zeta The first index of t is 8
The last index of t is 25
The first index of eta is 7
The last index of eta is 24
The first index of eta after position 10 is 19
1. To compare two strings for equality without regard to upper or lower case, use the method __________________.
2. To compare two strings to see which one comes first alphabetically, use the method __________________________.
3. The expression s.equals(t) is the same as s = = t. True or False?
4. To determine if a string t is a substring of a string s call _____________________.
The result is −1 if and only if t is not a substring of s.
Answers:
1. equalsIgnoreCase( )
2. compareto( )
3. False.
4. s.indexOf(t)
Progress Check

obtaInIng a modIFIed StrIng
As explained, String objects are immutable. It is, however, still easy to obtain a modi- fied version of a String through the use of one or more methods defined by String. These methods return a modified copy of the original string. Because the original string is never modified, the rule of immutability is not violated. Here we will look at substring( ), replace( ), and trim( ), all of which return modified versions of the string on which they are invoked.
substring( )
You can obtain a portion of a string by use of substring( ). It has two forms. The first is String substring(int startIndex)
Here, startIndex specifies the index at which the desired substring will begin. This form returns a copy of the substring that begins at startIndex and includes the remain- der of the invoking string.
The second form of substring( ) allows you to specify both the beginning and ending index of the substring. This form was introduced in Chapter 5, but is shown again here for completeness:
String substring(int startIndex, int endIndex)
Here, startIndex specifies the beginning index, and endIndex specifies an index one beyond the stopping point. The string returned contains all the characters from startIndex, up to, but not including, endIndex.
The following program demonstrates both forms of substring( ). In the process, it also shows another example of indexOf( ) in action. The program defines a string that contains the following two sentences:
This is a test. This is, too.
The program then uses indexOf( ) to find the beginning of the second sentence. It then obtains the second sentence by using the single-argument form of substring( ). The program then uses a combination of indexOf( ), substring( ), and string concatenation to progressively replace one substring with another within the string.
// This program demonstrates both forms of substring().
class UseSubStrings {
public static void main(String[] args) {
System.out.println(“Original string: ” + orgStr);
// Obtain the second sentence in orgStr. This is
// done by first finding the end of the first sentence // and then obtaining the remainder of the string.
i = orgStr.indexOf(“.”) + 2;
Find the end of the first sentence.
Java Programming 833
String String String String int i;
orgStr = “This is a test. This is, too.”; searchStr = “is”;
subStr = “was”;
resultStr = “”;

834 chapter 22 Swing handling
String str = orgStr.substring(i); Use substring( ) to obtain the
System.out.println(“Second sentence: ” + str + “\n”); second sentence.
// Replace all occurrences of searchStr with subStr. System.out.println (“Progressively replacing ” +
do {
searchStr + ” with ” + subStr); System.out.println(orgStr);
// find next occurrences of searchStr. i = orgStr.indexOf(searchStr);
if(i != -1) {
// obtain the first part of the string resultStr = orgStr.substring(0, i);
// add the replacement sequence resultStr = resultStr + subStr;
Find the index of the next replacement..
Obtain the first part of the string, up to the point of replacement.
Add in the substitute string.
} }
// add the remainder of the string, skipping searchStr
resultStr = resultStr + orgStr.substring(i + searchStr.length());
// make the resulting string, the new orgstr
orgStr = resultStr; }
} while(i != -1);
Now, use substring( ) to obtain the remainder of the string.
The output from this program is shown here:
Original string: This is a test. This is, too. Second sentence: This is, too.
Progressively replacing is with was This is a test. This is, too.
Thwas is a test. This is, too. Thwas was a test. This is, too. Thwas was a test. Thwas is, too. Thwas was a test. Thwas was, too.
In the program, pay special attention to how the progressive modification of orgStr takes place. Each time through the do loop, an attempt is made to find searchStr. If it succeeds, the first part of orgStr is assigned to resultStr. Then, subStr is appended to resultStr. Finally, the remainder of orgStr, less the characters that match searchStr, are appended to resultStr. Finally, resultStr is assigned to orgStr, and the process repeats until no more matches are found.
replace( )
The replace( ) method has two forms. The first replaces one character with another throughout a string. It has the following general form:
String replace(char original, char replacement)

Java Programming 835
Here, original specifies the character to be replaced by the character specified by replacement. The modified copy of the invoking string is returned.
The second form of replace( ) replaces one character sequence with another throughout a string. It has this general form:
String replace(CharSequence original, CharSequence replacement)
The sequences can be objects of type String, because String implements the CharSequence interface. The modified copy of the invoking string is returned.
The following program demonstrates both forms of replace( ). Notice that each replaces all occurrences of the original item with the replacement.
// This program demonstrates both forms of replace().
class Replace {
public static void main(String[] args) {
String orgStr = “alpha beta gamma alpha beta gamma”; String resultStr;
System.out.println(“Original string: ” + orgStr);
// First, replace g with X.
resultStr = orgStr.replace(‘g’, ‘X’); System.out.println(resultStr);
// Now, replace beta with zeta.
resultStr = resultStr.replace(“beta”, “zeta”); System.out.println(resultStr);
} }
The output from the program is shown here:
Original string: alpha beta gamma alpha beta gamma alpha beta Xamma alpha beta Xamma
alpha zeta Xamma alpha zeta Xamma
trim( )
The trim( ) method deletes leading and trailing whitespace (typically, spaces, tabs, and newline characters) from a string. It has this general form:
String trim( )
If the invoking string has leading and/or trailing whitespace, then trim( ) removes the whitespace and returns a new string that contains the result. Otherwise, the result- ing string is simply equivalent to the invoking string.
Here is an example. Given the string:
String str = ” Gamma “;
After
str = str.trim();
str will contain only the string “Gamma”. The leading or trailing whitespace has been deleted.

836 chapter 22 Swing handling
The trim( ) method is quite useful when you process user commands. For exam- ple, the following program prompts the user for the name of a state and then displays that state’s capital. It uses trim( ) to remove any leading or trailing whitespace that may have inadvertently been entered by the user.
// Using trim() to process commands. import java.io.*;
class UseTrim {
public static void main(String[] args)
throws IOException {
// create a BufferedReader using System.in BufferedReader br = new
BufferedReader(new InputStreamReader(System.in)); String str;
System.out.println(“Enter ‘stop’ to quit.”); System.out.println(“Enter State: “);
do {
str = br.readLine();
str = str.trim(); // remove whitespace
if(str.equals(“Illinois”)) System.out.println(“Capital is Springfield.”);
else if(str.equals(“Missouri”)) System.out.println(“Capital is Jefferson City.”);
else if(str.equals(“California”)) System.out.println(“Capital is Sacramento.”);
else if(str.equals(“Washington”)) System.out.println(“Capital is Olympia.”);
// …
} while(!str.equals(“stop”));
} }
Use trim( ) to remove leading and trailing whitespace from the string entered by the user.
When this program is run, if the user enters something like ” Illinois “, the call to trim( ) will remove the leading and trailing whitespace, enabling the input to match “Illinois”.
Note: If you are using JDK 7 or later, you can use a String to control a switch. You might want to try changing the preceding example to take advantage of this new feature.
ChangIng the CaSe oF CharaCterS
wIthIn a StrIng
It is sometimes helpful to change the case of the letters within a string. For example, you might want to normalize the string for use by some other process. The method toLowerCase( ) converts all the characters in a string from upper case to lower case. The toUpperCase( ) method converts all the characters in a string from lower case

Java Programming 837 to upper case. Nonalphabetical characters, such as digits, are unaffected. Here are the
simplest forms of these methods:
String toLowerCase( ) String toUpperCase( )
Both methods return a String that contains the uppercase or lowercase equivalent of the invoking String.
Here is an example that uses toLowerCase( ) and toUpperCase( ): // Demonstrate toUpperCase() and toLowerCase().
class ChangeCase {
public static void main(String[] args)
{
String str = “This is a test.”;
System.out.println(“Original: ” + str);
String upper = str.toUpperCase(); String lower = str.toLowerCase();
System.out.println(“Uppercase: ” + upper);
System.out.println(“Lowercase: ” + lower); }
}
The output produced by the program is shown here:
Original: This is a test. Uppercase: THIS IS A TEST. Lowercase: this is a test.
String also supplies overloaded versions of toLowerCase( ) and toUpperCase( ) that let you specify a Locale object to govern the case conversion. (See Chapter 24 for a description of Locale.) Specifying the locale can be quite useful in some situations and can help internationalize your application.
1. The trim( ) method eliminates _____________________.
2. To convert a string s to all capital letters, use ___________________. 3. The call s.substring(0, 3) returns a string of length ______.
Answers:
1. whitespace at the beginning and end of the string
2. s.toUpperCase( )
3. 3 (assuming s has at least three characters in it)
Progress Check

838 chapter 22 Swing handling
ask the expert
Q In addition to the methods that you have discussed, can you tell me about other methods that String provides?
A Because of its importance String is a powerful, full-featured class. As such, it offers the programmer a rich assortment of methods. Here are a few more that
you will find both interesting and useful.
Method
Description
String concat(String str)
Returns the result of appending str to the end of the invoking string. Thus, it performs the same function as +.
boolean contains(CharSequence str)
Returns true if the invoking object contains the string specified by str. Otherwise, returns false.
boolean contentEquals(CharSequence str)
Returns true if the invoking string contains the same string as str. Otherwise, returns false.
static String format(String fmtstr, Object … args)
Returns a string formatted as specified by
fmtstr. (See Chapter 24 for details on formatting.)
boolean isEmpty( )
Returns true if the invoking string contains no characters. Otherwise, returns false.
boolean matches(string regExp)
Returns true if the invoking string matches the regular expression specified by regExp. Otherwise, returns false.
String
replaceAll(String regExp,
String newStr)
Returns a string in which all substrings that match the regular expression specified by regExp are replaced by newStr.
String
replaceFirst(String regExp,
String newStr)
Returns a string in which the first substring that matches the regular expression specified by regExp is replaced by newStr.
String[ ] split(String regExp)
Decomposes the invoking string into parts and returns an array that contains the result. Each part is delimited by the regular expression passed in regExp.
Notice that several of these methods work with regular expressions. An introduc- tion to regular expressions is found in Appendix B. Also notice that two of the methods take a CharSequence as an argument. Recall that String implements CharSequence. Thus, strings can be passed to those methods. Furthermore, any object that implements CharSequence can be passed to these methods.
String also provides several overloaded versions of the static method valueOf( ), which is used to produce a string representation of an object, character array, or primitive type. String also supports methods that handle Unicode code points.

Stringbuffer and Stringbuilder
Before leaving the topic of string handling, it is important to mention two alternatives to String. These are StringBuffer and StringBuilder. Both offer capabilities similar to String with one important addition: they contain strings that can be modified. For example, you can insert characters and substrings in the middle or append to the end. Both StringBuffer and StringBuilder will automatically grow to make room for such additions. You can also delete characters. To support these types of operations, both classes include methods such as setCharAt( ), append( ), insert( ), and delete( ).
StringBuffer has been part of Java since version 1.0. StringBuilder is a more recent addition, being added by JDK 5. StringBuilder is similar to StringBuffer except for one important difference: it is not synchronized, which means that it is not thread-safe. The advantage of StringBuilder is faster performance. However, in cases in which a mutable string will be accessed by multiple threads, and no external synchronization is employed, you must use StringBuffer rather than StringBuilder.
exerCISeS
1. Write a statement that displays the substring of a string s consisting of all but the last character of s.
2. Assume s is a string and consider the following statement: boolean b = s.isEmpty();
Find an equivalent statement or set of statements using length( ) instead of
isempty( ).
3. What happens if you call charAt( ) and the value you pass in for the index is
out of range?
4. Suppose you want to create one string that consists of two lines of text, each
on a separate line. You cannot use a statement such as
String s = “This is the first line. This is the second line”;
because this statement will generate a compiler error. How can you do it?
5. What is the value of the expression 2+2+”ME”? Is it “22ME” or “4ME”?
6. Suppose you want to test whether a string variable s contains the string
“abcdef “. Is it sufficient to call s.startsWith(“abc”) and s.endsWith(“def”)
and then see whether both method calls return true?
7. In the Usetrim example in the chapter that demonstrated how to use the
trim( ) method, the if-else-if ladder repeatedly tested the equality of two strings using the equals( ) method. Why didn’t the ladder repeatedly test the equality using = =?
8. Explain the difference between startsWith(substring, index) and indexOf(substring, index).
Java Programming 839

840 chapter 22 Swing handling
9. Suppose you have a string s containing some English text that always uses male gender pronouns (e.g., he, his, him) and you want to change it to use fe- male pronouns. The following program reads a string that is input by the user and uses the replace( ) method to attempt such a conversion. It will correctly convert sentences such as “He went to his house.” into “She went to her house.” Unfortunately, this program doesn’t work correctly for other English sentences. Find a sentence that the program doesn’t correctly convert.
import java.io.*;
public class ReplaceGender {
public static void main(String[] args)
throws IOException {
// create a BufferedReader using System.in BufferedReader br = new
BufferedReader(new InputStreamReader(System.in)); String str;
str = br.readLine();
str = str.replace(” he “, ” she “); str = str.replace(“His “, “Her “); str = str.replace(“He “, “She “); str = str.replace(” his “, ” her “); str = str.replace(” him “, ” her “);
System.out.println(str); }
}
10. Write a method that takes a string as its parameter and returns true if all the characters in the string are the same character.
11. Assume s is a string and consider the following statement: boolean b = s.isEmpty();
Find three different equivalent statements or sets of statements. Do not use
the String’s length( ) method as was done in exercise 2 above.
12. Even though a String instance is immutable, there are a variety of ways to create an arbitrary new string from an existing string. One way is to use a
StringBuilder or StringBuffer. Another way is to convert the string into a char array using toCharArray( ), manipulate the characters in the array, and then create the new string using the String constructor that takes a char array as its argument. Follow this last approach to implement a replaceChar( ) method that takes three parameters: a string, an integer index, and a char. It returns a new string identical to the first argument except that the character at the given index is replaced by the character that is the third argument to the method. For example, replaceChar(“abc”, 0, ‘d’) returns the string “dbc”.

Java Programming 841
13. Implement a reverse( ) method that takes a string as its parameter and returns a new string in which the order of the characters is reversed. Use the same ap- proach as described in the preceding problem. That is, convert the string to a char array, manipulate the array, and then convert it back into a string.
14. A common idiom seen in Java programming is to take a variable of any type and add the empty string to it, as in x + “”. What does that addition accomplish?
15. If s and t are strings and you want to know whether s starts with the string t, you can execute s.startsWith(t). As mentioned in the text, you can also use regionMatches( ) instead of startsWith( ). Give an expression using regionMatches( ) that is equivalent to s.startsWith(t).
16. Assume s is a string and consider the following statement: char[] cArray = s.toCharArray( );
Find an equivalent statement or set of statements using getChars( ) instead of
toCharArray( ).
17. ImplementamethodisSubstring()thattakestwostringssandtasitsparameters
and returns true if t is a substring of s. Use the second form of startsWith( ) (that
has two parameters). Do not use the overloaded indexOf( ) methods.
18. Assume s and t are strings, and consider the following statement.
boolean b = s.equalsIgnoreCase(t);
Create an equivalent statement or set of statements using equals( ) and
toLowerCase( ) instead of equalsIgnoreCase( ).
19. Which string comes first in alphabetical order: “$*%” or “&;@”? Why?
20. Implement a method mytrim( ) that takes a string as its parameter and
returns a new string with all the whitespace characters removed from the be- ginning and end of the string. Do not use the String class’s trim( ) method. Instead, repeatedly call substring( ) to get shorter and shorter strings. Assume that whitespace characters are the space ‘ ‘, tab ‘\t’, newline ‘\n’, and return ‘\r’ characters.
21. Implement a method isemailAddress( ) that takes a string s as its parameter. It returns true if s is of the form “x@y.com” where x and y can be any mixture of one or more alphabetical letters (lower or upper case) or digits.
22. Assume s and t are strings, and consider the following statement. String v = s.concat(t);
Create an equivalent statement or set of statements without using the concat( ) method and without using the + operator on strings.

ChaptEr
Exploring java.lang
key skills & concepts
j The primitive type wrappers j The Math class
j The Process class
j The ProcessBuilder class j The Runtime class
j The System class
j The Object class
j The Class class
j The Enum class
j The Comparable interface j The Appendable interface j The Iterable interface
j The Readable interface
j The CharSequence interface j The AutoCloseable interface
This chapter explores java.lang. As you know, java.lang is automatically imported into all programs. It contains classes and interfaces that are fundamental to virtually all of Java programming. It is Java’s most widely used package, and all Java program- mers must have a general understanding of what it provides.
The java.lang package includes the following top-level classes:
Boolean
Byte
Character
Class
ClassLoader
ClassValue
Compiler
Double
Enum
Float
InheritableThreadLocal
Integer
Long
Math
Number
843
23

844 chapter 23 Exploring java.lang
Object
Package
Process
ProcessBuilder
Runtime
RuntimePermission
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable
Void
The top-level interfaces defined by java.lang include those shown next:
As you can imagine, java.lang’s classes and interfaces define a very large amount of functionality. Some parts of java.lang, such as String, StringBuilder, StringBuffer, Throwable, Thread, and Runnable, have been described elsewhere in this book. Furthermore, not every part of java.lang is commonly used, or used by all program- mers. For example, some classes, such as StrictMath and Compiler, apply mostly to specialized situations. For these reasons, we will focus on several classes that are applicable to a wide range of situations and not described elsewhere in this book. The chapter concludes with an overview of java.lang’s interfaces. We begin by revisiting the primitive type wrappers.
primitivE typE WrappErs
As explained in Part One, Java uses primitive types, such as int and char, for perfor- mance reasons. These data types are not part of the object hierarchy. They are passed by value to methods and cannot be directly passed by reference. Also, there is no way for two methods to refer to the same instance of a primitive type. At times, you will need to create an object representation for one of these primitive types. For example, there are collection classes discussed in Chapter 25 that deal only with objects; to store a primitive type in one of these classes, you need to encapsulate the primitive type in a class. To address this need, Java provides classes that correspond to each of the primitive types. In essence, these classes encapsulate, or wrap, the primitive types within a class. Thus, they are commonly referred to as type wrappers. Although sev- eral aspects of the type wrappers were covered in Part One, here we will look at some of their other features and capabilities. We will begin by reviewing the superclass of the numeric type wrappers: Number.
Number
Recall from Part One that the abstract class Number defines a superclass that is extended by (among others) the classes that wrap the numeric types byte, short, int, long, float, and double. Number declares methods that return the value of the object
Appendable
Cloneable
Readable
AutoCloseable
Comparable
Runnable
CharSequence
Iterable

Java programming 845
in each of the different number formats. For example, doubleValue( ) returns the value as a double, floatValue( ) returns the value as a float, and so on. The need for these methods has been greatly reduced because of auto-unboxing. However, they are still available if you want to use them. Number implements the java.io.Serializable interface.
In java.lang, Number has concrete subclasses that hold explicit values of each numeric type: Double, Float, Byte, Short, Integer, and Long.
Double and Float
Double and Float are wrappers for floating-point values of type double and float, respectively. Both extend Number and implement the Comparable interface. The constructors for Float are shown here:
Float(double num)
Float(float num)
Float(String str) throws NumberFormatException
As you can see, Float objects can be constructed with values of type float or double. They can also be constructed from the string representation of a floating-point number.
The constructors for Double are shown here: Double(double num)
Double(String str) throws NumberFormatException
Double objects can be constructed with a double value or a string containing a floating-point value.
The following example creates two Double objects—one by using a double value and the other by passing a string that can be parsed as a double:
class DoubleDemo {
public static void main(String[] args) {
Double d1 = new Double(3.14159); Double d2 = new Double(“314159E-5″);
System.out.println(d1 + ” ” + d2); }
}
As you can see from the following output, both constructors created identical Double instances.
3.14159 3.14159
Both Float and Double define several constants that are useful when working with numbers. Among them are
MAX_VALUE
Maximum positive value
MIN_VALUE
Minimum positive value
NaN
A value the represents something that is not a number
POSITIVE_INFINITY
Positive infinity
NEGATIVE_INFINITY
Negative infinity

846 chapter 23 Exploring java.lang
For Float, these values are type float. For Double, they are of type double.
In addition to the methods inherited from Number, both Float and Double define several other methods. For example, you can compare two numbers for equality by use of equals( ) and for an ordering relationship by use of compareTo( ), which is specified by Comparable. As explained in Chapter 11, Float defines the method parseFloat( ) and Double defines the method parseDouble( ). These methods can be
used to convert numeric strings into float or double values.
Two of the more interesting methods are isInfinite( ) and isNaN( ). These methods
are defined by both Float and Double. Their Double versions are shown here, but the Float versions are similar.
boolean isInfinite( ) boolean isNaN( )
The isInfinite( ) method returns true if the invoking object contains an infinite value, which can be either positive or negative. The isNaN( ) method returns true if the invoking object contains a value that is not a number.
The following example creates two Double objects; one is infinite, and the other is not a number:
// Demonstrate isInfinite() and isNaN() class InfNaN {
public static void main(String[] args) { Double d1 = new Double(1/0.0);
Double d2 = new Double(0/0.0);
System.out.println(d1 + “: ” + d1.isInfinite() + “, ” + d1.isNaN());
System.out.println(d2 + “: ” + d2.isInfinite() + “, ” + d2.isNaN()); }
}
This program generates the following output:
Infinity: true, false NaN: false, true
Note: As a point of interest, if the division in the program had used an integer for the divisor, a divide-by-zero exception would have been thrown rather than generating an infinite or NaN value.
Both Float and Double also provide static versions of isInfinite( ) and isNaN( ). The Double versions are shown here:
static boolean isInfinite(double num) static boolean isNaN(double num)
In both cases, the number is passed in num and the result is returned. Byte, short, integer, and Long
The Byte, Short, Integer, and Long classes are wrappers for byte, short, int, and long integer types, respectively. They all extend Number and implement the Comparable interface. Their constructors are shown here:
Byte(byte num)
Byte(String str) throws NumberFormatException

Short(short num)
Short(String str) throws NumberFormatException
Integer(int num)
Integer(String str) throws NumberFormatException
Long(long num)
Long(String str) throws NumberFormatException
As you can see, these objects can be constructed from numeric values or from strings that contain valid whole number values.
Among other fields, all of the integer numeric wrappers define the following constants:
The type of these values is that of the wrapped type.
In addition to the methods inherited from Number, all of the integer wrappers
define several other methods. For example, you can compare two numbers for equal- ity by use of equals( ) and for an ordering relationship by use of compareTo( ), which is specified by Comparable.
All of the integer numeric wrappers define several methods for parsing integers from strings and converting strings back into integers. As you already know, the Byte, Short, Integer, and Long classes provide the parseByte( ), parseShort( ), parseInt( ), and parseLong( ) methods, respectively. These methods return the byte, short, int, or long equivalent of the numeric string with which they are called. However, variants of these methods allow you to specify the radix, or numeric base, for conversion. Common radixes are 2 for binary, 8 for octal, 10 for decimal, and 16 for hexadecimal. Here are the radix versions of the parse methods:
static byte parseByte(String str, int radix) throws NumberFormatException static short parseShort(String str, int radix) throws NumberFormatException static int parseInt(String str, int radix) throws NumberFormatException static long parseLong(String str, int radix) throws NumberFormatException
In all cases, str specifies the numeric string to be converted and radix specifies the radix. The result of the conversion is returned. A NumberFormatException is thrown if str does not contain a valid number. Here is an example that parses a binary value:
// Demonstrate parseInt().
class ParseBinary {
public static void main(String[] args) {
int num;
String str = “10011101”;
num = Integer.parseInt(str, 2);
System.out.println(“Here is ” + str + ” in decimal: ” + num); }
Java programming 847
MIN_VALUE
Minimum value
MAX_VALUE
Maximum value
}

848 chapter 23 Exploring java.lang
The output is shown here:
Here is 10011101 in decimal: 157
To convert a number into a decimal string, use the versions of toString( ) defined in the Byte, Short, Integer, or Long classes. The Integer and Long classes also provide the methods toBinaryString( ), toHexString( ), and toOctalString( ), which convert a value into a binary, hexadecimal, or octal string, respectively. Here are the versions for Integer:
static String toBinaryString(int num) static String toHexString(int num) static String toOctalString(int num)
In all cases, num specifies the value to convert into its string representation.
Note: Both Float and Double also provide the method toHexString( ), which converts
a floating-point value into its hexadecimal floating point format.
The following program demonstrates binary, hexadecimal, and octal conversion:
// Convert an integer into binary, hexadecimal, // and octal.
class StringConversions {
public static void main(String[] args) {
int num = 19648;
System.out.println(num + ” in binary: ” + Integer.toBinaryString(num));
System.out.println(num + ” in octal: ” + Integer.toOctalString(num));
System.out.println(num + ” in hexadecimal: ” + Integer.toHexString(num));
} }
The output of this program is shown here:
19648 in binary: 100110011000000 19648 in octal: 46300
19648 in hexadecimal: 4cc0
Both Integer and Long contain two methods that rotate the bits within an integer value. These are called rotateLeft( ) and rotateRight( ). Their Integer forms are shown here:
static int rotateLeft(int num, int n) static int rotateRight(int num, int n)
Here, num is the number being rotated, and n specifies the number of positions to rotate. A rotate is similar to a shift, except that a bit shifted off one end is brought back in on the other end. Here is an example:

// Demonstrate rotateLeft() and rotateRight()
class Rotations {
public static void main(String[] args) {
int num = -3356756; System.out.println(Integer.toBinaryString(num));
num = Integer.rotateLeft(num, 2); System.out.println(Integer.toBinaryString(num));
num = Integer.rotateRight(num, 2);
System.out.println(Integer.toBinaryString(num)); }
}
The output is shown here:
11111111110011001100011110101100 11111111001100110001111010110011 11111111110011001100011110101100
Character
Character is a simple wrapper around a char. It implements java.io.Serializable and Comparable. It has only one constructor:
Character(char ch)
Here, ch specifies the character that will be wrapped by the Character object being created. To obtain the char value contained in a Character object, call charValue( ), shown here:
char charValue( )
It returns the character.
Character includes several static methods that categorize characters. Others alter
the case of characters. A sampling is shown in Table 23-1. These methods can be quite helpful when working with characters. For example, if a file separates fields with a space, you might use isSpaceChar( ) to find the end of one field and the start of the next. If you are parsing a line of text, you might use isDigit( ) to find the start of a number, or isLetterOrDigit( ) to read an employee ID, such as HR534R, that contains both letters and digits. The following example demonstrates several of these methods:
// Demonstrate several is… methods.
class IsDemo {
public static void main(String[] args) {
char[] a = {‘a’, ‘b’, ‘5’, ‘?’, ‘A’, ‘ ‘, ‘\t’, ‘\n’}; for(int i=0; i
Here, T is the type of the class or interface represented.
The methods defined by Class are often useful in situations where run-time type
information about an object is required. Methods are provided that allow you to deter- mine additional information about a particular class, such as its public constructors,
Answers:
1. True. You can do so by calling System.getProperty(“os.name”).
2. arraycopy
3. A long value giving the number of milliseconds since midnight, January 1, 1970.

Java programming 867
Table 23-3: The Methods Defined by Object
Method
Description
Object clone( ) throws
CloneNotSupportedException
Creates a new object that is the same as the invoking object.
boolean equals(Object object)
Returns true if the invoking object is equivalent to object.
void finalize( ) throws Throwable
Default finalize( ) method. It is called before an unused object is recycled.
final Class getClass( )
Obtains a Class object that describes the invoking object.
int hashCode( )
Returns the hash code associated with the invoking object.
final void notify( )
Resumes execution of a thread waiting on the invoking object.
final void notifyAll( )
Resumes execution of all threads waiting on the invoking object.
String toString( )
Returns a string that describes the object.
final void wait( )
throws InterruptedException
Waits on another thread of execution.
final void wait(long milliseconds) throws InterruptedException
Waits up to the specified number of milliseconds on anoth- er thread of execution.
final void wait(long milliseconds, int nanoseconds)
throws InterruptedException
Waits up to the specified number of milliseconds plus nanoseconds on another thread of execution.
fields, and methods. You can also obtain information about interfaces. Among other things, this is important for Java’s reflection features.
Although a more sophisticated use of Class is beyond the scope of this book, the following program will demonstrate two of its capabilities. It uses getClass( ) (inher- ited from Object) to obtain a Class reference. It then demonstrates the getName( ) and getSuperclass( ) methods, defined by Class. These methods are shown here:
String getName( )
Class getSuperclass( )
The getName( ) method returns the name of the class represented by the invoking Class instance. The getSuperclass( ) method returns a reference to a Class object that represents the superclass of the invoking Class object.
// Demonstrate Run-Time Type Information.
class X { int a;
float b; }
class Y extends X { double c;
}

868 chapter 23 Exploring java.lang
class RTTI {
public static void main(String[] args) {
X x = new X(); Y y = new Y(); Class clObj;
clObj = x.getClass(); // get Class reference System.out.println(“x is object of type: ” +
clObj.getName());
clObj = y.getClass(); // get Class reference System.out.println(“y is object of type: ” +
clObj.getName()); clObj = clObj.getSuperclass();
System.out.println(“y’s superclass is ” + clObj.getName());
} }
The output from this program is shown here:
x is object of type: X y is object of type: Y y’s superclass is X
thE Enum CLass
Notice how the superclass is obtained.
As described in Chapter 13, enumerations are integrated into the Java language via the enum keyword. All such enumerations automatically inherit Enum. Enum is a generic class that is declared as shown here:
abstract class Enum>
Here, E stands for the enumeration type. Enum has no public constructors. It was first discussed in Chapter 13.
In addition to the methods described in Chapter 13, here is one more that you might find interesting:
static > T valueOf(Class e-type, String name)
The valueOf( ) method returns the constant associated with name in the enumeration
type specified by e-type.
thrEaD-rELatED CLassEs
aND thE runnable iNtErFaCE
Java’s key thread-related classes are packaged in java.lang. These are
Runnable Thread

ThreadGroup ThreadLocal InheritableThreadLocal
Two of these, the Runnable interface and the Thread class, were already exten- sively described in Chapter 12. A ThreadGroup creates a group of threads. Thread groups offer a convenient way to manage groups of threads as a unit. ThreadLocal is used to create thread local variables. Each thread will have its own copy of a thread local variable. InheritableThreadLocal creates thread local variables that may be inherited.
OthEr CLassEs
In addition to the classes just described and those described elsewhere in this book, java.lang includes several others. They are summarized here:
Java programming 869
ClassLoader
An abstract class that determines how classes are loaded.
ClassValue
This is a special-use class added by JDK 7 that associates a value with a type.
Compiler
Supports environments in which Java bytecode is compiled into executable code rather than interpreted. It is not for normal programming use.
Package
Encapsulates information about a package. Among other things, this information includes such things as its name, version, title, vendor, and annotations.
RuntimePermission
Relates to Java’s security mechanism. It encapsulates a permission available at run time.
SecurityManager
Defines a security manager.
StackTraceElement
Describes a stack frame, which is an individual element of a stack trace when an exception occurs.
StrictMath
Defines a complete set of mathematical methods that parallel those in Math. The difference is that the StrictMath version is guaranteed to generate precisely identical results across all implementations, whereas the methods in Math are given more latitude in order to improve performance.
Void
Represents the void type.
thE java.lang iNtErFaCEs
The java.lang package defines eight top-level interfaces. The Runnable interface was described earlier in this book, in Chapter 12, when multithreading was described. The Cloneable interface was mentioned when Object was described. The others are examined here.

870 chapter 23 Exploring java.lang
the Comparable interface
Objects of classes that implement Comparable can be ordered. In other words, classes that implement Comparable contain objects that can be compared in some meaningful manner. Comparable is generic and is declared like this:
interface Comparable
Here, T represents the type of objects being compared.
The Comparable interface declares one method that is used to determine what
Java calls the natural ordering of instances of a class. The general form of the method is shown here:
int compareTo(T obj)
This method compares the invoking object with obj. It returns 0 if the values are equal. A negative value is returned if the invoking object has a lower value. Otherwise, a positive value is returned.
As a general rule, the outcome of comparing two objects with compareTo( ) should be compatible with the outcome of comparing those two objects with equals( ). Therefore, if the two objects are equal according to equals( ), then compareTo( ) should return zero, and vice versa.
This interface is implemented by several of the classes already discussed in this book, such as Byte, Character, Double, Float, Long, Short, String, and Integer.
Try This 23-1 Create a Generic Method for Finding the Minimum
in an Array
Finder.java
MinElementDemo.java
Suppose you have an array and you want to find the minimum element. This is easy if the elements are integers. (See the MinMax example in Chapter 5.) It is also easy if the elements are strings for which the “minimum” string is the string that comes first alphabetically. For example, here is one way to write a method that finds the minimum element in a non-empty array of strings:
String minStr(String[] data) { String currMin = data[0];
for(String s : data) if(s.compareTo(currMin) < 0) currMin = s; return currMin; } Java programming 871 This method works by looping through the array comparing the values and keeping track of the smallest one found. After the loop ends, the value in currMin will be the smallest value, which is returned. Notice that strings are compared by use of the compareTo( ) method, which is specified by the Comparable interface and implemented by String. (See Chapter 22.) Can we use the same basic approach for other types of arrays, such as Integer arrays or arrays of user-defined types? More precisely, can we adapt the logic in minStr( ) to create a generic method that finds the minimum value in different types of arrays? The answer is Yes if the array’s element type implements the Comparable interface. If a class implements this interface, then we can use the compareTo( ) method to compare objects of that class. In this project, we create a generic method called minElement( ) that finds the minimum element of any type of array, as long as the element type implements the Comparable interface. STEP-By-STEP 1. Create a new file called Finder.java. The generic minElement( ) method will be contained in a class called Finder. Furthermore, minElement( ) will be static, so that no object of type Finder need be instantiated. This makes it more convenient to use. Enter the following code into Finder.java: class Finder { public static > T minElement(T[] data) { T currMin = data[0];
for(T x : data) {
if (x.compareTo(currMin) < 0) currMin = x; } return currMin; } } 2. Let’s examine the minElement( ) method in detail. It looks very much like the minStr( ) method above except that it is a generic method with type parameter T. The type T can be any type as long as it implements the Comparable interface. This means that elements of type T can be compared to each other using the compareTo( ) method.
Because the String class implements Comparable, the minElement( ) method can replace the minStr( ) method shown above. The type wrappers, such as Integer and Double, also implement Comparable. This means that you can use minElement( ) to find the minimum in arrays of Integers, for example. In general, minElement( ) can be used to find the minimum ele- ment of any non-empty array, including those of user-defined types, as long as the element type implements Comparable.

872 chapter 23 Exploring java.lang
3. To see how minElement( ) works with arrays of integers, arrays of strings, and arrays of Doubles, create a file called MinElementDemo.java that con-
tains the following code:
class MinElementDemo {
public static void main(String[] args) {
Integer[] intArray = { 3, 1, 4, 3, 6, 5}; int intMin = Finder.minElement(intArray); System.out.println(intMin);
String[] strArray = {“every”, “good”, “boy”, “does”, “fine”}; String strMin = Finder.minElement(strArray); System.out.println(strMin);
Double[] doubleArray = {3.14, 2.8, 6.023, 1.414}; Double doubleMin = Finder.minElement(doubleArray); System.out.println(doubleMin);
} }
Notice that the minElement( ) method is called three times, each time with an array of a different type. When you run the main( ) method in the
MinDemo class, you will get the following output:
1
boy 1.414
4. You can use the same basic approach used by minElement( ) whenever you create a generic method that needs to compare objects. Simply specify that the type parameter extends Comparable. Then, use compareTo( ) to com- pare objects.
the appendable interface
Objects of a class that implements Appendable can have a character or character sequences appended to it. Appendable defines these three methods:
Appendable append(char ch) throws IOException
Appendable append(CharSequence chars) throws IOException Appendable append(CharSequence chars, int begin, int end )
throwsIOException
In the first form, the character ch is appended to the invoking object. In the second form, the character sequence chars is appended to the invoking object. The third form allows you to indicate a portion (the characters running from begin through end–1) of the sequence specified by chars. In all cases, a reference to the invoking object is returned.

the iterable interface
Iterable must be implemented by any class whose objects will be used by the for-each version of the for loop. In other words, in order for an object to be used within a for- each style for loop, its class must implement Iterable. Iterable is a generic interface that has this declaration:
interface Iterable
Here, T is the type of the elements being iterated. It defines one method, iterator( ), which is shown here:
Iterator iterator( )
It returns an iterator to the elements contained in the invoking object.
Note: Iterators are described in detail in Chapter 25. the readable interface
The Readable interface indicates that an object can be used as a source for characters. It defines one method called read( ), which is shown here:
int read(CharBuffer buf ) throws IOException
This method reads characters into buf. It returns the number of characters read, or –1
if the invoking object is empty.
the Charsequence interface
The CharSequence interface defines methods that read from a sequence of charac- ters. These methods are shown here:
char charAt(int idx)
int length( )
CharSequence subSequence(int startIdx, int stopIdx) String toString( )
The charAt( ) method returns the character at the index specified by idx. The number of characters in the invoking sequence is returned by length( ). A subset of the invoking sequence beginning at startIdx and ending at stopIdx–1 is returned by subSequence( ). Finally, toString( ) returns the String equivalent of the invoking sequence.
Java programming 873
ask the Expert
Q The CharSequence interface was mentioned in the last chapter, in conjunc-
tion with the String class. What other classes implement this interface, and hy is it important?
It is implemented by the CharBuffer, Segment, String, StringBuffer, and
wA
StringBuilder classes and is used in several packages in the JDK. The value of this interface, as in all interfaces, is that it helps minimize coupling, as described in Chapter 16. That is, classes that use this interface are less tightly bound, so they offer more flexibility and reusability.

874 chapter 23 Exploring java.lang
ask the Expert (Continued)
For example, one of the replace( ) methods in the String class mentioned in the preceding chapter has the general form
String replace(CharSequence original, CharSequence replacement)
This method will take not only objects of class String as its parameters, but also objects of any class implementing the interface, such as StringBuffer and StringBuilder. Therefore, the method is much more useful than it would be if it had not used the CharSequence interface.
One other point: the subSequence( ) method in the CharSequence interface returns a CharSequence instead of a String or another class. The advantage of doing so is, again, the flexibility it provides. In this case, the flexibility is of benefit to the implementer of the method, who can choose to create and return any kind of object he or she wants, as long as it implements the interface.
the autoCloseable interface
AutoCloseable was added by JDK 7, and it provides support for the try-with- resources statement, which implements what is sometimes referred to as automatic resource management (ARM). The try-with-resources statement automates the process of releasing a resource (such as a stream) when it is no longer needed. (See Chapter 11 for details.) Only objects of classes that implement AutoCloseable can be used with try-with-resources. The AutoCloseable interface defines only the close( ) method, which is shown here:
void close( ) throws Exception
This method closes the invoking object, releasing any resources that it may hold. It is automatically called at the end of a try-with-resources statement, thus eliminating the need to explicitly invoke close( ). AutoCloseable is implemented by several classes, including all of the I/O classes that open a stream that can be closed.
1. What methods do you call to obtain the class and superclass of an object?
2. What interface declares a method that is used to determine the “natural” order-
ing of objects of a class?
3. What interface must a class implement if it is to allow the use of for-each loops
for accessing the data of objects of the class?
Answers:
1. getClass( ) and getSuperclass( ) 2. Comparable
3. Iterable
progress Check

ExErCisEs
1. The classes that are used to encapsulate primitive values so that they can be used where only objects are allowed are called ________________ classes.
2. Infinity is not a number. More precisely, for a double d, if isInfinite(d) is true, then isNaN(d) is true. True or False?
3. The Double.MIN_VALUE is the smallest positive double value, and Integer.MIN_VALUE is the smallest positive integer value (namely, 1). True or False?
4. Determine the values of the following expressions. The constants are all defined in the Double class:
A. MAX_VALUE / MIN_VALUE
B. MAX_VALUE * MAX_VALUE
C. POSITIVE_INFINITY / POSITIVE_INFINITY
D. POSITIVE_INFINITY / NEGATIVE_INFINITY
E. POSITIVE_INFINITY – POSITIVE_INFINITY
F. POSITIVE_INFINITY – NEGATIVE_INFINITY
G. NaN – NaN
5. For every character ch, the expression Character.isUpperCase(Character.toUpperCase(ch))
evaluates to true. True or False?
6. For every double d, the expression Math.ceil(Math.floor(d)) is equal to the
expression Math.floor(Math.ceil(d)). True or False?
7. To start another program (another heavyweight process) in a Java program,
you call the constructor for the Process class. True or False?
8. The nanoTime( ) method in the System class returns the number of nanosec-
onds since midnight, January 1, 1970. True or False?
9. The getName( ) method in Class returns just the name of the class without
the package it is in. True or False?
10. Write a method numWords( ) that takes a string as its parameter. It com-
putes and returns the number of words in the string. For our purposes, a word is a substring consisting of one or more non-whitespace characters separated from other words by one or more whitespace characters. Loop through the characters in the string and use the isWhitespace( ) method in the Character class.
11. Write a method toAllUpperCase( ) that takes a string as its parameter. It returns a copy of the string in which all letters are now in upper case. Use the toUpperCase( ) method in the Character class, not the toUpperCase( ) method in the String class.
Java programming 875

876 chapter 23 Exploring java.lang
12. Will the following expression compile? If not, why not? If so, what is the
value of the expression?
new Boolean(Boolean.parseBoolean(new Boolean(“false”).toString())).equals(Boolean.FALSE);
13. Modify the PBDemo2 class so that its main( ) method starts up a web browser on your computer and opens your favorite web page.
14. Write a program similar to RedirectOut that, instead of redirecting System.out, redirects System.in to get data from a file whose name is specified as a command-line argument.
15. Write a method getLineage( ) that takes any object as its parameter. It returns an array of strings that contains the name of the object’s class, the name of its superclass, the name of the superclass’s superclass, and so on, all the way up to and including the Object class.
16. Write a program that creates two integer arrays of length 10 million or larger (assuming your system can handle arrays that large). Then it measures how long (in milliseconds) it takes to copy the data from the first array to the second array using two different approaches: using a for loop and using the arraycopy( ) method in the System class. It then displays the time each approach takes.
17. Add a maxElement( ) method to the Finder class defined in Try This 23-1. It is identical to the minElement( ) method in the Finder class except that it returns the largest element in the array instead of the smallest element.
18. The MemoryDemo program showed that an array of 1,000 Integers took about 183,672 bytes of memory. However, an int variable takes only 4 bytes. Therefore, shouldn’t the array have taken only 4,000 bytes? Why did it take more?
19. Use the Math class to write a program that demonstrates the following equalities. More precisely, the program should calculate and display the values on the left side of each equality. For comparison purposes, it should also display the values on the right side of each equality. Recall that the mathematical constant e is represented by Math.E and π is represented by Math.PI in Java.
A. elog(2.0) = 2.0
B. log(e2.0) = 2.0
C. sin2(π/3) + cos2(π/3) = 1.0
D. tan(arctan(π/3)) = π/3

Java programming 877
20. Implement a function roundDownTenth( ) that takes a double value as its parameter. It rounds the value down to the nearest tenth and returns it. For example, roundDownTenth(3.16) returns 3.1 and roundDownTenth(−3.51) returns −3.6.
21. As noted in this chapter, the Math class declares two static final constants: E and PI. If you need to calculate the area of a circle given its radius r, which of the following expressions is better and why?
A. Math.PI * r * r
B. 3.141592653589793238462643 * r * r

ChaptEr
Exploring java.util
key skills & concepts
j Work with locales using the Locale class
j Work with date and time with the Date, Calendar, and
GregorianCalendar classes
j Format output with the Formatter class
j Use the printf( ) method for formatting
j Read formatted input with the Scanner class
j Generate pseudorandom numbers with the Random class j Use the Observable class and the Observer interface
j Schedule tasks using the Timer and TimerTask classes
The java.util package defines classes and interfaces that handle a wide range of tasks that are commonly encountered when programming. For example, java.util contains the Collections Framework. The Collections Framework is one of Java’s most pow- erful subsystems. It supports a sophisticated hierarchy of interfaces and classes that manage groups of objects. java.util also provides various utility classes, including those that format data for output, read formatted data, and work with date and time.
Because java.util supports such a wide range of functionality, it is quite large. It includes the following top-level classes:
AbstractCollection
EventObject
PropertyResourceBundle
AbstractList
FormattableFlags
Random
AbstractMap
Formatter
ResourceBundle
AbstractQueue
GregorianCalendar
Scanner
AbstractSequentialList
HashMap
ServiceLoader
AbstractSet
HashSet
SimpleTimeZone
ArrayDeque
Hashtable
Stack
ArrayList
IdentityHashMap
StringTokenizer
879
24

880 chapter 24 Exploring java.util
Arrays
LinkedHashMap
Timer
BitSet
LinkedHashSet
TimerTask
Calendar
LinkedList
TimeZone
Collections
ListResourceBundle
TreeMap
Currency
Locale
TreeSet
Date
Objects
UUID
Dictionary
Observable
Vector
EnumMap
PriorityQueue
WeakHashMap
EnumSet
Properties
EventListenerProxy
PropertyPermission
The top-level interfaces defined by java.util include those shown next:
Collection
Comparator
Deque
Enumeration
EventListener
Formattable
Iterator
List
ListIterator
Map
NavigableMap
NavigableSet
Observer
Queue
RandomAccess
Set
SortedMap
SortedSet
Although java.util is quite large, its size is made manageable by the fact that the classes and interfaces that comprise the Collections Framework can be examined separately, as a group. For this reason, the description of java.util is broken into two chapters. This chapter covers those parts of java.util that are not part of the Collections Framework. The Collections Framework is covered in the next chapter.
The primary focus of this chapter is on the next classes:
• Locale
• Date, Calendar, and GregorianCalendar
• Formatter and Scanner
The Locale class encapsulates information related to a geographic, political, or cul- tural region. It aids in internationalization. Date, Calendar, and GregorianCalendar manage date and time. The Formatter class formats data, and the Scanner class reads formatted data. Also covered are
• Random
• Observer and Observable
• Timer and TimerTask
Random is used to produce a sequence of pseudorandom numbers. Observer and Observable support the Observer pattern described in Chapter 16. Timer and TimerTask let you execute a thread at some future time. The remaining classes and interfaces that are not part of the Collections Framework are summarized at the end of this chapter.

thE Locale CLass
The Locale class encapsulates information related to geopolitical or cultural conven- tions. It is one of several classes that help you write programs that can be internation- alized. Internationalization is important to many commercial programs because they often have aspects that are locale-dependent. One locale-dependency is, of course, the language used for messages. However, other aspects of a program also depend on the locale. For example, the formats used to display dates, times, and numbers sometimes differ between countries or languages. The Locale class helps manage the differences between locales. Although internationalization is a very large topic that is beyond the scope of this book, the Locale class provides a starting point.
The Locale class implements the Serializable and Cloneable interfaces. Here are two of the constructors for Locale:
Locale(String language)
Locale(String language, String country)
These constructors build a Locale object to represent a specific language. The lan- guage parameter receives a language code, which must comply with ISO 639 (Codes for the Representation of Names of Languages). Examples are en, de, and fr, which correspond to English, German, and French, respectively. The country parameter specifies a country code, which can be one of the codes defined by ISO 3166 (Codes for the Representation of Names of Countries and Their Subdivisions). Examples are US, DE, and FR, for the United States, Germany, and France, respectively.
Note: ISO stands for International Organization for Standardization.
For example, the following constructs a Locale object that represents the conven-
tions for English in the United States.
Locale usLocale = new Locale(“en”, “US”);
Although the Locale constructor is not hard to use, Locale provides a convenient alternative for many common locales. It defines the following constants, which are static final Locale objects. You can use one when a locale corresponding to the name is needed.
Java programming 881
CANADA
GERMAN
KOREAN
CANADA_FRENCH
GERMANY
PRC
CHINA
ITALIAN
SIMPLIFIED_CHINESE
CHINESE
ITALY
TAIWAN
ENGLISH
JAPAN
TRADITIONAL_CHINESE
FRANCE
JAPANESE
UK
FRENCH
KOREA
US
For example, the constant Locale.CANADA represents the Locale for Canada, the constant Locale.GERMAN represents the Locale for the German language, and Locale.GERMANY represents the Locale for Germany.

882 chapter 24 Exploring java.util
You can obtain the default Locale used by the JVM by calling Locale.getDefault( )
shown here.
static Locale getDefault( )
The default locale reflects the settings used by the system in which the JVM is run- ning. It is the locale used when no other locale is explicitly specified.
Locale defines several methods that obtain information about a Locale instance. Here are three examples:
final String getDisplayCountry( ) final String getDisplayLanguage( ) final String getDisplayName( )
These return localized strings that can be used to display the name of the country, the name of the language, and the complete name of the locale.
Here is an example that demonstrates Locale. First, it obtains the current locale, which in this case is the United States. It then displays the country, language, and name. Next, the program manually creates a locale for Germany and displays the country, language, and name. Finally, it displays the country, language, and name associated with the standard locale, Locale.FRANCE.
// Demonstrate Locale. import java.util.*;
class LocaleDemo {
public static void main(String[] args) {
// get the default locale.
Locale defLocale = Locale.getDefault();
Obtain the default locale.
// display name, country, and language
System.out.println(“Default locale: “);
System.out.println(“Name: ” + defLocale.getDisplayName()); System.out.println(“Country: ” + defLocale.getDisplayCountry()); System.out.println(“Language: ” + defLocale.getDisplayLanguage());
System.out.println();
// manually, create a locale for Germany
Locale germanLocale = new Locale(“de”, “DE”); Create a locale for Germany. System.out.println(“German locale: “);
System.out.println(“Name: ” + germanLocale.getDisplayName()); System.out.println(“Country: ” +
germanLocale.getDisplayCountry()); System.out.println(“Language: ” +
germanLocale.getDisplayLanguage()); System.out.println();

} }
// now, use standard locale for France. System.out.println(“Locale.FRANCE: “); System.out.println(“Name: ” +
Locale.FRANCE.getDisplayName()); Use the locale for France. System.out.println(“Country: ” +
Locale.FRANCE.getDisplayCountry()); System.out.println(“Language: ” +
Locale.FRANCE.getDisplayLanguage());
Sample output is shown here:
Default locale:
Name: English (United States) Country: United States Language: English
German locale:
Name: German (Germany) Country: Germany Language: German
Locale.FRANCE:
Name: French (France) Country: France Language: French
Several classes in the Java API library operate in a locale-sensitive manner. These include Calendar and GregorianCalendar described in the next section, and Formatter, described a bit later.
Java programming 883
ask the Expert
Q I was looking through Java’s online documentation for Locale and noticed that it mentions BCP 47 and UTS 35. What are these?
AJDK 7 added significant upgrades to the Locale class. Among them are support for Internet Engineering Task Force (IETF) BCP 47, which defines tags for identifying languages, and Unicode Technical Standard (UTS) 35, which defines the Locale Data Markup Language (LDML). As a consequence, several new methods were added to Locale. Also added was the Locale.Builder class, which constructs Locale instances. It ensures that a locale specification is well-formed as defined by BCP 47. (The Locale constructors do not provide such a check.)

884 chapter 24 Exploring java.util
progress Check
1. The Locale constant that represents the United States is Locale.____.
2. To obtain the default locale used by the JVM on a system, use the Locale static
method ____________.
Working With DatE anD timE
It is not uncommon for a program to need to use the date and time. Here are some examples. An order entry application might want to provide a time stamp that indi- cates when an order was placed. An inventory program might include a field that indicates when a new shipment of items is expected. You might want to display the current date and time as a user amenity. Whatever the reason, Java provides signifi- cant support for date and time through several classes. The ones discussed here are Date, Calendar, and GregorianCalendar.
Date
The Date class encapsulates date and time, and it was part of the original 1.0 release of Java. However, Date is less widely used than you might at first guess. The rea- son is that when Java 1.1 was released, many of the functions carried out by the original Date class were integrated into Calendar and DateFormat (which is part of java.text). As a result, many of the original 1.0 Date methods were deprecated. In the language of Java, deprecated means still supported, but obsolete. Since the deprecated 1.0 methods should not be used for new code, they are not described here.
Date supports the following nondeprecated constructors: Date( )
Date(long millisec)
The first constructor initializes the object with the current date and time provided by the machine. The second constructor accepts one argument that equals the number of milliseconds that have elapsed since midnight, January 1, 1970. Date implements the Comparable, Serializable, and Cloneable interfaces.
Date supports a few nondeprecated methods. For example, you can obtain the date and time in terms of milliseconds from January 1, 1970 by calling the getTime( ) method. You can set the date and time by calling setTime( ) and passing in the number of milliseconds since January 1, 1970. You can compare Dates by use of equals( ), compareTo( ), after( ), and before( ). The toString( ) method has been overridden to display a simple form of the date and time.
As explained, many of the methods defined by Date have been deprecated. These methods provided access to the individual components of the date and time, such as the hour, day, or year. However, because these methods are now deprecated,
Answers:
1. US
2. getDefault( )

Java programming 885 they should not be used. Instead, to obtain this type of information, you will use the
Calendar class, described next.
Calendar and gregorianCalendar
The modern way to work with date and time in Java is to use the abstract Calendar class and its concrete subclass GregorianCalendar. Calendar provides a set of meth- ods that allow you to convert a date and time represented in terms of milliseconds to a number of useful components. For example, you can obtain the year, month, day, hour, minute, and second. GregorianCalendar is a subclass of Calendar that sup- ports the familiar Gregorian Calendar.
Calendar implements the Serializable, Comparable, and Cloneable interfaces. Calendar provides no public constructors. Calendar defines the following static int constants:
ALL_STYLES
FRIDAY
PM
AM
HOUR
SATURDAY
AM_PM
HOUR_OF_DAY
SECOND
APRIL
JANUARY
SEPTEMBER
AUGUST
JULY
SHORT
DATE
JUNE
SUNDAY
DAY_OF_MONTH
LONG
THURSDAY
DAY_OF_WEEK
MARCH
TUESDAY
DAY_OF_WEEK_IN_MONTH
MAY
UNDECIMBER
DAY_OF_YEAR
MILLISECOND
WEDNESDAY
DECEMBER
MINUTE
WEEK_OF_MONTH
DST_OFFSET
MONDAY
WEEK_OF_YEAR
ERA
MONTH
YEAR
FEBRUARY
NOVEMBER
ZONE_OFFSET
FIELD_COUNT
OCTOBER
As you will see, several of these are useful when setting or getting a date or time component, such as the hour, the minute, or the year.
Although Calendar is abstract, you can obtain a reference to a Calendar object by calling getInstance( ). It has several forms. Its simplest is shown here:
static Calendar getInstance( )
It returns a reference to a Calendar object that contains the current system date and time. The default locale and time zone are used. Other forms let you specify a locale and a time zone. A key point to understand is that a Calendar object represents one specific instance in time.
Calendar defines many methods. One of particular interest is get( ), which obtains the value of a time or date component, such as the hour, year, month, or day of week. It is shown here:
int get(int what)

886 chapter 24 Exploring java.util
It returns the value of the time or date component indicated by what. The value passed to what must be one of the integer constants, just shown. For example, to obtain the year, pass Calendar.YEAR, to obtain the minute, pass Calendar.MINUTE, and so forth.
Another method that can be quite useful is getDisplayName( ), shown next: String getDisplayName(int what, int style, Locale loc)
Here, what specifies the date or time component to obtain. It must be one of the previ- ously shown values defined by Calendar. The style must be either Calendar.SHORT or Calendar.LONG. Some names, such as the month or the day of the week, have both a long and short form. This parameter lets you choose which you obtain. The locale that determines the specific representation of the name is passed in loc. Not all date and time components have string representations. If no string representation is available, null is returned.
GregorianCalendar is an implementation of Calendar that supports the stan- dard Gregorian calendar which is in widespread use. GregorianCalendar adds two static int fields: AD and BC. These represent the two eras defined by the Gregorian calendar.
There are several constructors for GregorianCalendar. The default constructor initializes the object with the current date and time in the default locale and time zone. Other constructors let you construct a GregorianCalendar for a specific date and time. Here are three examples:
GregorianCalendar(int year, int month, int day) GregorianCalendar(int year, int month, int day, int hours,
int minutes)
GregorianCalendar(int year, int month, int day, int hours,
int minutes, int seconds)
All three versions set the day, month, and year. Here, year specifies the year. The month is specified by month, with zero indicating January. The day of the month is specified by day. The first day of the month is 1. The first constructor sets the time to midnight. The second version sets the hours and the minutes. The third version adds seconds.
To obtain the individual date and time components of a GregorianCalendar you can use the get( ) method, inherited from Calendar. Obtaining most of the date and time components is straightforward. However, when obtaining the hour, you can use either a 12-hour or a 24-hour clock format. If you specify the Calendar.HOUR constant, a 12-hour clock is used. Specifying Calendar.HOUR_OF_DAY uses a 24-hour clock. For a 12-hour clock, you can determine if it is AM or PM by getting the value Calendar.AM_PM. If the value equals Calendar.AM, then the time is AM; otherwise it is PM.
The following program demonstrates GregorianCalendar. Notice that it manual- ly formats the date and time itself. Later in this chapter, when Formatter is described, you will see an easier, better way to format date and time.

// Demonstrate GregorianCalendar import java.util.*;
class CalendarDemo {
public static void main(String[] args) {
// Create a calendar initialized with the
// current date and time.
GregorianCalendar calendar = new GregorianCalendar(); Get the current date and time.
Java programming 887
// Display current date and time information. System.out.print(“Date: “); System.out.print(calendar.getDisplayName(Calendar.DAY_OF_WEEK,
Calendar.LONG,
Locale.getDefault())); System.out.print(” ” + calendar.getDisplayName(Calendar.MONTH,
Calendar.LONG,
Locale.getDefault())); System.out.print(” ” + calendar.get(Calendar.DATE) + “, “);
System.out.println(calendar.get(Calendar.YEAR));
System.out.print(“Time: “); System.out.print(calendar.get(Calendar.HOUR) + “:”); System.out.print(calendar.get(Calendar.MINUTE) + “:”); System.out.print(calendar.get(Calendar.SECOND));
Display the date.
Display the time.
// determine AM or PM
int am = calendar.get(Calendar.AM_PM); if(am == Calendar.AM)
System.out.println(” AM”); else
System.out.println(” PM”);
// Set the time information and display it. calendar.set(Calendar.HOUR, 10); calendar.set(Calendar.AM_PM, Calendar.PM); calendar.set(Calendar.MINUTE, 29); calendar.set(Calendar.SECOND, 22); System.out.print(“Updated time: “); System.out.print(calendar.get(Calendar.HOUR) + “:”); System.out.print(calendar.get(Calendar.MINUTE) + “:”); System.out.print(calendar.get(Calendar.SECOND));
am = calendar.get(Calendar.AM_PM); if(am == Calendar.AM)
System.out.println(” AM”); else
System.out.println(” PM”); }
}
Display either AM or PM.
Set the time.

888 chapter 24 Exploring java.util Sample output is shown here:
Date: Monday July 11, 2011 Time: 10:53:53 AM
Updated time: 10:29:22 PM
In addition to the methods GregorianCalendar inherits from Calendar, it also provides some of its own. Perhaps the most interesting is isLeapYear( ), which tests if the year is a leap year. Its form is
boolean isLeapYear(int year)
This method returns true if year is a leap year and false otherwise. The following program shows isLeapYear( ) in action. It determines if the current year is a leap year.
// Demonstrate isLeapYear().
import java.util.*;
class LeapYearDemo {
public static void main(String[] args) {
// get the current system date and time GregorianCalendar calendar = new GregorianCalendar();
// get the current year
int year = calendar.get(Calendar.YEAR);
System.out.print(year);
// test if the current year is a leap year if(calendar.isLeapYear(year)) {
System.out.println(” is a leap year”); }
else {
System.out.println(” is not a leap year”);
} }
}
Sample output is shown here:
2011 is not a leap year
Check for leap year.
Calendar (and, therefore, GregorianCalendar) support many other capabilities. Before leaving the topic of date and time, it is useful to mention a few. You can set a time or date component by use of this version of set( ).
void set(int what, int newValue)
The constant indicating the time or date component to set is passed in what. The new value is passed in newValue. For example, given a Calendar object called myCalendar, the following sets the year to 2025:

myCalendar.set(Calendar.YEAR, 2025);
To determine if the date and time in one Calendar object are before those in another, use before( ). To determine if the date and time in one Calendar object are after those in another, use after( ). They are shown here:
boolean after(Object calendarObj) boolean before(Object calendarObj)
For example, given
GregorianCalendar myCalendarA = new GregorianCalendar(2025, 0, 1); GregorianCalendar myCalendarB = new GregorianCalendar(2025, 0, 2);
then
myCalendarA.before(myCalendarB)
is true, but
myCalendarA.after(myCalendarB)
is false.
You can add a value to a time or date component by use of add( ). It is shown here:
void add(int what, int value)
It adds value to the time or date component specified by what. To subtract, add a negative value. The add( ) method is very useful in cases in which adding a value might cause another time or date component to “roll over.” For example, the following creates a Calendar object with the date January 29, 2025.
GregorianCalendar myCalendar = new GregorianCalendar(2025, 0, 29);
After this call to add( ): myCalendar.add(Calendar.DAY_OF_MONTH, 3);
myCalendar will contain the date February 1, 2025. This is because adding three days to January 29 causes the month to roll over to February.
Java programming 889
ask the Expert
Q In the preceding discussion, you mentioned time zone. Are there classes that encapsulate time zones?
AYes. Two other time-related classes provided by java.util are TimeZone and SimpleTimeZone. These classes enable you to work with time zone offsets from Coordinated Universal Time (UTC), also commonly referred to as Greenwich Mean Time (GMT). TimeZone is an abstract class that defines the basic functionality. SimpleTimeZone is a concrete subclass of TimeZone.

890 chapter 24 Exploring java.util
progress Check
1. To instantiate a Calendar object, you use _______________________.
2. To instantiate a GregorianCalendar object, you use __________________. 3. A Calendar object is immutable. True or False?
Formatting output With Formatter
As several of the examples in previous chapters have shown, the default format used by Java to display numeric values is not always ideal. For example, this statement:
System.out.println(10.0/3.0);
displays the following output:
3.3333333333333335
Although there may be cases in which you want that level of precision, often you don’t. Perhaps you simply want to display two decimal places, for example. More generally, often you want to precisely specify the format in which data is displayed rather than using the default provided by Java.
One way to obtain formatted output is through the Formatter class. It lets you display numbers, strings, dates, and times in virtually any format you like. Although Formatter supports a rich set of features, it is actually quite easy to use. Although Formatter is important in its own right, mastering it offers a second advantage. The same formatting mechanism used by Formatter is also used by certain other parts of the Java library, including the printf( ) method provided by PrintStream, which is also described in this chapter.
the Formatter Constructors
Before you can use Formatter to format output, you must create an instance of Formatter. In general, Formatter works by converting the binary form of data used by a program into formatted, human-readable text. It then outputs that formatted text to a destination, which can be a buffer in memory, a file, or some other type of stream. When using a buffer for output, it is possible to let Formatter supply this buffer automatically.
The Formatter class defines many constructors. Here is the form that we will be using:
Formatter( ) Answers:
1. the static getInstance( ) method of the Calendar class
2. one of the constructors of the GregorianCalendar class
3. False. The set( ) and add( ) methods can be used to change the instant in time
that it represents.

Java programming 891
This is the default constructor. It uses a StringBuilder to hold the formatted output and uses the default locale. Recall that StringBuilder is similar to String, except that its contents can be modified.
Other constructors give you control over the destination for formatted output and over which locale is used. For example:
Formatter(Locale loc)
This constructor uses a StringBuilder for output, but lets you specify the locale. As explained earlier in this chapter, the locale determines the precise form of several items, such as the decimal point or currency symbol. The next constructor directs formatted output to a file:
Formatter(String filename)
throws FileNotFoundException
Here, filename specifies the name of a file that will receive the formatted output. You can direct output to any output stream by using this constructor:
Formatter(OutputStream outStream)
The stream that will receive the formatted text is specified by outStream.
The next two constructors let you send output to any object that implements the Appendable interface. The Appendable interface is packaged in java.lang and is implemented by several classes, including StringBuilder, java.io.PrintStream, and
java.io.Writer. Formatter(Appendable buffer)
Formatter(Appendable buffer, Locale loc)
Here, buffer specifies the target for output, and loc specifies the locale. In addition to the constructors just shown, Formatter supplies many more. You will want to explore them on your own.
Formatter implements the Closeable and Flushable interfaces defined in java.io and the Autocloseable interface defined in java.lang. The methods defined by Formatter are summarized in Table 24-1. The sections that follow describe the use of Formatter.
Formatting Basics
After you have created a Formatter, you can use it to create a formatted output. To do so, use the format( ) method. The version we will use is shown here:
Formatter format(String fmtString, Object … args)
The fmtSring consists of two types of items. The first type is composed of characters that are simply copied to the output buffer. The second type contains format specifiers that define the way the subsequent arguments are displayed.

892 chapter 24 Exploring java.util
Table 24-1: The Methods Defined by Formatter
Method
Description
void close( )
Closes the invoking Formatter. This causes any resources used by the object to be released. After a Formatter has been closed, it cannot be reused.
void flush( )
This applies mostly to a Formatter tied to a stream. It causes any buffered output to be written to the stream.
Formatter format(String fmtString, Object … args)
Formats the arguments passed via args according to the format specifiers contained in fmtString. Returns the invoking object.
Formatter format(Locale loc, String fmtString,
Object … args)
Formats the arguments passed via args according to the format specifiers contained in fmtString. The locale specified by loc is used for this format. Returns the invoking object.
IOException ioException( )
If the underlying object that is the destination for output throws an IOException, then this exception is returned. Otherwise, null is returned.
Locale locale( )
Returns the invoking object’s locale.
Appendable out( )
Returns a reference to the underlying object that is the destination for output.
String toString( )
For buffers based on StringBuilder, this method returns a String containing the formatted output. For buffers of other types, the formatted output may or may not be returned.
In its simplest form, a format specifier begins with a percent sign followed by a format conversion specifier, or format specifier for short. All format specifiers consist of a single character. For example, the format specifier for floating-point data is %f. In general, there must be the same number of arguments as there are format specifiers, and the format specifiers and the arguments are matched in order from left to right. For example, consider this fragment:
Formatter fmt = new Formatter();
fmt.format(“Formatting %s is easy %d %f”, “with Java”, 10, 98.6);
This sequence creates a Formatter that contains the following string: Formatting with Java is easy 10 98.600000
In this example, the format specifiers, %s, %d, and %f, are replaced with the argu- ments that follow the format string. Thus, %s is replaced by “with Java”, %d is replaced by 10, and %f is replaced by 98.6. All other characters are simply used as-is. As you might guess, the format specifier %s specifies a string, and %d specifies an integer value. As mentioned earlier, the %f specifies a floating-point value.
The format( ) method accepts a wide variety of format specifiers, which are shown in Table 24-2. Notice that many specifiers have both upper- and lowercase forms. When an uppercase specifier is used, then letters are shown in uppercase.

Java programming 893
Table 24-2: The Format Specifiers
Format Specifier
Format
%a %A
Floating-point hexadecimal
%b %B
Boolean
%c %C
Character
%d
Decimal integer
%h %H
Hash code of the argument
%e %E
Scientific notation
%f
Decimal floating-point
%g %G
Uses decimal or scientific notation
%o
Octal integer
%n
Inserts a newline character
%s %S
String
%t %T
Date and time
%x %X
Integer hexadecimal
%%
Inserts a % sign
Otherwise, the upper- and lowercase specifiers produce the same format. It is important to understand that Java type-checks each format specifier against its cor- responding argument. If the argument doesn’t match, an IllegalFormatException is thrown.
For Formatters that use a StringBuilder as a buffer, once you have generated the formatted output, you can obtain it by calling toString( ). For example, continu- ing with the preceding example, the following statement obtains the formatted string contained in fmt:
String str = fmt.toString();
Of course, if you simply want to display the formatted string, there is no reason to first assign it to a String object. When a Formatter object is passed to println( ), for example, its toString( ) method is automatically called.
When you are done with a Formatter, you should close it by calling close( ). This is especially important for Formatters linked to files. Closing the Formatter also closes the file, thus releasing the resources used by that file.

894 chapter 24 Exploring java.util
Here is a short program that puts together all of the pieces, showing how to create and display a formatted string:
// A very simple example that uses Formatter. import java.util.*;
class FormatDemo {
public static void main(String[] args) {
Create formatted output. fmt.format(“Formatting %s is easy %d %f”, “with Java”, 10, 98.6);
Formatter fmt = new Formatter();
System.out.println(fmt);
fmt.close(); }
}
Display the formatted output.
One other point: You can obtain a reference to the object to which formatted out- put is written by calling out( ). It returns a reference to an Appendable object. As explained, by default, this is a StringBuilder. However, you can use any Appendable as an output target. Understand, however, that some targets will not preserve the out- put in a buffer. For example, if you use a file, then the output is written to that file. You cannot obtain it by using toString( ), for example.
Now that you know the general mechanism used to format output, the remainder of this section discusses several of the formats and shows a number of examples. It also describes various options, such as justification, minimum field width, and precision.
Formatting strings and Characters
To format an individual character, use %c. This causes the matching character argument to be output, unmodified. To format a string, use %s.
Formatting numbers
To format an integer in decimal format, use %d. To format a floating-point value in decimal format, use %f. To format a floating-point value in scientific notation, use %e. The %g format specifier causes Formatter to use either decimal or scientific notation based on whether the number of significant digits exceeds the precision, which is 6 by
default. The following program demonstrates the effect of the %g format specifier: // Demonstrate the %g format specifier.
import java.util.*;
class GFormatDemo {
public static void main(String[] args) {
Formatter fmt = new Formatter();
for(double i=1000; i < 1.0e+10; i *= 100) { fmt.format("%g ", i); System.out.println(fmt); } fmt.close(); } } It produces the following output: 1000.00 1000.00 100000 1000.00 100000 1.00000e+07 1000.00 100000 1.00000e+07 1.00000e+09 You can display integers in octal or hexadecimal format by using %o and %x, respectively. For example, this fragment: fmt.format("Hex: %x, Octal: %o", 196, 196); produces this output: Hex: c4, Octal: 304 Formatting Date and time One of the more powerful conversion specifiers is %t. It lets you format date and time information. The %t specifier works a bit differently than the others because it requires the use of a suffix to describe the component and precise format of the time or date desired. The suffixes are shown in Table 24-3. For example, to dis- play minutes, you would use %tM, where M indicates minutes in a two-character field. The argument corresponding to the %t specifier must be of type Calendar, GregorianCalendar, Date, Long, or long. Here is a program that demonstrates several of the date and time formats. Notice that it uses the GregorianCalendar class to obtain the current date and time. Also notice how much easier it is to format date and time using a Formatter than it was to format it manually as the example for GregorianCalendar, shown earlier, did. // Formatting date and time. import java.util.*; class TimeDateFormat { public static void main(String[] args) { Formatter fmt = new Formatter(); GregorianCalendar calendar = new GregorianCalendar(); // standard 12-hour time format fmt.format("%tr\n", calendar); // complete date and time information fmt.format("%tc\n", calendar); // just hour and minute fmt.format("%tl:%tM\n", calendar, calendar); // month by name and number fmt.format("%tB %tb %tm", calendar, calendar, calendar); Java programming 895 896 chapter 24 Exploring java.util Table 24-3: The Date and Time Format Suffixes Suffix Replaced by a Abbreviated weekday name A Full weekday name b Abbreviated month name B Full month name c Date and time string formatted as day month date hh::mm:ss timezone year C First two digits of year d Day of month as a decimal (01–31) D Month/day/year e Day of month as a decimal (1–31) F Year-month-day h Abbreviated month name H Hour (00 to 23) I Hour (01 to 12) j Day of year as a decimal (001 to 366) k Hour (0 to 23) l Hour (1 to 12) L Millisecond m Month as decimal (01 to 13) M Minute as decimal (00 to 59) N Nanosecond p Locale’s equivalent of AM or PM in lowercase Q Milliseconds from 1/1/1970 r hh:mm:ss (12-hour format) R hh:mm (24-hour format) S Seconds s Seconds from 1/1/1970 UTC T hh:mm:ss (24-hour format) y Year in decimal without century (00 to 99) Y Year in decimal including century (0001 to 9999) z Offset from UTC Z Time zone name // display the formats System.out.println(fmt); fmt.close(); } } Sample output is shown here: 11:11:27 AM Mon Jul 11 11:11:27 CDT 2011 11:11 July Jul 07 Before moving on, you might want to experiment with various time and date formats. For example, try displaying the long forms of the month and day, or showing milliseconds. the %n and %% specifiers The %n and %% format specifiers differ from the others in that they do not match an argument. Instead, they are simply escape sequences that insert a character into the output sequence. The %n inserts a newline. The %% inserts a percent sign. Of course, you can also use the standard escape sequence \n to embed a newline character, as the previous example did. specifying a minimum Field Width An integer placed between the % sign and the format specifier acts as a minimum field-width specifier. This pads the output to ensure that it reaches a certain minimum length. For example, %5f formats a floating-point value in a field that is at least five characters wide. If a string or number is longer than the minimum, it will still be printed in full. The default padding is done with spaces. The following program demonstrates the minimum field-width specifier by applying it to the %s and %f conversions: // Demonstrate a field-width specifier. import java.util.*; class FieldWidthDemo { public static void main(String[] args) { Formatter fmt = new Formatter(); fmt.format("|%f|\n|%12f|\n", 10.12345, 10.12345); fmt.format("|%s|\n|%10s|", "Java", "Java"); System.out.println(fmt); fmt.close(); } Java programming 897 } 898 chapter 24 Exploring java.util This program produces the following output: |10.123450| | 10.123450| |Java| | Java| The first line displays the number 10.12345 in its default width. The second line displays that value in a width of 12 characters. The third and fourth lines display the string "Java" in its default width and then in a 10-character-wide field. The minimum field-width modifier is often used to produce tables in which the columns line up. For example, the next program produces a table of squares and cubes for the numbers between 1 and 10: // Create a table of squares and cubes. import java.util.*; class TableFormatDemo { public static void main(String[] args) { Formatter fmt = new Formatter(); for(int i=1; i <= 10; i++) { fmt.format("%4d %4d %4d\n", i, i*i, i*i*i); } System.out.println(fmt); fmt.close(); } } Its output is shown here: 111 248 3 9 27 4 16 64 5 25 125 6 36 216 7 49 343 8 64 512 9 81 729 10 100 1000 specifying precision A precision specifier can be used with several format specifiers. It follows the mini- mum field-width specifier (if there is one) and consists of a period followed by an integer. Its exact meaning depends on the format specifier to which it is applied. Let’s look at some examples. When you apply the precision specifier to the %f or %e specifiers, it determines the number of decimal places displayed. For example, %10.4f displays a number at least ten characters wide with four decimal places. When using %g, the precision determines the number of significant digits displayed. (Rounding may occur.) The default precision is 6. Java programming 899 Applied to strings, the precision specifier specifies the maximum field length. For example, %5.7s displays a string at least five and not exceeding seven characters long. If the string is longer than the maximum field width, the end characters will be truncated. The following program illustrates the precision specifier: // Demonstrate the precision modifier. import java.util.*; class PrecisionDemo { public static void main(String[] args) { Formatter fmt = new Formatter(); // Format 4 decimal places. fmt.format("%.4f\n", 123.1234567); // Format to 2 decimal places in a 16 character field fmt.format("%16.2e\n", 123.1234567); // Display at most 15 characters in a string. fmt.format("%.15s\n", "Formatting with Java is now easy."); System.out.println(fmt); fmt.close(); } } It produces the following output: 123.1235 1.23e+02 Formatting with The precision specifier can also be applied to the %h and %b formats. In these cases, it specifies a maximum field width. using the Format Flags Formatter recognizes a set of format flags that lets you control various aspects of a conversion. All format flags are single characters, and a format flag follows the % in a format specification. The flags are shown here: Flag Effect – Left justification # Alternate conversion format 0 Output is padded with zeros rather than spaces space Positive numeric output is preceded by a space + Positive numeric output is preceded by a + sign , Numeric values include grouping separators ( Negative numeric values are enclosed within parentheses 900 chapter 24 Exploring java.util Not all flags apply in all cases. For example, the + flag cannot be used with the %s specifier. The following sections show several examples of these flags in use. Justifying Output By default, all output is right-justified. That is, if the field width is larger than the data printed, the data will be placed on the right edge of the field. You can force output to be left-justified by placing a minus sign directly after the %. For instance, %–10.2f left-justifies a floating-point number with two decimal places in a 10-character field. For example, consider this program: // Demonstrate left justification. import java.util.*; class LeftJustify { public static void main(String[] args) { Formatter fmt = new Formatter(); // Right justify by default fmt.format("|%10.2f|\n", 123.123); // Now, left justify. fmt.format("|%-10.2f|", 123.123); System.out.println(fmt); fmt.close(); } } It produces the following output: 123.12 | | |123.12 | As you can see, the first line uses the default, right-justification. The second line is left-justified within a 10-character field. The +, Space, 0, and ( Flags To cause a + sign to be shown before positive numeric values, add the + flag. For example, fmt.format("%+.2f", 100.25); creates this output: +100.25 You can add a space instead of a + sign before positive numeric values by using the space flag. For example, fmt.format("%.2f\n", -100.25); fmt.format("% .2f", 100.25); creates the following output: -100.25 100.25 Notice that the positive value has a leading space. To show negative numeric output inside parentheses, rather than with a leading –, use the ( flag. For example, fmt.format("%(.2f", -100.25); creates this string: (100.25) The 0 flag causes output to be padded with zeros rather than spaces. It can be applied to numeric values. For example, fmt.format("%07.2f\n", 1.23); produces the following output: 0001.23 In general, the space, +, 0, and ( format flags can be used with the %d, %f, %e, and %g specifiers. The 0 flag can also be used with the %x and %o specifiers. Note: The space, +, and ( flags can also be used with %x and %o when formatting a BigInteger, which is a special integer class that supports very large integers. It is in java.math. The Comma Flag When displaying large decimal numbers, it can be useful to add grouping separators, which in English are commas. For example, the value 1234567 is more easily read when formatted as 1,234,567. To add grouping specifiers, use the comma (,) flag. For example, fmt.format("%,.2f", 4356783497.34); creates this string: 4,356,783,497.34 The # Flag The # specifies an alternate format. Here are some examples. For %f, the # ensures that there will be a decimal point even if there are no decimal digits. If you use the %x format specifier with a #, the hexadecimal number will be printed with a 0x prefix. Using the %o specifier with # causes the number to be printed with a lead- ing zero. Java programming 901 902 chapter 24 Exploring java.util the uppercase option As mentioned earlier, several of the format specifiers have uppercase versions that cause the formatted output to use upper case where appropriate. Here are some exam- ples. %C upper cases the corresponding character. %S upper cases the corresponding string. %E and %G upper case the e symbol. %X causes the hexadecimal digits a through f to be displayed in upper case as A through F. Also, the optional prefix 0x is displayed as 0X. %T causes all alphabetical date and time items to be uppercased. The following sequence shows the effects of %X and %E: fmt.format("%#x\n", 250); fmt.format("%#X\n", 250); fmt.format("%e\n", 123.1234); fmt.format("%E", 123.1234); The output is shown here: 0xfa 0XFA 1.231234e+02 1.231234E+02 using an argument index Formatter includes a very useful feature that lets you specify the argument to which a format specifier applies. As you have seen, format specifiers and arguments are nor- mally matched in order, from left to right. That is, the first format specifier matches the first argument, the second format specifier matches the second argument, and so on. However, by using an argument index, you can explicitly control which argu- ment a format specifier matches. This enables arguments and format specifiers to be matched out of strict left-to-right order. An argument index immediately follows the % in a format specifier. It has the following format: n$ where n is the index of the desired argument, beginning with 1. For example, consider this example: fmt.format("%3$d %1$d %2$d", 10, 20, 30); It produces this string: 30 10 20 In this example, the first format specifier matches 30, the second matches 10, and the third matches 20. Thus, the arguments are used in an order other than strictly left to right. One advantage of argument indices is that they enable you to reuse an argument without having to specify it twice. For example, consider this line: fmt.format("%d in hex is %1$x", 255); It produces the following string: 255 in hex is ff As you can see, the argument 255 is used by both format specifiers. There is a convenient shorthand called a relative index that enables you to reuse the argument matched by the preceding format specifier. Simply specify < for the argument index. For example, the following call to format( ) produces the same results as the previous example: fmt.format("%d in hex is % col1) col1 = city.name.length();
if(Integer.toString(city.pop).length() > col2) col2 = Integer.toString(city.pop).length();
}
// construct the format string
String frmt = “| %-” + col1 + “s | %” + col2 + “d |\n”; for(City city : cities) {
formatter.format(frmt, city.name, city.pop); }
result = formatter.toString(); formatter.close();
return result;
} }

Java programming 907
Notice that formatCities( ) takes an array of City objects and returns a string containing the formatted table. To do so, the method first needs to find the width for each column. It does this by iterating through the names and populations, keeping track of the width of the largest values. Then it uses a Formatter to format each row of the table.
Pay particular attention to the frmt string that is used to format each
row. It is a little complicated because it needs to include the column widths, which are specified by col1 and col2. For the sake of discussion, let’s assume the first column has a width of 15 and the second column a width of 10. With these values, the string assigned to frmt becomes:
“| %-15s | %10d |\n”
The first column is left-justified, needs 15 spaces, and specifies a string. The second column is right-justified, needs 10 spaces, and specifies an integer. Notice the vertical bars at the beginning, end, and between the two columns, separated by spaces from the data in the columns. They delineate the columns in the table.
4. Run the main( ) method in the CitiesDemo class. You will see the following output:
| Dallas | 1197816 | | Portland | 583776 | | Frostbite Falls | 6424 | | New York | 8175133 |
5. Although the table is now properly formatted, two improvements can be made. The first is to add commas to the population numbers. The second is to complete the box around the table. These are left to you as exercises.
Formatting anD thE printf( ) mEthoD
Although there is nothing technically wrong with using Formatter directly (as the pre- ceding examples have done) when creating output that will be written to System.out, there is a more convenient alternative: the printf( ) method. This method is defined by both PrintStream and PrintWriter. It uses the same format specifiers and mech- anism as Formatter, just described. Here are its two forms for PrintStream:
PrintStream printf(String fmtString, Object … args)
PrintStream printf(Locale locale, String fmtString, Object … args)
The first version writes args to standard output in the format specified by fmtString using the default locale. The second form uses the locale specified by locale. Both return a reference to the invoking PrintStream. The PrintWriter versions of printf( ) are similar except that a PrintWriter is returned.
Because System.out is a PrintStream, you can use printf( ) to output formatted values to the console. This makes is easier to display formatted output because you

908 chapter 24 Exploring java.util
don’t need to construct a Formatter, closing it when you are done. You can simply call printf( ). For example, the following program uses printf( ) to output numeric values in various formats.
// Demonstrate printf().
class PrintfDemo {
public static void main(String[] args) {
System.out.println(“Here are some numeric values ” + “in different formats.\n”);
System.out.printf(“Various integer formats: “); System.out.printf(“%d %(d %+d %05d\n”, 3, -3, 3, 3);
System.out.println();
System.out.printf(“Default floating-point format: %f\n”,
1234567.123); System.out.printf(“Floating-point with commas: %,f\n”,
1234567.123);
System.out.printf(“Negative floating-point default: %,f\n”,
-1234567.123);
System.out.printf(“Negative floating-point option: %,(f\n”,
-1234567.123); System.out.println();
System.out.printf(“Line up positive and negative values:\n”); System.out.printf(“% ,.2f\n% ,.2f\n”,
1234567.123, -1234567.123);
} }
The output is shown here:
Here are some numeric values in different formats. Various integer formats: 3 (3) +3 00003
Default floating-point format: 1234567.123000 Floating-point with commas: 1,234,567.123000 Negative floating-point default: -1,234,567.123000 Negative floating-point option: (1,234,567.123000)
Line up positive and negative values: 1,234,567.12
-1,234,567.12
Because of the convenience that printf( ) offers, you will normally want to use it when outputting to System.out.
Note: PrintStream and PrintWriter also define a method called format( ), which works just like printf( ). Either may be used to output formatted data.

thE scanner CLass
Scanner is the complement of Formatter. It reads formatted input and converts it into its binary form. Scanner can be used to read input from standard input (normally the keyboard), a file, or a string, among others. For example, you can use Scanner to read a number from the keyboard and assign its value to a variable. As you will see, given its power, Scanner is surprisingly easy to use. The Scanner class was briefly introduced in Chapter 11. Here we will examine it in greater detail.
the scanner Constructors
Scanner defines several constructors that let you create instances in a variety of ways. For example, you can construct a Scanner that reads from a String, an InputStream, a File, or any object that implements the Readable interface (packaged in java.lang), among others. Here are the constructors used in this chapter:
Scanner(InputStream from) Scanner(String from) Scanner(Readable from)
The first constructor creates a Scanner that uses the stream specified by from as the source for input. The second reads input from the specified String. The third obtains its input from a source that implements Readable.
Here are some examples. The following sequence creates a Scanner that reads the file Test.txt:
FileReader fin = new FileReader(“Test.txt”); Scanner src = new Scanner(fin);
This works because FileReader implements the Readable interface. Thus, the call to the constructor resolves to Scanner(Readable).
This next line creates a Scanner that reads from standard input, which is the key- board by default:
Scanner conin = new Scanner(System.in);
This works because System.in is an object of type InputStream. Thus, the call to the constructor maps to Scanner(InputStream).
The next sequence creates a Scanner that reads from a string. String instr = “10 99.88 scanning is easy.”;
Scanner conin = new Scanner(instr);
scanning Basics
Once you have created a Scanner, it is a simple matter to use it to read formatted input. In general, a Scanner reads tokens from the underlying source that you speci- fied when the Scanner was created. As it relates to Scanner, a token is a portion of input that is delineated by a set of delimiters, which is whitespace by default. A token is read by matching it with a particular regular expression, which defines the
Java programming 909

910 chapter 24 Exploring java.util
format of the data. (An introduction to regular expressions is found in Appendix B.) Although Scanner allows you to define the specific type of expression that its next input operation will match, it includes many predefined patterns, several of which match the primitive types, such as int and double, and arbitrary strings. Thus, often you won’t need to specify a pattern to match. Since regular expressions are introduced in Appendix B, we will only be using predefined patterns in this chapter.
In general, to use Scanner, follow this procedure:
1. Determine if a specific type of input is available by calling one of Scanner’s hasNextX methods, where X is the type of data desired.
2. If input is available, read it by calling one of Scanner’s nextX methods.
3. Repeat the process until input is exhausted.
4. Close the Scanner when you are done with it.
As the preceding indicates, Scanner defines two sets of methods that enable you to read input. The first are the hasNextX methods, a sampling of which are shown in Table 24-4. These methods determine if the specified type of input is available. For example, calling hasNextInt( ) returns true only if the next token to be read is an integer. Notice that hasNext( ) returns true if any type of token is available. If the desired data is available, then you can read it by calling one of Scanner’s nextX methods. A sampling is shown in Table 24-5. For example, to read the next integer, call nextInt( ). Notice that next( ) can read any type of token, returning it as a String.
The following sequence shows how to read a list of integers from the keyboard.
Scanner conin = new Scanner(System.in); int i;
// Read a list of integers. while(conin.hasNextInt()) {
i = conin.nextInt();
// … }
The while loop stops as soon as the next token is not an integer. Thus, the loop stops reading integers as soon as a non-integer is encountered in the input stream (or there are no more tokens available).
If a next method cannot find the type of data it is looking for, it throws an InputMismatchException. A NoSuchElementException is thrown if no more input is available. For this reason, it is best to first confirm that the desired type of data is available by calling a hasNext method before calling its corresponding next method.
As mentioned, when you are done with a Scanner, it should be closed. However, when a Scanner is linked to System.in, closing the Scanner will also close System.in! This means that you can’t use System.in again. As a result, it is not uncommon to see a Scanner linked to System.in not closed, or not closed until the end of the program. For the sake of illustration, the following examples explicitly close the Scanner at the end of the program.

Java programming 911
Table 24-4: a Sampling of the Scanner hasNext Methods
Method
Description
boolean hasNext( )
Returns true if another token of any type is available to be read. Returns false otherwise.
boolean hasNextBoolean( )
Returns true if a boolean value is available to be read. Returns false otherwise.
boolean hasNextByte( )
Returns true if a byte value is available to be read. Returns false otherwise.
boolean hasNextDouble( )
Returns true if a double value is available to be read. Returns false otherwise.
boolean hasNextFloat( )
Returns true if a float value is available to be read. Returns false otherwise.
boolean hasNextInt( )
Returns true if an int value is available to be read. Returns false otherwise.
boolean hasNextLong( )
Returns true if a long value is available to be read. Returns false otherwise.
boolean hasNextShort( )
Returns true if a short value is available to be read. Returns false otherwise.
Table 24-5: a Sampling of the Scanner next Methods
Method
Description
String next( )
Returns the next token of any type from the input source.
boolean nextBoolean( )
Returns the next token as a boolean value.
byte nextByte( )
Returns the next token as a byte value. The default radix is used.
double nextDouble( )
Returns the next token as a double value.
float nextFloat( )
Returns the next token as a float value.
int nextInt( )
Returns the next token as an int value. The default radix is used.
long nextLong( )
Returns the next token as a long value. The default radix is used.
short nextShort( )
Returns the next token as a short value. The default radix is used.
some scanner Examples
Scanner makes what could be a tedious task into an easy one. To understand why, let’s look at some examples. The following program averages a list of numbers entered at the keyboard. It first creates a Scanner linked to System.in. It then reads numbers, summing them in the process, until the user enters the string “done”. It then stops reading input and displays the average of the numbers.

912 chapter 24 Exploring java.util
// Use Scanner to compute an average of the values.
import java.util.*;
class AvgNums {
public static void main(String[] args) {
Scanner conin = new Scanner(System.in);
int count = 0; double sum = 0.0;
Create a Scanner that reads from System.in.
System.out.println(“Enter numbers to average.”);
// Read and sum numbers.
while(conin.hasNext()) { Loop while there are tokens to read.
if(conin.hasNextDouble()) { sum += conin.nextDouble(); count++;
}
else {
Check if the next token can be read as a double. If so, read it.
String str = conin.next();
if(str.equals(“done”)) break; Otherwise, check for the string “done”. else {
System.out.println(“Data format error.”);
return; }
} }
System.out.println(“Average is ” + sum / count);
conin.close(); }
}
Enter numbers to average. 1.2
2
3.4
4
done
Average is 2.65
Let’s look closely at how this program works. First, notice that it uses hasNext( ) to determine if there are any more tokens of any type in the input stream. If there are, the program then checks if the next token represents a double. If it does, that number is read. If the next token is not a double, then the next token is read by calling next( ), which can read any type of token. When this occurs, the program checks if the token is the string “done”. If it is, the program terminates normally. Otherwise, it displays an error.
Notice that the numbers are read by calling nextDouble( ). This method reads any number that can be converted into a double value, including an integer value,
Here is a sample run:

Java programming 913
such as 2, and a floating-point value like 3.4. Thus, a number read by nextDouble( ) need not specify a decimal point. This same general principle applies to all next methods. They will match and read any data format that can represent the type of value being requested.
One thing that is especially nice about Scanner is that the same technique used to read from one source can be used to read from another. For example, here is the preceding program reworked to average a list of numbers contained in a text file:
// Use Scanner to compute an average of the values in a file. import java.util.*;
import java.io.*;
class AvgFile {
public static void main(String[] args)
throws IOException {
int count = 0; double sum = 0.0;
// Write output to a file.
FileWriter fout = new FileWriter(“test.txt”); fout.write(“2 3.4 5 6 7.4 9.1 10.5 done”); fout.close();
FileReader fin = new FileReader(“Test.txt”);
Scanner src = new Scanner(fin);
// Read and sum numbers. while(src.hasNext()) {
if(src.hasNextDouble()) { sum += src.nextDouble(); count++;
}
else {
String str = src.next(); if(str.equals(“done”)) break; else {
Create a Scanner that reads from a file.
}
System.out.println(“File format error.”);
return; }
} }
src.close();
System.out.println(“Average is ” + sum / count); }

914 chapter 24 Exploring java.util
Here is the output:
Average is 6.2
The preceding program illustrates another important feature of Scanner. Notice that the file reader referred to by fin is not closed directly. Rather, it is closed automatically when src calls close( ). When you close a Scanner, the Readable associated with it is also closed (if that Readable implements the Closeable interface). Therefore, in this case, the file referred to by fin is automati- cally closed when src is closed.
One other point: To keep this and the next example compact, I/O exceptions are simply thrown out of main( ). However, your real-world code will normally handle I/O exceptions itself.
You can use Scanner to read input that contains several different types of data—even if the order of that data is unknown in advance. You must simply check what type of data is available before reading it. For example, consider this program:
// Use Scanner to read various types of data from a file. import java.util.*;
import java.io.*;
class ScanMixed {
public static void main(String[] args)
throws IOException {
int i; double d; boolean b; String str;
// Write output to a file.
FileWriter fout = new FileWriter(“test.txt”); fout.write(“Testing Scanner 10 12.2 one true two false”); fout.close();
FileReader fin = new FileReader(“Test.txt”); Scanner src = new Scanner(fin);
// Read to end. while(src.hasNext()) {
if(src.hasNextInt()) {
i = src.nextInt(); System.out.println(“int: ” + i);
}
else if(src.hasNextDouble()) { Check for different types of data.
d = src.nextDouble();
System.out.println(“double: ” + d); }
else if(src.hasNextBoolean()) {
b = src.nextBoolean(); System.out.println(“boolean: ” + b);
}

else {
str = src.next(); System.out.println(“String: ” + str);
} }
src.close(); }
}
String: Testing String: Scanner int: 10
double: 12.2 String: one boolean: true String: two boolean: false
When reading mixed data types, as the preceding program does, you need to be a bit careful about the order in which you call the next methods. For example, if the loop reversed the order of the calls to nextInt( ) and nextDouble( ), both numeric values would have been read as doubles, because nextDouble( ) matches any numeric string that can be represented as a double.
Beginning with JDK 7, Scanner also implements the AutoCloseable interface. This means that it can be managed by a try-with-resources block. When try-with- resources is used, the scanner is automatically closed when the block ends. For example, src in the preceding program could have been managed like this:
try (Scanner src = new Scanner(fin)) {
// Read to end. while(src.hasNext()) {
if(src.hasNextInt()) {
i = src.nextInt(); System.out.println(“int: ” + i);
}
else if(src.hasNextDouble()) {
d = src.nextDouble();
System.out.println(“double: ” + d); }
else if(src.hasNextBoolean()) {
b = src.nextBoolean(); System.out.println(“boolean: ” + b);
}
else {
str = src.next();
System.out.println(“String: ” + str); }
} }
Here is the output:
Java programming 915

916 chapter 24 Exploring java.util
To clearly demonstrate the closing of a Scanner, the previous examples did not use try-with-resources. Explicitly calling close( ) also allows them to be compiled by versions of Java prior to JDK 7. However, the try-with-resources approach is more streamlined and can help prevent errors. Its use is recommended for new code.
some other scanner Features
Scanner has several other capabilities in addition to those already discussed. A few are mentioned here to give you an idea of its capabilities. As stated earlier, you can use a Scanner to input any sequence that matches a regular expression. After you learn about regular expressions, you should try using the versions of hasNext( ) and next( ) that take a regular expression as an argument.
You can set the delimiters that Scanner uses to determine where a token starts and ends. The default delimiters are the whitespace characters, and this is the delimiter set that the preceding examples have used. However, it is possible to change the delimit- ers by calling the useDelimiter( ) method. You can pass it any regular expression, but you can also pass something as simple as a comma, if you want to use a comma as the delimiter.
Another method that is particularly useful in some circumstances is findInLine( ). This method searches for the specified regular expression within a line of text. If a match is found, the token (and any preceding, nonmatching characters) is consumed and the token is returned. This method is useful if you want to locate a specific pattern within a larger input sequence.
Related to findInLine( ) is findWithinHorizon( ). This method attempts to find an occurrence of the specified pattern within a specified number of characters. If suc- cessful, it returns the matching token.
You can bypass a pattern using skip( ). It searches for a sequence that matches a regular expression. If a match is found, skip( ) simply advances beyond it.
1. For a Scanner whose input is “1234”, next( ) returns “1”. True or False?
2. To test whether the input source has any more tokens, call the Scanner method
_________.
3. To get the next integer, call the Scanner method __________.
Answers:
1. False. next( ) returns “1234”.
2. hasNext( )
3. nextInt( )
progress Check

thE random CLass
The Random class is a generator of pseudorandom numbers. These are called pseu- dorandom numbers because they are uniformly distributed sequences rather than truly random values. Random defines the following constructors:
Random( ) Random(long seed)
The first version creates a number generator that uses an arbitrary, but generally unique value, called a seed, to set its initial state. The second form allows you to specify a seed value manually. Initializing a Random object with a seed effectively defines the sequence that it will produce. If you use the same seed to initialize another Random object, you will extract the same random sequence. If you want to gener- ate different sequences, specify different seed values. The public methods defined by Random are summarized in Table 24-6.
As you can see, there are seven types of pseudorandom numbers that you can extract from a Random object. True/false values are available from nextBoolean( ). Bytes can be obtained by calling nextBytes( ). Integers can be extracted via the nextInt( ) method. Long integers can be obtained with nextLong( ). For integer types, the range of values is the range of the specified type. The nextFloat( ) and nextDouble( ) methods return values of types float and double, respectively, between 0.0 and less than 1.0. Finally, nextGaussian( ) returns a double value centered at 0.0 with a standard deviation of 1.0. This is the distribution that produces what is com- monly known as a bell curve.
Here is an example that demonstrates the sequence produced by nextGaussian( ). It obtains 100 random Gaussian values and averages these values. The program also counts the number of values that fall within two standard deviations, plus or minus, using increments of 0.5 for each category. The result is graphically displayed side- ways on the screen.
Java programming 917
Table 24-6: The Public Methods Defined by Random
Method
Description
boolean nextBoolean( )
Returns either true or false.
void nextBytes(byte[ ] vals)
Fills vals with generated byte values.
double nextDouble( )
Returns the next value as a double.
float nextFloat( )
Returns the next value as a float.
double nextGaussian( )
Returns the next value as a double, using the Gaussian distribution.
int nextInt( )
Returns the next value as an int.
int nextInt(int n)
Returns the next value as an int within the range zero to n−1.
long nextLong( )
Returns the next value as a long.
void setSeed(long newSeed)
Sets the seed value to that specified by newSeed.

918 chapter 24 Exploring java.util
// Demonstrate random Gaussian values.
import java.util.Random;
class RandomDemo {
public static void main(String[] args) {
Random r = new Random(); double val;
double sum = 0;
int[] bell = new int[9];
for(int i=0; i<100; i++) { val = r.nextGaussian(); sum += val; double t = -2; Generate pseudorandom values. for(int x=0; x < bell.length; x++, t += 0.5) if(val < t) { bell[x]++; break; } } System.out.println("Average of values: " + (sum/100)); // display bell curve, sideways for(int i=0; i < bell.length; i++) { for(int x=bell[i]; x>0; x–) System.out.print(“*”);
System.out.println(); }
} }
Here is a sample program run.
Average of values: 0.02569021377810979 *
*****
*******
************** ************************ ****************** ************** ***********
******
usE observable anD observer
The Observable class is used to create subclasses that other parts of your program can observe. Thus, it provides a framework that supports the Observer pattern described in Chapter 16. When an object of such a subclass undergoes a change, observing classes are notified. Observing classes must implement the Observer interface, which defines

Java programming 919
the update( ) method. The update( ) method is called when an observer is notified of a change in an observed object.
Observable defines the methods shown in Table 24-7. An object that is being observed must follow three simple rules. First, it must add any observers to its list of observers so that they can be notified of a change. This is done by calling addObserver( ). Second, if the object has changed, it must call setChanged( ). Third, when it is ready to notify observers of this change, it must call notifyObservers( ). This causes the update( ) method in the observing object(s) to be called. Be careful—if the object calls notifyObservers( ) without having previously called setChanged( ), no action will take place. The observed object must call both setChanged( ) and notifyObservers( ) before update( ) will be called.
Notice that notifyObservers( ) has two forms: one that takes an argument and one that does not. If you call notifyObservers( ) with an argument, this object is passed to the observer’s update( ) method as its second parameter. Otherwise, null is passed to update( ). You can use the second parameter for passing any type of object that is appropriate for your application.
Table 24-7: The Methods Defined by Observable
Method
Description
void addObserver(Observer obj)
Adds obj to the list of objects observing the invoking object.
protected void clearChanged( )
Calling this method returns the status of the invoking object to “unchanged.”
int countObservers( )
Returns the number of objects observing the invoking object.
void deleteObserver(Observer obj)
Removes obj from the list of objects observing the invoking object.
void deleteObservers( )
Removes all observers for the invoking object.
boolean hasChanged( )
Returns true if the state of the invoking object has been set to “changed.” This occurs only when setChanged( ) has been called on the invoking object and no subsequent call to notifyObservers( ) or clearChanged( ) has occurred. Otherwise, it returns false.
void notifyObservers( )
If the state of the invoking object indicates that it has changed, then this method notifies all observers of the invoking object by calling their update( ) method (defined by Observer). It then calls clearChanged( ) to return the object to an “unchanged” state. A null is passed as the second argument to update( ).
void notifyObservers(Object obj)
If the state of the invoking object indicates that it has changed, then this method notifies all observers of the invoking object by calling their update( ) method (defined by Observer). It then calls clearChanged( ) to return the object to an “unchanged” state. The argument passed to update( ) is specified by obj.
protected void setChanged( )
Called when the invoking object has changed.

920 chapter 24 Exploring java.util
To observe an observable object, you must implement the Observer interface.
This interface defines only the one method shown here: void update(Observable observedOb, Object arg)
Here, observedOb is the object being observed, and arg is the value passed by notifyObservers( ). The update( ) method is automatically called by notifyObservers( ) when a change in the observed object takes place.
Here is an example that demonstrates Observable and Observer. It creates two observer classes, called Watcher1 and Watcher2. Both implement the Observer interface. Each displays the value of the argument that is passed via update( ). Watcher2 also beeps when the count reaches zero. (This is done by outputting the value 7, which is the ASCII/Unicode value for the computer’s “bell”.) The class being monitored is called BeingWatched. It extends Observable.
Inside BeingWatched is the method counter( ), which simply counts down from a specified value. It uses sleep( ) to wait a fifth of a second between counts. Each time the count changes, notifyObservers( ) is called with the current count passed as its argument. This causes the update( ) method inside any observing object to be called.
Inside main( ), instances of Watcher1 and Watcher2, named observing1 and observing2, are created. Next, a BeingWatched object is constructed. It is named observed. Then, observing1 and observing2 are added to the list of observers for observed. This means that their update( ) methods will be called each time counter( ) calls notifyObservers( ).
// Demonstrate Observable and Observer. import java.util.*;
// This is the first observing class. class Watcher1 implements Observer {
Implement Observer. System.out.println(“update() in Watcher1 called, count is ” +
public void update(Observable obj, Object arg) { ((Integer)arg).intValue());
} }
// This is the second observing class. class Watcher2 implements Observer {
public void update(Observable obj, Object arg) {
System.out.println(“update() in Watcher2 called, count is ” + ((Integer)arg).intValue());
// Ring bell when done if(((Integer)arg).intValue() == 0)
System.out.print(‘\7’); }
}

// This is the class being observed.
class BeingWatched extends Observable { Extend Observable.
// Just count down to zero. Each count // represents a change about which the // observers are notified.
void counter(int count) {
for( ; count >= 0; count–) {
setChanged(); // set state to changed. notifyObservers(count); // notify observers
try { Thread.sleep(200);
} catch(InterruptedException e) { System.out.println(“Sleep interrupted”);
} }
} }
class TwoObservers {
public static void main(String[] args) {
BeingWatched observed = new BeingWatched();
Watcher1 observing1 = new Watcher1(); Watcher2 observing2 = new Watcher2();
Indicate that the state has changed. Notify all observers.
Java programming 921
// add both observers to the observed object
observed.addObserver(observing1); observed.addObserver(observing2);
observed.counter(5); }
}
The output from this program is shown here:
update() in Watcher2 called, count is 5 update() in Watcher1 called, count is 5 update() in Watcher2 called, count is 4 update() in Watcher1 called, count is 4 update() in Watcher2 called, count is 3 update() in Watcher1 called, count is 3 update() in Watcher2 called, count is 2 update() in Watcher1 called, count is 2 update() in Watcher2 called, count is 1 update() in Watcher1 called, count is 1 update() in Watcher2 called, count is 0 update() in Watcher1 called, count is 0
Add the observing objects so they can receive change notifications.
Create an object that is observed. Create two observers.

922 chapter 24 Exploring java.util
thE timer anD timertask CLassEs
An interesting and useful feature offered by java.util is the ability to schedule a task for execution at some future time. The classes that support this are Timer and TimerTask. Using these classes, you can create a thread that runs in the background, waiting for a specific time. When the time arrives, the task linked to that thread is executed. Various options allow you to schedule a task for repeated execution, and to schedule a task to run on a specific date. Although it is always possible to manually create a task that would be executed at a specific time using the Thread class, Timer and TimerTask greatly simplify this process.
Timer and TimerTask work together. Timer is the class that you will use to schedule a task for execution. The task being scheduled must be an instance of TimerTask. Thus, to schedule a task, you will first create a TimerTask object and then schedule it for execution using an instance of Timer.
TimerTask implements the Runnable interface; thus, it can be used to create a thread of execution. Its constructor is shown here:
protected TimerTask( )
Notice that the constructor is protected.
TimerTask defines the three methods shown here: abstract void run( )
boolean cancel( )
long scheduledExecutionTime( )
The run( ) method, defined by the Runnable interface, contains the code that will be executed. Notice that run( ) is abstract, which means that it must be overridden. Thus, the easiest way to create a timer task is to extend TimerTask and override run( ). The cancel( ) method terminates the task. It returns true only if an execution of the task was prevented. The time at which the last execution of the task was scheduled to have occurred is returned by scheduledExecutionTime( ). This value is in terms of milliseconds from January 1, 1970.
Once a task has been created, it is scheduled for execution by an object of type Timer. The constructors for Timer are shown here:
Timer( )
Timer(boolean DThread )
Timer(String tName)
Timer(String tName, boolean DThread )
The first version creates a Timer object that runs as a normal thread. The second uses a daemon thread if DThread is true. A daemon thread will execute only as long as the rest of the program continues to execute. The third and fourth constructors allow you to specify a name for the Timer thread.

Java programming 923 To schedule a task for execution, you can use one of Timer’s schedule( ) methods.
There are several forms. Two of them are shown here: void schedule(TimerTask tTask, long wait)
void schedule(TimerTask tTask, long wait, long repeat)
Here, tTask is scheduled for execution after the period passed in wait has elapsed. When the second constructor is used, the task is then executed repeatedly at the inter- val specified by repeat. Both wait and repeat are specified in milliseconds. Other forms of schedule( ) let you specify a date at which the task will execute.
You can stop the timer by calling cancel( ): void cancel( )
All tasks are also terminated.
If you create a non-daemon task, then you will want to call cancel( ) to end the
task when your program ends. If you don’t do this, then the timer task will continue to execute even though the main( ) method has ended.
The following program demonstrates Timer and TimerTask. It defines a timer task whose run( ) method displays the message “Timer task executed.” This task is scheduled to run once every half second after an initial delay of one second.
// Demonstrate Timer and TimerTask.
import java.util.*;
class MyTimerTask extends TimerTask { public void run() {
System.out.println(“Timer task executed.”); }
}
class TimerTest {
public static void main(String[] args) {
MyTimerTask myTask = new MyTimerTask(); Timer myTimer = new Timer();
// Set an initial delay of 1 second, // then repeat every half second. myTimer.schedule(myTask, 1000, 500);
try { Thread.sleep(5000);
} catch (InterruptedException exc) {}
myTimer.cancel(); }
}

924 chapter 24 Exploring java.util
Another method provided by Timer that you might find interesting is scheduleAtFixedRate( ). It lets you schedule a task for repeated executions that more faithfully approximate a fixed rate of execution. The time of each repetition is relative to the first execution, not the preceding execution. Thus, any “drift” in the timing will be limited.
1. The Observer interface and Observable class provide a framework for using the ___________ pattern.
2. If you have a Random object and you want a double value from a uniform dis- tribution in the interval from 0 to 1, use the method ____________ and if you want a double value from a Gaussian distribution, use the method ________.
3. If you want to execute a task at regular intervals, create an object of class _________ to execute the task and then schedule it for execution at regular intervals using an object of class ________.
misCELLanEous utiLity CLassEs anD intErFaCEs
Here is a brief description of other top-level classes in java.util that are not discussed elsewhere in this book.
progress Check
BitSet
Defines a collection of bits.
EventListenerProxy
Extends the EventListener class to allow additional parameters.
Currency
Encapsulates information about currency.
EventObject
The superclass for all event classes.
FormattableFlags
Defines formatting flags that are used with the Formattable interface.
ListResourceBundle
Manages resources as an array.
Objects
Various methods that operate on objects.
PropertyPermission
Manages property permissions.
PropertyResourceBundle
Manages resources by use of property files.
ResourceBundle
Encapsulates a collection of locale-sensitive resources as key/value pairs.
ServiceLoader
Provides a means of finding service providers.
StringTokenizer
Breaks a string into individual parts called tokens.
UUID
Encapsulates and manages Universally Unique Identifiers (UUIDs).
Answers:
1. Observer
2. nextDouble( ), nextGaussian( )
3. TimerTask, Timer

Java programming 925
With the exception of Formattable and EventListener, all of the interfaces in java.util are discussed here or in the following chapter. The Formattable interface is implemented by a class that provides custom formatting. EventListener is inherited by all event listeners.
ask the Expert
Q What do the methods in the Objects class do?
AAll the methods defined in that class are static methods. Some of them perform actions similar to the non-static methods in the Object class. For example, Objects contains a toString( ) method shown here:
static String toString(Object obj)
This method calls obj.toString( ) and returns the result if obj is not null, and it returns “null” if obj is null. Therefore, obj.toString( ) and Objects.toString(obj) are almost identical. The only difference occurs when obj is null. In that case, obj.toString( ) throws a NullPointerException, whereas Objects.toString(obj) returns “null”.
The Objects class also has convenient methods for comparing two objects or for testing whether an object is null. For example, there is a requireNonNull( ) method that has this general form:
public static T requireNonNull(T obj)
This method returns obj if obj is not null. Otherwise, it throws a NullPointerException.
Therefore the code segment:
Object obj = Objects.requireNonNull(x);
performs basically the same function as the code segment:
Object obj;
if(x != null) obj = x;
else throw new NullPointerException();
ExErCisEs
1. What are the main differences between the javax.swing.Timer class discussed in Chapter 21 and the java.util.Timer class?
2. What is the difference between the value returned by a call to System.currentTimeMillis( ) mentioned in the last chapter and the value returned by a call to Calendar.getInstance( ).getTimeInMillis( ) used in earlier chapters?
3. When a Formatter sees a ‘%’ character in the format string, how does it know whether that character is part of a format specifier or just a regular character that should be inserted in the output string?

926 chapter 24 Exploring java.util
4. Assume you have a GregorianCalendar object cal and you want to display, using System.out.printf( ), the date it represents in the form year:month:day: hour:minute:second using the long form of the year, month, and day, and using the 24-hour format. For example, if cal represents noon on March 11, 1984, then the output should be “1984:March:11:12:00:00”. What should the arguments be for the call to printf( )? Use relative indices where possible.
5. Assume that x is a long variable and it is to be displayed using System.out.printf( ) with a minimum field width of 20, a leading ‘+’ if it is positive, commas after each three digits from the right, and left-justified. What should the arguments be for the call to printf( )?
6. Assume you have a double variable x and you use a Formatter to create a string containing the value of x and then you use a Scanner to get back the value of x from the string. Are you guaranteed to end up with the same value for x as you started with? Why or why not?
7. What is the output of the following instruction? System.out.printf(“%%%(-11.2E%%”, -1.23456789);
8. What happens if you create a GregorianCalendar object that represents an illegal date such as January 32, 1970? More precisely, what happens if you execute the following code segment:
GregorianCalendar cal = new GregorianCalendar(1970, 0, 32);
and then you output the month, day, and year stored in cal using calls to
getDisplayName( )?
9. Write a program that prints out the names of all the months in German.
10. Write a program that determines whether the date that is 70 days before April 1, 2000 is before or after the date that is 500 days after September 1, 1998. The program should display the two dates and tell which comes first.
11. CreateastaticmethodnumDaysLeftInYear()thattakesaGregorianCalendar variable cal as its parameter and returns the number of days left in the year represented by cal. For example, if cal represents December 28, 2000, then numDaysLeftInYear(cal) returns 3 (it does not include December 28 as one of the days left in the year). Also write a program to test your method.
12. Assume that x is an integer variable previously initialized. Does System.out.printf(“%d”, x) output the same string as System.out.print(new java.util.Formatter( ).format(“%d”, x))?
13. Improve the formatCities( ) method in Try This 24-1 so that it displays the numbers with commas separating every three digits from the right.
14. Improve the formatCities( ) method in Try This 24-1 so that it displays a row of hyphens across the top and bottom of the table. The row starts at the left vertical bar and ends at the right vertical bar.
15. Write a program similar to the TableFormatDemo class discussed in the chapter but, instead of listing the squares and cubes of the numbers from 1 to 10, it lists the decimal, octal, hexadecimal, and scientific notation forms of the numbers from 1 to 20. Use relative indexing where possible.

Java programming 927
16. Create a method weekDay( ) that takes a Calendar as its parameter. It returns the full name of the day of the week represented by the Calendar.
17. Create a method convertToRows( ) that takes two parameters: the name of a text file for input and the name of a text file for output. The input file should contain a list of integers separated by whitespace. The convertToRows( ) method reads the integers from the input file and writes them to the output file, four integers per line. In the output file, the integers should be right- justified in four columns whose width is 15 characters. The last row might have fewer than four integers. Write a program to test your new method. Use a Scanner for reading the input and a Formatter for writing the output.
18. When sampling from a standard normal (Gaussian) distribution, approxi- mately 68% of the samples should be between −1 and +1, approximately 95% of the samples should be between −2 and +2, and approximately 99.7% should be between −3 and +3. Write a program that generates 1,000 random values from a Gaussian distribution and keeps track of how many of them fall into each of those ranges. It then displays the results.
19. Redo the SavingsAccountDemo program in Chapter 16 so that it uses Observer/Observable instead of creating your own classes and interfaces from scratch. The SavingsAccount class should inherit from Observable and the FeeHandler and FraudHandler classes should implement Observer instead of implementing BalanceChangeHandler.
20. Write a program that uses a Timer that starts immediately counting up from 1 to 10 in half-second intervals and then, after another half second, rings a bell.

Chapter
Using the Data Structures in the Collections Framework
key skills & concepts
j Understand the basic data structures j Know the collection interfaces
j Know the collection classes
j Use an iterator
j Know the map interfaces
j Know the map classes
j Use a comparator
j Gain an overview of algorithms
j Know the legacy collection classes
This chapter continues our examination of java.util by describing one of Java’s most powerful subsystems: the Collections Framework. The Collections Framework is a sophisticated hierarchy of interfaces and classes that provide state-of-the-art tech- nology for managing groups of objects (collections). A basic understanding of the Collections Framework is important for all Java programmers because it is widely used in Java applications and within other parts of the Java API library.
The Collections Framework provides a number of ways to store a collection of objects. It does so by providing generic implementations of several common data structures. Although you will study data structures in depth in a later course, a general understanding is needed to effectively use the Collections Framework. Thus, we begin with a brief overview of data structures.
Note: This chapter discusses only those portions of the Collections Framework defined in java.util. Java also defines concurrent collections, which are designed for use in highly parallel execution environments. They are packaged in java.util.concurrent.
929
25

930 chapter 25 Using the Data Structures in the Collections Framework an Overview OF Data StrUCtUreS
Before discussing any specific data structure, it will be helpful to define the term data structure. Here is one definition: a data structure defines a way to arrange data and specifies the rules by which that data can be accessed. Thus, a data structure deter- mines the basic shape, form, and characteristics of a conceptual framework used to manage groups of data.
There are many different types of data structures. The simplest one is the array, which you have already learned about in Part One. The arrays built into the Java lan- guage are implemented as fixed-length, linear lists. Individual elements are accessed via an index, by use of the array subscript notation. As a result, arrays support fast, random access to elements. As you will see, the Collections Framework also provides support for dynamic arrays, which can grow as needed.
Here are some other common data structures:
j stack
j queue
j linked list j tree
j hash table
Each of these is supported by the Collections Framework. Each has different properties, capabilities, and performance characteristics. Thus, not every data structure is suitable for every task. Rather, the choice of data structure depends on the application.
Stacks and Queues
You have already seen examples of a stack and a queue because both have been used as examples earlier in this book. To review, both a stack and a queue strictly define the order in which elements can be added and removed. In the case of a stack, the order is last-in, first-out (LIFO). Thus, the first element put on the stack is the last element to be used. To visualize a stack, imagine a stack of plates. The first plate on the table is the last to be used, and the last plate put on the stack is the first to be used. Stacks do not support random access to their elements. Instead, they support two basic opera- tions: push and pop. An item is put onto the stack by use of a push operation. The top item is taken off the stack by a pop operation.
In its standard form, a queue is, essentially, the opposite of a stack. Its order is first-in, first-out (FIFO). This means that the first item put in the queue is the first item retrieved, the second item put in is the second item retrieved, and so on. A checkout line at a store is a real-world example of a queue. The queue’s FIFO order- ing is enforced by the fact that items are added only to the end of a queue and items are taken off only by removing them from the front. Thus, queues do not support random access to their elements. Often, the front of a queue is referred to as the head, and the end of a queue is called the tail. It must be pointed out, however, that other types of queues exist in which the order of the elements is determined by some factor other than insertion order, such as priority. However, in all cases, the general

Java programming 931 mechanism of putting an element into a queue and removing an element from a queue
remains the same.
Linked Lists
Stacks and queues share a common trait: They both have strict rules that define the order in which data can be accessed. A linked list is different because its elements can be accessed in a more flexible fashion. In a linked list, each piece of information car- ries with it a link to the next element in the list. New elements can be inserted into the list at any point by simply rearranging the links. Likewise, an element can be removed from the list by rearranging the links. As a result, linked lists are dynamic data struc- tures that grow or shrink automatically as new elements are added or removed.
Linked lists can be either singly linked or doubly linked. Each element in a singly linked list contains a link to the next element. In a doubly linked list, each element con- tains links to both the next and the previous element. (See Figure 25-1.) The main dif- ference between the two is that a singly linked list can be followed in only one direction. A doubly linked list can be followed in either direction. The linked list implementation in the Collections Framework uses a doubly linked list.
Although linked lists offer a convenient way to store variable-length lists, finding an element can be slow because a sequential search must be used. In other words, to search for an item in a linked list, you must start with the first item. If it is not the one you are looking for, you must follow the link to the next item and check it. This process repeats until the item is found. This makes linked lists very good for situations in which an operation will be applied to an entire list, but inefficient when random access to a specific element is needed.
Data
Data
Data
Data
Data
Data
Data
Data
Figure 25-1. Singly linked and doubly linked lists

932 chapter 25 Using the Data Structures in the Collections Framework trees
One of the most powerful data structures is the tree. As the name implies, a tree organizes data as a hierarchy. When depicted visually, this organization has a tree structure. However, in computer science, trees are often drawn upside down. This makes for some interesting terminology. The root is the first item in the tree. Each item is called a node of the tree. Any part of the tree that descends from a node is called a subtree, with that node forming the root of the subtree. A node that has no subtrees is called a terminal node or leaf. The height of the tree is equal to the num- ber of layers deep that its nodes descend from the root. When working with trees, you can think of them existing in memory looking the way they do on paper. But remember: a tree is only a way to logically organize data in memory, and memory is linear.
One common type of tree is the sorted binary tree, also called a binary search tree. In a sorted binary tree, each node contains a link to a left member and a right member. For each node in the tree, items with smaller keys are stored on one side and items with greater keys are stored on the other. For the sake of this discussion, assume that the smaller keys are on the left of the root node and larger keys are on the right. Given this arrangement, to find a node in a sorted binary tree, simply follow the links, going left or right based on whether the current node’s key is greater than or less than the search key. This approach makes for fast searches because the number of nodes that need to be checked will not exceed the height of the tree. Figure 25-2 shows a small sorted binary tree.
It is important to point out that the fast search times of a sorted binary tree only apply if the tree is in reasonably good balance. In other words, no subtree is more than
Left Subtree
D
Root
F
Right Subtree
B
ACEG
Leaf Nodes
Figure 25-2. a sorted binary tree

Java programming 933 one level deeper than another. In a worst-case, an unbalanced tree can degenerate into
a linear list, which would result in much degraded performance.
hash tables
A hash table is a data structure that stores information in some form of table (such as an array) in which the location at which data is stored is determined by the hash code associated with that data. In general, the hash code is computed based on some identifying aspect of the data, which acts as the key. In Java’s hash tables, the hash code is computed from a key that you explicitly specify. The computation of the hash code must work in such a way that each key produces a (reasonably) unique value. The principal advantage of a hash table is that very fast access times can be achieved because the hash code acts like an index to the data. For this reason, insertions, dele- tions, and searches in a hash table can be performed very quickly. However, as a general rule, hash tables do not store data in sorted order.
Choosing a Data Structure
You can use the characteristics of the basic data structures to help you choose the one right for the job. Here are some guidelines. When you need a last-in, first-out list, use a stack. When you need a first-in, first-out list, use a queue. For constant access time, a hash table is a good choice if sorted order is not needed. A sorted binary tree is an excellent choice when a sorted list is required and fast search times are a priority. A linked list is appropriate when a list will be accessed mostly in sequential order and sorting is not required (or only occasionally required). A dynamic array offers very fast random access to its elements. However, insertions and deletions can be expen- sive in terms of time.
Now that you have a basic understanding of the fundamental data structures, it is time to examine the Collections Framework.
1. A data structure is ________________________.
2. In what order does a queue store its elements?
3. Name two types of linked lists.
4. Is a sorted binary tree a good choice when fast access to elements is needed?
Answers:
1. a way of arranging data and a specification of the rules by which the data can be accessed
2. First-in, first-out.
3. Singly linked and doubly linked.
4. Yes.
progress Check

934 chapter 25 Using the Data Structures in the Collections Framework
ask the expert
Q You mentioned that linked lists are less efficient than arrays when access to a specific element is needed. The reason is because you can access the element directly in an array but you need to traverse the linked list starting at one of the endpoints to access the element. Given the speed of modern computers,
does it really matter?
AYes,itdoes,especiallyforprogramshandlinglargeamountsofdata. Consider the following example. Assume that a program needs to store 100 million items in a list and assume that random access to the items is needed 4 million times a day. Furthermore, assume that the computer is so fast that it can perform 1 billion array accesses or traverse 1 billion list links a second. In other words, assume that each of these operations takes only one nanosecond (one billionth of a second). If you store the 100 million items in an array, then accessing 4 million items each day will take 4 million nanoseconds or only about four thousandths of a second. In other words, accessing the 4 million items will take a very insignificant amount of computer time each day. But consider what happens if you store the 100 million items in a linked list. In that case, to get to any given element in the list from the nearest end, you’ll need to traverse a quarter of the list on average. That means that 25 million links will need to be traversed on average to access the element. Since 4 million items need to be accessed each day, there will be 4 million list traversals, each of them traversing an average of 25 million links. This amounts to 100 tril- lion link traversals, which will take 100 trillion nanoseconds, or over 27 hours. In other words, there are not enough hours in the day for the computer to perform all the 4 million accesses, let along do any other work!
As the preceding discussion shows, the subject of the efficiency of algorithms and data structures is an important one that you will study in detail in your data structures course.
COLLeCtiOnS Overview
The Collections Framework standardizes the way in which a Java program handles groups of objects. It does this by providing implementations for several of the most commonly used data structures, such as the dynamic array, stack, queue, doubly linked list, tree, and hash table just described. You will seldom need to code one of these data structures yourself. In short, the Collections Framework offers “off-the- shelf ” solutions to many common programming tasks.
The Collections Framework is built on a set of well-defined interfaces. Several implementations of these interfaces are provided. The advantage to this approach is that once you understand the functionality described by an interface, you can use any specific implementation. Also, you can easily substitute a different implementation if the requirements of your program change.
In addition to collections, the framework also defines several map interfaces and classes. Maps store key/value pairs. Although maps are part of the Collections Framework, they are not “collections” in the strict use of the term. You can, however,

Java programming 935
obtain a collection-view of a map. Such a view contains the elements from the map stored in a collection. Thus, you can process the contents of a map as a collection, if you choose.
Algorithms are another important part of the Collections Framework. They oper- ate on collections and are defined as static methods within the Collections class. Algorithms provide a standard means of manipulating collections.
Another item closely associated with the Collections Framework is the iterator. An iterator offers a general-purpose, standardized way of accessing the elements within a collection, one after another. Thus, an iterator provides a means of enumerating the contents of a collection. Because each collection provides an iterator, the elements of any collection class can be accessed through one.
the COLLeCtiOn interFaCeS
The Collections Framework defines several interfaces. These interfaces determine the fundamental nature of the collection classes because they specify most of the func- tionality provided by those classes. The collections classes simply provide different implementations of the standard interfaces. Therefore, to understand the Collections Framework, you must begin by understanding its interfaces.
The collection interfaces packaged in java.util are summarized in the following table:
Interface
Description
Collection
Enables you to work with groups of objects; it is at the top of the collections hierarchy.
Deque
Extends Queue to handle a double-ended queue. This can be used to implement a stack or a queue.
List
Extends Collection to handle lists of objects.
NavigableSet
Extends SortedSet to handle the retrieval of an element based on how close its value is to another value.
Queue
Extends Collection to handle queues.
Set
Extends Collection to handle sets, which must contain unique elements.
SortedSet
Extends Set to handle sorted sets.
In addition to these interfaces, collections also use the Comparator, Iterator, and ListIterator interfaces, which are described in depth later in this chapter. Briefly, Comparator determines how two objects are compared; Iterator and ListIterator support iterators. Another interface used by some collections is RandomAccess. By implementing RandomAccess, a collection indicates that it supports efficient, random access to its elements.
To provide the greatest flexibility in their use, the collection interfaces allow some methods to be optional. The optional methods enable you to modify the contents of a collection. Collections that support these methods are called modifiable. Collections that do not allow their contents to be changed are called unmodifiable. All the built-in collections are modifiable.
The following sections examine the collection interfaces.

936 chapter 25 Using the Data Structures in the Collections Framework the Collection interface
The Collection interface is the foundation on which the Collections Framework is built because it must be implemented by any class that defines a collection. Collection is a generic interface that has this declaration:
interface Collection
Here, E specifies the type of objects that the collection will hold. Collection extends the Iterable interface. This is important because only classes that implement Iterable can be used with a for-each for loop. Iterable also enables a collection to be iterated over using an iterator.
Collection declares the core methods that all collections will have. These methods are summarized in Table 25-1. Because all collections implement Collection, famil- iarity with its methods is necessary for a clear understanding of the framework. Let’s look at each.
At its foundation, a data structure supports two fundamental operations: the inser- tion of an item into a collection and the removal of an item from a collection. In the Collection interface, these operations are supported by the add( ) and remove( ) methods. Notice that add( ) takes an argument of type E, which is the type parameter for Collection. This means that objects added to a collection must be compatible with the type of data expected by the collection.
Now, notice the size( ) and isEmpty( ) methods. These are two more fundamental operations commonly implemented by a data structure. The number of elements cur- rently stored in the collection can be obtained by calling size( ). You might use this value, for example, as the stopping point when cycling through a collection using a loop. Be aware that the value returned by size( ) will change if the number of elements stored in the collection changes. When a collection contains no elements, isEmtpy( ) returns true. You can use this method to avoid accessing an empty collection, for example. A collection can be emptied by calling clear( ).
Although the operations just described are sufficient to handle many types of collection operations, Collection specifies three methods that add convenience when working with groups of elements. These are addAll( ), removeAll( ), and retainAll( ). You can add the entire contents of one collection to another by calling addAll( ). To remove a group of objects, call removeAll( ). You can remove all elements except those of a specified group by calling retainAll( ).
Two collections can be compared for equality by calling equals( ). The precise meaning of “equality” is allowed to differ from collection to collection. For collec- tions that implement List or Set interfaces, the contents of the collections are com- pared. You can determine if a collection holds an element by calling contains( ). To determine if all elements of one collection are part of another, call containsAll( ).
The iterator( ) method returns an iterator to a collection. Iterators are frequently used when working with collections because, as explained earlier, they provide a means by which elements of the collection can be enumerated. The for-each for loop, which also cycles through a collection, offers a convenient alternative in some cases.
Finally, the toArray( ) methods return an array that contains the elements stored in the collection. One version returns an array of Object. The other version returns an array of elements that have the same type as the array specified as a parameter. The second form is convenient because it returns the desired array type. These methods

Java programming 937
TABLE 25-1: The Methods Declared by Collection
Method
Description
boolean add(E obj)
Adds obj to the invoking collection. Returns true if obj was added to the collection. Otherwise, returns false.
boolean
addAll(Collection col )
Adds the elements in col to the invoking collection. Returns true if at least one element was added. Otherwise, returns false.
void clear( )
Empties the invoking collection.
boolean contains(Object obj)
Returns true if obj is in the invoking collection. Otherwise, returns false.
boolean containsAll(Collection col )
Returns true if all elements of col are also in the invoking collection. Otherwise, returns false.
boolean equals(Object obj)
Returns true if the invoking collection and obj are equal. Otherwise, returns false.
int hashCode( )
Returns the invoking collection’s hash code.
boolean isEmpty( )
Returns true if the invoking collection is empty. Otherwise, returns false.
Iterator iterator( )
Returns an iterator for the invoking collection.
boolean remove(Object obj)
Removes one item equal to obj from the invoking collection. Returns true if successful. Returns false if obj was not in the collection.
boolean removeAll(Collection col )
Removes all elements in col from the invoking collection. Returns true if at least one item was removed. Otherwise, returns false.
boolean retainAll(Collection col )
Removes all elements from the invoking collection except those in col. Returns true if at least one ele- ment was removed. Otherwise, returns false.
int size( )
Returns the number of elements currently stored in the invoking collection.
Object[ ] toArray( )
Returns the elements stored in the invoking collection in the form of an array. The array is independent from the invoking collection.
T[ ] toArray(T[ ] array)
Returns the elements stored in the invoking collection in the form of an array. The array is independent from the invoking collection. If the size of array equals or exceeds the number of elements, these are returned
in array. If the size of array is less than the number of elements, a new array of the necessary size is allocated and returned.
are more important than it might at first seem because there can be times when you need to process the contents of a collection as an array. For example, you might want to pass a collection to a method that expects an array. The array obtained from toArray( ) is independent of the collection, except, of course, that both refer to the same elements.

938 chapter 25 Using the Data Structures in the Collections Framework the List interface
The List interface extends Collection and declares the behavior of a collection that stores a sequence of elements. Elements can be inserted or accessed by their position in the list, using a zero-based index. It is legal for a List implementation to contain duplicates. List is a generic interface that has this declaration:
interface List
Here, E specifies the type of objects that the list will hold.
In addition to the methods defined by Collection, List adds some of its own,
which are summarized in Table 25-2.
Notice that most of the methods added by List either take an index as an argument or
return an index. These methods provide support for index-based random access to a List. For example, to obtain the object stored at a specific location, call get( ), specifying the index of the object. To set the value at a specific location, call set( ), passing in the index and the value. To find the index of an object, use indexOf( ) or lastIndexOf( ).
Another method to notice is subList( ). It lets you obtain a sublist of a list by specifying its beginning and ending indices. As you can imagine, subList( ) makes list processing quite convenient. Be careful, though, because the list returned uses the original list. Thus, changing one changes the other. This arrangement is referred to as a view of the collection. In the Java API documentation, such a view is said to be “backed” by the collection on which it is called. One other point: if you make a change to the structure of the underlying collection (except through the view), for example, by changing its size, then the sublist will become invalid. The key point is to use sublists with care.
One other point: List changes the semantics of add(E) and addAll(Collection) defined by Collection so that they add elements to the end of the list. To add an element in a specific location, use the index forms of add( ) or addAll( ) specified by List.
the Set interface
The Set interface defines a set. It extends Collection and declares the behavior of a collection that does not allow duplicate elements. Therefore, the add( ) method returns false if an attempt is made to add duplicate elements to a set. It does not declare any additional methods of its own. Set is a generic interface that has this declaration:
interface Set
Here, E specifies the type of objects that the set will hold.
the SortedSet interface
The SortedSet interface extends Set and declares the behavior of a set sorted in ascending order. SortedSet is a generic interface that has this declaration:
interface SortedSet
Here, E specifies the type of objects that the set will hold. In addition to those methods provided by Set, the SortedSet interface adds the methods summarized in Table 25-3.

Java programming 939
TABLE 25-2: The Methods Declared by List
Method
Description
void add(int index, E obj)
Adds obj to the invoking list at the index passed in index.
boolean
addAll(int index,
Collection col)
Adds the elements of col to the invoking list at the index passed in index. Returns true if at least one element was added and false otherwise.
E get(int index)
Returns the object stored at the index passed in index within the invoking collection.
int indexOf(Object obj)
Searches for the first instance of obj in the invoking list. If found, its index is returned. Otherwise, –1 is returned.
int lastIndexOf(Object obj)
Searches for the last instance of obj in the invoking list. If found, its index is returned. Otherwise, –1 is returned.
ListIterator listIterator( )
Returns an iterator to the start of the invoking list.
ListIterator listIterator(int index)
Returns an iterator to the invoking list that begins at the index passed in index.
E remove(int index)
Removes the element at the index passed in index from the invoking list and returns the deleted element.
E set(int index, E obj)
Assigns obj to the location specified by index within the invoking list. Returns the old value.
List subList(int start, int end )
Returns a list that includes elements from start to end–1 in the invoking list. The resulting list is a view of the invoking list.
TABLE 25-3: The Methods Declared by SortedSet
Method
Description
Comparator comparator( )
Returns the invoking set’s comparator. If no comparator is used, null is returned.
E first( )
Returns the element with the smallest value. Because the set is sorted, this will be the first element in the invoking set.
SortedSet headSet(E end )
Returns a SortedSet that includes those elements in the invoking set that are less than end. The resulting set is a view of the invoking set.
E last( )
Returns the element with the largest value. Because the set is sorted, this will be the last element in the invoking set.
SortedSet subSet(E start, E end )
Returns a SortedSet that includes those elements in the invoking set that are between start and end–1. The resulting set is a view of the invoking set.
SortedSet tailSet(E start)
Returns a SortedSet that includes those elements in the invoking set that are greater than or equal to start.
The resulting set is a view of the invoking set.

940 chapter 25 Using the Data Structures in the Collections Framework
Notice that SortedSet defines three methods that obtain subsets. These can make set processing more convenient. You can obtain a subset of a sorted set by calling subSet( ), specifying the first and last object in the desired set. If you need the subset that starts with the first element in the set, use headSet( ). If you want the subset that ends the set, use tailSet( ). These methods make it easy to obtain a range of the ele- ments in a set. In all three cases, the returned set is a “view,” meaning that it refers to the original set. Changing one affects the other. Unlike the views obtained from a List, these views allow changes to the structure of the underlying collection without invalidating the view. One other point: you can’t add an element to one of these views that is outside the range of the view. Attempting to do so will cause an exception.
the navigableSet interface
The NavigableSet interface extends SortedSet and declares the behavior of a collec- tion that supports the retrieval of an element based on how close its value is to another value. NavigableSet is a generic interface that has this declaration:
interface NavigableSet
Here, E specifies the type of objects that the set will hold. In addition to the methods that it inherits from SortedSet, NavigableSet adds those summarized in Table 25-4.
Pay special attention to the ceiling( ) and floor( ) methods. They find the next ele- ment in the set that is closest to or equal to another element. To find an element that is closest to but not equal to another element, use higher( ) and lower( ). Notice also that additional forms of subSet( ), tailSet( ), and headSet( ) have been added that work with near matches.
the Queue interface
The Queue interface extends Collection and declares the behavior of a queue. Typically, this is a first-in, first-out list. However, there are types of queues in which the ordering is based on other criteria. Queue is a generic interface that has this dec- laration:
interface Queue
Here, E specifies the type of objects that the queue will hold. The methods added by Queue are shown in Table 25-5.
Despite its simplicity, Queue offers several points of interest. First, elements can only be removed from the head (front) of the queue. Second, the point of element insertion is not specified. For a FIFO queue, elements would be added to the tail of the queue, but other implementations are allowed. Third, there are two methods that obtain and remove elements: remove( ) and poll( ). The difference between them is what occurs when called on an empty queue. In this case, the remove( ) method throws a NoSuchElementException exception. The poll( ) method returns null. Fourth, there are two methods, element( ) and peek( ), that obtain but don’t remove the element at the head of the queue. They also differ in their behavior when called on an empty queue, the first throwing a NoSuchElementException exception; the other returning null.

Java programming 941
TABLE 25-4: The Methods Declared by NavigableSet
Method
Description
E ceiling(E obj)
Searches the set for the smallest element e such that e >= obj. If such an element is found, it is returned. Otherwise, null is returned.
Iterator descendingIterator( )
Returns an iterator that moves from the greatest to least. In other words, it returns a reverse iterator.
NavigableSet descendingSet( )
Returns a NavigableSet that contains the entries in the invoking set in reverse order. The resulting set
is a view of the invoking set.
E floor(E obj)
Searches the set for the largest element e such that e <= obj. If such an element is found, it is returned. Otherwise, null is returned. NavigableSet
headSet(E upperBound, boolean incl)
Returns a NavigableSet that includes all elements from the invoking set that are less than upperBound. If incl is true, then an element equal to upperBound is included. The resulting set is a view of the invoking set.
E higher(E obj)
Searches the set for the smallest element e such that e > obj. If such an element is found, it is returned. Otherwise, null is returned.
E lower(E obj)
Searches the set for the largest element e such that e < obj. If such an element is found, it is returned. Otherwise, null is returned. E pollFirst( ) Returns the first element in the invoking set, removing the element in the process. Because the set is sorted, this is the element with the smallest value. Returns null if called on an empty set. E pollLast( ) Returns the last element in the invoking set, removing the element in the process. Because the set is sorted, this is the element with the largest value. Returns null if called on an empty set. NavigableSet subSet(E lowerBound,
boolean lowIncl, E upperBound, boolean highIncl)
Returns a NavigableSet that includes all elements from the invoking set that are greater than lowerBound and less than upperBound. If lowIncl is true, then an ele- ment equal to lowerBound is included. If highIncl is true, then an element equal to upperBound is included. The resulting set is a view of the invoking set.
NavigableSet
tailSet(E lowerBound, boolean incl )
Returns a NavigableSet that includes all elements from the invoking set that are greater than lowerBound. If incl is true, then an element equal to lowerBound is included. The resulting set is a view of the invoking set.

942 chapter 25 Using the Data Structures in the Collections Framework
TABLE 25-5: The Methods Declared by Queue
Method
Description
E element( )
Returns the element at the head of the queue. The element is not removed. If called on an empty queue, a NoSuchElementException is thrown.
boolean offer (E obj)
Attempts to add obj to the queue. Returns true if obj was added and false otherwise. This method will fail if an attempt is made to add an element to a full capacity-restricted queue.
E peek( )
Returns the element at the head of the queue. The element is not removed. Returns null if called on an empty queue.
E poll( )
Returns the element at the head of the queue, removing the element in the process. Returns null if called on an empty queue.
E remove( )
Removes the element at the head of the queue, returning the element
in the process. If called on an empty queue, a NoSuchElementException is thrown.
Finally, notice that offer( ) only attempts to add an element to a queue. Although the queue implementations in java.util are dynamic, a capacity-restricted queue implementation is permissible. For example, a queue might be of fixed length. In a capacity-restricted queue, offer( ) can fail when the queue is full. In this case, it returns false. The add( ) method, which is inherited from Collection, can also be used to add an element to a queue. If the queue is fixed length, it will throw an IllegalStateException when called on a full queue.
the Deque interface
The Deque interface extends Queue and declares the behavior of a double-ended queue. Double-ended queues can function as standard, first-in, first-out queues or as last-in, first-out stacks. Deque is a generic interface that has this declaration:
interface Deque
Here, E specifies the type of objects that the deque will hold. In addition to the methods that it inherits from Queue, Deque adds those methods shown in Table 25-6.
Notice that Deque includes the methods push( ) and pop( ). These methods enable a Deque to function as a stack. Of course, you can also use a Deque as a queue. There are various ways to do this. Here is one way: use offerLast( ) to put an item on the tail of the queue and pollFirst( ) to remove an item from the head of the queue.
Although the implementations of Deque in java.util are dynamic, a Deque imple- mentation can also be capacity-restricted. When this is the case, an attempt to add an element to the deque can fail. Deque allows you to handle such a failure in two ways. First, methods such as addFirst( ) and addLast( ) throw an IllegalStateException if a capacity-restricted deque is full. Second, methods such as offerFirst( ) and offerLast( ) return false if the element cannot be added. You also have two ways to handle

Java programming 943
TABLE 25-6: The Methods Declared by Deque
Method
Description
void addFirst(E obj)
Attempts to add obj to the head of the deque. It throws an IllegalStateException if a capacity-restricted deque is out of space.
void addLast(E obj)
Attempts to add obj to the tail of the deque. It throws an IllegalStateException if a capacity-restricted deque is out of space.
Iterator descendingIterator( )
Returns an iterator that moves from the tail to the head of the deque. In other words, it returns a reverse iterator.
E getFirst( )
Returns the element at the head of the deque. The object is not removed. If called on an empty deque, a NoSuchElementException is thrown.
E getLast( )
Returns the element at the tail of the deque.
The object is not removed. If called on an empty deque, a NoSuchElementException is thrown.
boolean offerFirst(E obj)
Attempts to add obj to the head of the deque. Returns true if obj was added and false otherwise. Therefore, this method returns false when an attempt is made to add obj to a full, capacity-restricted deque.
boolean offerLast(E obj)
Attempts to add obj to the tail of the deque. Returns true if obj was added and false otherwise. Therefore, this method returns false when an attempt is made to add obj to a full, capacity-restricted deque.
E peekFirst( )
Returns the element at the head of the deque. The object is not removed. Returns null if called on an empty deque.
E peekLast( )
Returns the element at the tail of the deque. The object is not removed. Returns null if called on an empty deque.
E pollFirst( )
Returns the element at the head of the deque, removing the element in the process. Returns null if called on an empty deque.
E pollLast( )
Returns the element at the tail of the deque, removing the element in the process. It returns null if called on an emtpy deque.
E pop( )
Returns the element at the head of the deque, remov- ing it in the process. If called on an empty deque, a NoSuchElementException is thrown.
void push(E obj)
Adds obj to the head of the deque. It throws an IllegalStateException if a capacity-restricted deque is out of space.
E removeFirst( )
Returns the element at the head of the deque, removing the element in the process. If called on an empty deque, a NoSuchElementException is thrown.

944 chapter 25 Using the Data Structures in the Collections Framework
Table 25-6: The Methods Declared by Deque (Continued)
Method
Description
boolean removeFirstOccurrence(Object obj)
Searches for the first instance of obj. If found, the ele- ment is removed. Returns true if successful and false if the deque did not contain obj.
E removeLast( )
Returns the element at the tail of the deque, removing the element in the process. If called on an empty deque, a NoSuchElementException is thrown.
boolean removeLastOccurrence(Object obj)
Searches for the last instance of obj. If found, the ele- ment is removed. Returns true if successful and false if the deque did not contain obj.
an attempt to remove an element from an empty deque. Methods such as removeFirst( ) and removeLast( ) throw a NoSuchElementException. Methods such as pollFirst( ) and pollLast( ) return null.
One other point: Notice the descendingIterator( ) method. It returns an iterator that returns elements in reverse order. In other words, it returns an iterator that moves from the end of the deque to the start.
1. The Collections Framework provides implementations of the standard data structures. True or False?
2. The Collections interface defines all the following methods: add( ), remove( ), clear( ), contains( ), isEmpty( ), iterator( ), size( ), toArray( ). True or False?
3. A List can store duplicates. True or False?
4. A Set can store duplicates. True or False?
the COLLeCtiOn CLaSSeS
The collection interfaces are implemented by several classes. Some of the classes pro- vide full implementations that can be used as-is. Others are abstract, providing partial implementations that are used as starting points for creating concrete collections. As a general rule, the collection classes are not synchronized.
Answers:
1. True.
2. True. It also defines several other methods.
3. True.
4. False.
progress Check

Java programming 945 The standard collection classes packaged in java.util are summarized in the
following table:
Class
Description
AbstractCollection
Implements parts of the Collection interface.
AbstractList
Extends AbstractCollection and implements parts of the List interface.
AbstractQueue
Extends AbstractCollection and implements parts of the Queue interface.
AbstractSequentialList
Extends AbstractList for use by a collection designed for sequential rather than random access of its elements.
AbstractSet
Extends AbstractCollection and implements parts of the Set interface.
ArrayList
Implements a dynamic array by extending AbstractList.
ArrayDeque
Implements a dynamic double-ended queue by extending AbstractCollection. It also implements the Deque interface.
EnumSet
Extends AbstractSet for use with enum elements.
HashSet
Implements a set stored in a hash table by extending AbstractSet.
LinkedHashSet
Extends HashSet to allow insertion-order iterations.
LinkedList
Implements a linked list by extending AbstractSequentialList. Also implements Deque.
PriorityQueue
Implements a priority-based queue by extending AbstractQueue.
TreeSet
Implements a set stored in a tree by extending AbstractSet. Also implements SortedSet.
The abstract classes, such as AbstractCollection, supply partial implementations that are completed by the concrete classes. EnumSet is a specialized collection that is used to store enum elements and is not examined here. The other concrete collection classes are described in the sections that follow.
Note: In addition to the collection classes just shown, java.util includes several legacy classes that also work with groups of data. These include Vector, Stack, and Hashtable. The legacy classes have been part of Java since the beginning. They are briefly described at the end of this chapter.
the arrayList Class
The ArrayList class extends AbstractList and implements the List interface. ArrayList is a generic class that has this declaration:
class ArrayList
Here, E specifies the type of objects that the list will hold.
ArrayList supports dynamic arrays that can grow as needed. In Java, standard arrays
are of a fixed length. After an array has been created, it cannot grow or shrink, which means that you must know in advance how many elements an array will hold. But some- times you may not know until run time precisely how large an array you need. To handle this situation, the Collections Framework defines ArrayList. In essence, an ArrayList

946 chapter 25 Using the Data Structures in the Collections Framework
is a variable-length array of object references. That is, an ArrayList can dynamically increase or decrease in size. Array lists are created with an initial size. When this size is exceeded, the collection is automatically enlarged. When objects are removed, the array can be shrunk. The elements in an ArrayList are accessed through an index.
ArrayList has the constructors shown here:
ArrayList( )
ArrayList(Collection col ) ArrayList(int initCapacity)
The first constructor creates an empty array list. The second constructor builds an array list that is initialized with the elements of the collection col. The third constructor creates an array list that has the initial capacity passed to initCapacity. The capacity is the size of the underlying array that is used to store the elements. In all cases, the capacity grows automatically as elements are added to an array list. The default initial capacity is 10.
The following program demonstrates ArrayList. An array list is created for objects of type Character, and then several characters are added to it. Then, various opera- tions are performed on the list. Although a collection can store only references, we can still add char literals to it because autoboxing automatically boxes them as Character objects.
// Demonstrate ArrayList.
import java.util.*;
class ArrayListDemo {
public static void main(String[] args) {
// Create an array list.
ArrayList al = new ArrayList();
System.out.println(“Initial size: ” + al.size());
// Add elements to the end of the list one at a time. al.add(‘A’);
Construct an ArrayList for characters.
al.add(‘B’); al.add(‘C’); al.add(‘D’); al.add(‘E’);
Add elements to the list.
System.out.println(“\nSize after additions: ” + al.size());
// Display the array list using its toString() representation. System.out.println(“Contents: ” + al);
// Now, add elements to middle of the list. // This will cause the array to expand. for(int i = 0; i < 3; i++) al.add(2, (char) ('x' + i)); System.out.println("\nSize after additions: " + al.size()); System.out.println("Contents: " + al); // Now, delete the elements just added. // This will cause the array to contract. for(int i = 0; i < 3; i++) al.remove(2); Remove an element. System.out.println("\nSize after deletions: " + al.size()); System.out.println("Contents: " + al); // Use set() to set the value at an index. for(int i=0; i < al.size(); i++) al.set(i, Character.toLowerCase(al.get(i))); Change an element. System.out.println("\nAfter changing to lowercase."); Java programming 947 System.out.println("Contents: " + al); // Find and remove a value int idx = al.indexOf('d'); if(idx >= 0) al.remove(idx);
System.out.println(“\nAfter finding and removing d.”); System.out.println(“Contents: ” + al);
// Empty the list.
al.clear();
System.out.println(“\nAfter clearing the list.”);
Find the index of a value.
Remove all elements in the list.
System.out.println(“Contents: ” +
// Add the digits 0 through 9 for(int i=0; i < 10; i++) al.add((char) ('0' + i)); // Display every other element. System.out.print("\nHere is every for(int i=0; i < al.size(); i+=2) al); other digit: "); System.out.print(al.get(i) + " "); } } Initial size: 0 Size after additions: 5 Contents: [A, B, C, D, E] Size after additions: 8 Contents: [A, B, z, y, x, C, D, E] Size after deletions: 5 Contents: [A, B, C, D, E] After changing to lowercase. Contents: [a, b, c, d, e] The output from this program is shown here: 948 chapter 25 Using the Data Structures in the Collections Framework After finding and removing d. Contents: [a, b, c, e] After clearing the list. Contents: [] Here is every other digit: 0 2 4 6 8 Notice that al starts out empty and its size increases as elements are added to it. When elements are removed, its size is reduced. Because ArrayList implements a dynamic array, its elements can be accessed through an index. This is demonstrated by the use of the index forms of add( ), remove( ), get( ), and set( ). For example, consider this line from the program: al.set(i, Character.toLowerCase(al.get(i))); It uses get( ) to obtain the character at the specified index and then uses set( ) to store the lowercase version of that character back into the same location. Also notice that the non-index form of add( ) simply puts new elements on the end of the array. In the example, notice that the contents of a collection are displayed using the default conversion provided by toString( ), which was inherited from AbstractCollection. The toString( ) conversion is very convenient when experimenting with the col- lections because it gives you an easy way to see their contents. Of course, you can also display the elements of a collection individually, using a loop, as the last line of output does. Although the capacity of an ArrayList object increases automatically as objects are stored in it, you can increase the capacity of an ArrayList object manually by calling ensureCapacity( ). You might want to do this if you know in advance that you will be storing many more items in the collection than it can currently hold. By increasing its capacity once, at the start, you can prevent several reallocations later. Because reallocations are costly in terms of time, preventing unnecessary ones improves performance. The ensureCapacity( ) method is shown here: void ensureCapacity(int cap) Here, cap specifies the new minimum capacity of the collection. Conversely, if you want to reduce the capacity of an ArrayList object so that it fits the number of items that it is currently holding, call trimToSize( ), shown here: void trimToSize( ) the LinkedList Class The LinkedList class extends AbstractSequentialList and implements the List and Deque interfaces. It provides a doubly linked list data structure. LinkedList is a generic class that has this declaration: class LinkedList

Java programming 949 Here, E specifies the type of objects that the list will hold. LinkedList has the two
constructors shown here: LinkedList( )
LinkedList(Collection col )
The first constructor creates an empty linked list. The second constructor builds a linked list that is initialized with the elements of the collection col.
Because LinkedList implements the Deque interface, you have access to the methods defined by Deque. For example, to add elements to the start of a list, you can use addFirst( ) or offerFirst( ). To add elements to the end of the list, use addLast( ) or offerLast( ). To obtain the first element, you can use getFirst( ) or peekFirst( ). To obtain the last element, use getLast( ) or peekLast( ). To remove the first element, use removeFirst( ) or pollFirst( ). To remove the last element, use removeLast( ) or pollLast( ). Of course, you also have access to all of the functionality provided by List, such as the ability to access the list via an index or to obtain a sublist.
The following program demonstrates several features of LinkedList: // Demonstrate LinkedList.
import java.util.*;
class LinkedListDemo {
public static void main(String[] args) {
// Create a linked list.
LinkedList ll = new LinkedList();
// Add elements to the linked list. ll.add(‘B’);
ll.add(‘E’);
ll.add(‘F’);
System.out.println(“Original contents: ” + ll);
// Demonstrate addLast() and addFirst().
ll.addLast(‘G’);
ll.addFirst(‘A’);
System.out.println(“\nAfter calls to addFirst() and addLast().”); System.out.println(“Contents: ” + ll);
// Add elements at an index.
ll.add(2, ‘D’);
ll.add(2, ‘C’); System.out.println(“\nAfter insertions.”); System.out.println(“Contents: ” + ll);
// Display first and last elements.
System.out.println(“\nHere are the first and last elements: ” +
ll.getFirst() + ” ” + ll.getLast());
Add elements to the end and beginning of the list.
Add elements at a specific index.
Obtain the elements at the beginning and end of the list.

950 chapter 25 Using the Data Structures in the Collections Framework
// Create a sublist view.
List sub = ll.subList(2, 5); System.out.println(“\nContents of sublist view: ” + sub);
// Create a new list that contains the sublist LinkedList ll2 = new LinkedList(sub);
// Remove the elements in ll2 from ll.
System.out.println(“Contents: ” + ll);
// Remove first and last elements.
Obtain a view of a sublist.
ll.removeAll(ll2);
Remove all elements in ll2 from l1. System.out.println(“\nAfter removing ll2 from ll.”);
ll.removeFirst(); ll.removeLast();
Remove the first and last elements.
System.out.println(“\nAfter deleting first and last element: “); System.out.println(“Contents: ” + ll);
// Get and set a value through an index. ll.set(0, Character.toLowerCase(ll.get(0)));
System.out.println(“\nAfter change: ” + ll); }
Change a value.
}
Original contents: [B, E, F]
After calls to addFirst() and addLast(). Contents: [A, B, E, F, G]
After insertions.
Contents: [A, B, C, D, E, F, G]
Here are the first and last elements: A G Contents of sublist view: [C, D, E]
After removing ll2 from ll. Contents: [A, B, F, G]
After deleting first and last element: Contents: [B, F]
After change: [b, F]
The output from this program is shown here:
As the program shows, because LinkedList implements the List interface, calls to add( ) append items to the end of the list, as do calls to addLast( ). To insert items at a specific location, use the add(int, E) form of add( ), as illustrated by the

Java programming 951
call to add(2, ‘D’) in the example. The removeFirst( ) and removeLast( ) methods give you an easy way to remove the first or last element without having to specify an index.
Notice how a portion of ll is obtained by calling sublist( ). Recall that sublist( ) returns a “view” that uses the list upon which it is called. However, in a List, this view is invalidated if any changes in the size of the underlying collection occur. This is why a new LinkedList must be created that contains the elements in sub before removeAll( ) can be used to delete those elements from ll. If you were to try to call removeAll( ), using sub directly, as shown here:
ll.removeAll(sub); // Wrong!
it would throw an exception because the size of ll would change during the removal process, thus invalidating the view.
Try This 25-1 Collection Views Versus Arrays Obtained from a Collection
ViewAndArrayDemo.java
As you have seen, several of the interfaces in the Collections Framework have methods that return a collection that uses the same underlying data structure as the original collection. As explained, this is called a view of the collection. The subList( ) method in the List interface is an example of such a method. Because a view is not independent of the underlying collection, changing one will change the other. It was also explained that the array returned by the toArray( ) method in the Collection interface is independent of the collection. This means that it provides its own storage for the collection elements, rather than using a view of the collection. Thus, changes to it do not affect the collection. In this project, you will write a small program that verifies this key difference between a view of a collection and an array generated from a collection.
STEp-by-STEp
1. Create a new file called ViewAndArrayDemo.java and enter the following code:
import java.util.*;
public class ViewAndArrayDemo {
public static void main(String[] args) {
LinkedList list = new LinkedList();
list.add(“A”); list.add(“B”);

952 chapter 25 Using the Data Structures in the Collections Framework
list.add(“C”); list.add(“D”);
String[] array = list.toArray(new String[4]); List sublist = list.subList(0,4);
Initially we construct a simple LinkedList of strings containing “A”, “B”, “C”, and “D”. Then we call toArray( ), which returns an array containing the same strings as the list. Next we call subList( ), which returns a list also containing the same strings as the original list. Now we are ready to verify the difference between array and sublist as they relate to the original list.
2. Add the following code to complete the ViewAndArrayDemo.java file:
array[1] = “F”; sublist.set(2,”O”); System.out.println(list);
} }
The first line changes the second string in array to “F”, and the second line changes the third string in sublist to “O”. The last line displays the original list, so that we can see whether the changes to array or to sublist affect the original list.
3. Compile and run the ViewAndArrayDemo program. You will see the fol- lowing output:
[A, B, O, D]
This output shows that changing the array did not change the original list, verifying the fact that the array is independent of the list. However, chang- ing sublist (the view) caused a corresponding change to the original list. This verifies the fact that the view uses the same underlying data structure as the original list. In other words, that sublist is just a different “view”
of the original list. In summary, it is important to understand the difference between a view of a collection and an array obtained from a collection. Different effects occur when one is changed.
the hashSet Class
HashSet extends AbstractSet and implements the Set interface. It creates a collection that uses a hash table for storage. HashSet is a generic class that has this declaration:
class HashSet
Here, E specifies the type of objects that the set will hold.
As explained earlier in this chapter, a hash table stores information by using a
mechanism called hashing. In hashing, the informational content of a key is used to determine a unique value, called its hash code. The hash code is then used as a form of index that is used to locate the data associated with the key. When using HashSet,

Java programming 953
the transformation of the key into its hash code is performed automatically—you don’t need to compute the hash code yourself. The advantage of hashing is that it allows the execution time of add( ), contains( ), remove( ), and size( ) to remain constant even for large sets.
HashSet has the following constructors:
HashSet( )
HashSet(Collection col) HashSet(int initCapacity)
HashSet(int initCapacity, float fillRatio)
The first constructor creates an empty hash set. The second form initializes the hash set by using the elements of col. The third form initializes the initial capacity of the hash set to initCapacity. The default initial capacity is 16. The fourth form initializes both the initial capacity and the fill ratio (also called the load factor) of the hash set from its arguments. The fill ratio should be between 0.0 and 1.0, and it determines how full the hash set can be before it is resized upward. Specifically, when the number of elements is greater than the capacity of the hash set multiplied by its fill ratio, the hash set is expanded. For constructors that do not take a fill ratio, 0.75 is used.
It is important to note that HashSet does not store its elements in any specific order, because the process of hashing doesn’t lend itself to the creation of sorted sets. If you need sorted storage, then another collection, such as TreeSet, is a better choice.
Here is an example that demonstrates HashSet: // Demonstrate HashSet.
import java.util.*;
class HashSetDemo {
public static void main(String[] args) {
// Create a hash set.
HashSet hs = new HashSet();
// Add elements to the hash set. hs.add(‘A’);
hs.add(‘B’);
hs.add(‘C’);
hs.add(‘D’);
System.out.println(“Original contents: ” + hs);
// Add more elements.
hs.add(‘E’);
hs.add(‘F’);
hs.add(‘G’);
hs.add(‘H’);
System.out.println(“\nContents after additions: ” + hs);
// Delete E and H. hs.remove(‘E’);

954 chapter 25 Using the Data Structures in the Collections Framework hs.remove(‘H’);
System.out.println(“\nContents after deleting E and H: ” + hs);
// Add E back in.
hs.add(‘E’);
System.out.println(“\nContents after adding E: ” + hs);
// Add a collection of elements to hash set. ArrayList al = new ArrayList(); al.add(‘X’);
al.add(‘Y’);
al.add(‘Z’); hs.addAll(al);
System.out.println(“\nContents after adding collection: ” + hs); }
}
The following is the output from this program:
Original contents: [D, A, B, C]
Contents after additions: [D, E, F, G, A, B, C, H]
Contents after deleting E and H: [D, F, G, A, B, C]
Contents after adding E: [D, E, F, G, A, B, C]
Contents after adding collection: [D, E, F, G, A, B, C, Y, X, Z]
Pay special attention to the ordering of the elements. As explained, HashSet does not store its elements in any particular order. Instead, the order is related to the hash code of each element. Even when the contents of al (an ArrayList) are added to hs, the elements are not ordered in the same sequence.
Before leaving this example, an important point needs to be emphasized. HashSet (and any collection that implements the Set interface) cannot contain duplicate ele- ments. Therefore, if you added these lines to the end of the program:
hs.add(‘Q’); hs.add(‘Q’);
only one Q would be added to the set. The second call would fail and return false. the treeSet Class
TreeSet extends AbstractSet and implements the NavigableSet interface. It creates a collection that uses a form of balanced, sorted binary tree for storage. Objects are stored in sorted, ascending order. Access and retrieval times are quite fast, which makes TreeSet an excellent choice when storing large amounts of sorted information that must be found quickly. TreeSet is a generic class that has this declaration:
class TreeSet

Here, E specifies the type of objects that the set will hold. TreeSet has the following constructors:
TreeSet( )
TreeSet(Collection col) TreeSet(Comparator comp) TreeSet(SortedSet ss)
The first form creates an empty tree set that will be sorted in ascending order. The second form builds a tree set that contains the elements of col. The third form creates an empty tree set that will be sorted according to the comparator specified by comp. (Comparators are described later in this chapter.) The fourth form builds a tree set that contains the elements of ss.
Here is an example that demonstrates a TreeSet, comparing it to HashSet. It cre- ates an array that holds characters in unsorted order. These elements are then added to a HashSet and then to a TreeSet. In the hash set, the order of the elements will be indeterminate. However, the TreeSet will sort them as it builds the tree.
// A TreeSet creates a sorted tree.
import java.util.*;
class TreeSetDemo {
public static void main(String[] args) {
char[] chrs = { ‘V’, ‘J’, ‘L’, ‘E’, ‘T’, ‘Q’, ‘C’, ‘P’ };
// Create a tree set and a hash set. TreeSet ts = new TreeSet(); HashSet hs = new HashSet();
System.out.print(“Contents of chrs: “); for(char ch : chrs)
System.out.print(ch + ” “); System.out.println();
// First, add the characters to the hash set. for(char ch : chrs)
hs.add(ch);
System.out.println(“Contents of hash set: ” + hs);
// Next, add the characters to the tree set. for(char ch : chrs)
ts.add(ch);
System.out.println(“Contents of tree set: ” + ts); }
}
Java programming 955

956 chapter 25 Using the Data Structures in the Collections Framework The output from this program is shown here:
Contentsofchrs: V J L E T Q CP Contents of hash set: [T, E, V, Q, P, C, L, J] Contents of tree set: [C, E, J, L, P, Q, T, V]
As you can see, the elements in the tree set are stored in sorted order.
Because TreeSet implements the NavigableSet interface, you can use the methods defined by NavigableSet to retrieve elements of a TreeSet. For example, assuming the preceding program, the following statement uses subSet( ) to obtain a subset of ts that contains the elements between C (inclusive) and p (exclusive). It then displays
the resulting set.
System.out.println(ts.subSet(‘C’, ‘P’));
The output from this statement is shown here:
[C, E, J, L]
You might want to experiment with the other methods defined by NavigableSet. the LinkedhashSet Class
The LinkedHashSet class extends HashSet and adds no members of its own. It is a generic class that has this declaration:
class LinkedHashSet
Here, E specifies the type of objects that the set will hold. Its constructors parallel those in HashSet.
Like HashSet, LinkedHashSet uses a hash table to store elements. However, it also overlays a doubly linked list of the entries in the set, linking in the order in which they were inserted. This allows insertion-order iteration over the set. That is, when cycling through a LinkedHashSet using an iterator or a for-each for, the ele- ments will be returned in the order in which they were inserted. This is also the order in which they are contained in the string returned by toString( ) when called on a LinkedHashSet object.
The following demonstrates the differences between Set implementations by adding LinkedHashSet to the preceding example.
// LinkedHashSet compared with HashSet and TreeSet.
import java.util.*;
class SetsDemo {
public static void main(String[] args) {
char[] chrs = { ‘V’, ‘J’, ‘L’, ‘E’, ‘T’, ‘Q’, ‘C’, ‘P’ };
// Create all three sets.
TreeSet ts = new TreeSet(); HashSet hs = new HashSet(); LinkedHashSet lhs = new LinkedHashSet();

System.out.print(“Contents of chrs: for(char ch : chrs)
System.out.print(ch + ” “); System.out.println();
// First, add the characters to the hash set. for(char ch : chrs)
hs.add(ch); System.out.println(“Contents of hash set:
// Next, add the characters to the tree set. for(char ch : chrs)
ts.add(ch); System.out.println(“Contents of tree set:
“);
// Finally, add the characters to the linked hash set. for(char ch : chrs)
lhs.add(ch);
System.out.println(“Contents of linked hash set: ” + lhs); }
V J L E T Q C P [T, E, V, Q, P, C, L, J] [C, E, J, L, P, Q, T, V] [V, J, L, E, T, Q, C, P]
}
The output is shown here:
Contents of chrs:
Contents of hash set: Contents of tree set: Contents of linked hash set:
Java programming 957
” + hs);
” + ts);
Notice that in the linked hash set, the order reflects the order in which elements were added.
the arrayDeque Class
The ArrayDeque class extends AbstractCollection and implements the Deque interface. ArrayDeque creates a dynamic array that will grow as needed. Because ArrayDeque implements Deque, it can be used to support both queues and stacks. ArrayDeque is a generic class that has this declaration:
class ArrayDeque
Here, E specifies the type of objects stored in the collection.
ArrayDeque defines the following constructors:
ArrayDeque( )
ArrayDeque(int initCapacity) ArrayDeque(Collection col )

958 chapter 25 Using the Data Structures in the Collections Framework
The first form creates an empty deque. Its starting capacity is 16. The second constructor builds a deque that has the initial capacity passed in initCapacity. The third constructor creates a deque that is initialized with the elements of the collection passed in col. In all cases, the capacity grows as needed to handle the elements added to the deque.
Because ArrayDeque implements Deque, it can be used as either a queue or a stack. Recall that Deque specifies the traditional stack methods called push( ) and pop( ). By using these methods, you can make an ArrayDeque work in a stack-like manner. By using methods such as offerLast( ) and pollFirst( ), an ArrayDeque will work like a FIFO queue. The following program demonstrates the use of an ArrayDeque both as a stack and as a queue.
// Demonstrate ArrayDeque.
// First the use the deque as as a stack. // Then, use it as a FIFO queue.
import java.util.*;
class ArrayDequeDemo {
public static void main(String[] args) {
// Create an array deque.
ArrayDeque adq = new ArrayDeque();
System.out.println(“Using adq as a stack.”); // Use adq like a stack. System.out.print(“Pushing: “);
// push items on the stack
for(char ch = ‘A’; ch <= 'Z'; ch++) { adq.push(ch); System.out.print(ch); } System.out.println(); // now, pop them off System.out.print("Popping: "); while(adq.peek() != null) System.out.print(adq.pop()); System.out.println("\n"); System.out.println("Using adq as a FIFO queue."); // Now, use adq as a FIFO queue. System.out.print("Queueing: "); for(char ch = 'A'; ch <= 'Z'; ch++) { adq.offerLast(ch); System.out.print(ch); } Use adq as a stack. Now, use adq as a queue. System.out.println(); // now, remove them System.out.print("Removing: "); while(adq.peek() != null) System.out.print(adq.pollFirst()); } } Using adq as a stack. Pushing: ABCDEFGHIJKLMNOPQRSTUVWXYZ Popping: ZYXWVUTSRQPONMLKJIHGFEDCBA Using adq as a FIFO queue. Queueing: ABCDEFGHIJKLMNOPQRSTUVWXYZ Removing: ABCDEFGHIJKLMNOPQRSTUVWXYZ As the output shows, through the use of push( ) and pop( ), stack-like behavior is achieved. When offerLast( ) and pollFirst( ) is used, a first-in, first-out queue is implemented. the priorityQueue Class priorityQueue extends AbstractQueue and implements the Queue interface. It cre- ates what is, essentially, a sorted queue, with the sort order indicating the priority. The head of the queue contains the highest priority element, and the tail contains the lowest priority element. priorityQueue is a generic class that has this declaration: class PriorityQueue
Here, E specifies the type of objects stored in the queue. priorityQueues are dynamic, growing as necessary.
priorityQueue defines the several constructors. Here are three of them:
PriorityQueue( )
PriorityQueue(int initCapacity)
PriorityQueue(int initCapacity, Comparator comp)
The first form creates an empty queue. Its starting capacity is 11. The second con- structor builds a queue that has the initial capacity passed to initCapacity. The third constructor creates a queue with the specified initial capacity and comparator. Other constructors create queues that are initialized with the elements of another collection.
If no comparator is specified when a priorityQueue is constructed, then the queue is sorted according to its natural ordering. Thus, by default the head of the queue will be the smallest value. However, by providing a comparator, you can specify a differ- ent ordering scheme. For example, when storing items that include a time stamp, you could prioritize the queue such that the oldest items are first in the queue.
One word of caution: although you can iterate through a priorityQueue using an iterator or a for-each for loop, the order of that iteration is undefined. To properly use a priorityQueue, you must call methods such as offer( ) and poll( ), which are defined by the Queue interface.
Java programming 959
The output is shown here:

960 chapter 25 Using the Data Structures in the Collections Framework
progress Check
1. An ArrayList differs from an array in that _________________. 2. A priorityQueue is a queue in which __________________.
3. The LinkedList class can be used as a stack. True or False?
4. HashSet uses a _________ __________ to store its elements.
aCCeSSing a COLLeCtiOn via an iteratOr
Often, you will want to cycle through the elements in a collection. For example, you might want to display each element. One way to do this is to employ an iterator, which is an object that implements either the Iterator or the ListIterator interface. Iterator enables you to cycle through a collection, obtaining or removing elements. ListIterator extends Iterator to allow bidirectional traversal of a list and the modification of ele- ments. Iterator and ListIterator are generic interfaces that are declared as shown here:
interface Iterator
interface ListIterator
Here, E specifies the type of objects being iterated.
The Iterator interface specifies the methods shown in Table 25-7. The methods
specified by ListIterator are shown in Table 25-8. (The ones inherited from Iterator are also shown to clarify their behavior relative to a ListIterator.) Notice that both Iterator and ListIterator let you remove an element from the collection being iter- ated by calling remove( ). In ListIterator, the methods add( ) and set( ) let you change the collection that is being iterated. Understand, however, that operations that modify the underlying collection are optional. For example, remove( ) will throw an UnsupportedOperationException when used with a read-only collection.
When using an Iterator, you need to be careful about the order in which you call remove( ). A call to remove( ) that is not preceded by a call to next( ) will result in an IllegalStateException being thrown. The same thing applies to ListIterator. If remove( ) is not preceded by a call to either next( ) or previous( ), or if the col- lection being iterated was changed by an intervening call to add( ) or remove( ), then an IllegalStateException is thrown.
Using an iterator
Before you can access a collection through an iterator, you must obtain one. Each of the collection classes provides an iterator( ) method that returns an iterator to the start of the collection. By using this iterator, you can access each element in the collection,
Answers:
1. it uses get( ) and set( ) methods, among others, to access the array instead of using bracket notation, and it is dynamically resizeable.
2. elements have priorities, and the element of highest priority is at the head of the queue. Thus, it is the next one removed.
3. True. It has push( ) and pop( ) methods that make it easy to use as a stack.
4. hash table

Java programming 961
TABLE 25-7: The Methods Declared by Iterator
Method
Description
boolean hasNext( )
Returns true if there is a next element. Otherwise, returns false.
E next( )
Returns the next element. If there are no more elements, NoSuchElementException is thrown.
void remove( )
Removes the element returned by next( ) from the collection being iterated.
TABLE 25-8: The Methods Declared by ListIterator
Method
Description
void add(E obj)
Adds obj to the collection in front of the element that will be returned by the next call to next( ).
boolean hasNext( )
Returns true if there is a next element. Otherwise, returns false. This method is used when moving forward.
boolean hasPrevious( )
Returns true if there is a previous element. Otherwise, returns false. This method is used when moving backwards.
E next( )
Returns the next element in the forward direction. If there are no more elements in that direction, NoSuchElementException is thrown.
int nextIndex( )
Returns the index of the next element in the forward direction.
If there is not a next element, the size of the collection being iterated is returned.
E previous( )
Returns the previous element, which is the next element in the backwards direction. If there are no more elements in that direction, NoSuchElementException is thrown.
int previousIndex( )
Returns the index of the next element in the backward direction. If there is not a previous element, –1 is returned.
void remove( )
Removes the element returned by next( ) or previous( ) from the collection being iterated.
void set(E obj)
Assigns obj to the currently iterated element. This is the element last returned by a call to either next( ) or previous( ). This change affects the collection being iterated.
one element at a time. In general, to use an iterator to cycle through the contents of a collection, follow these steps:
1. Obtain an iterator to the start of the collection by calling the collection’s iterator( ) method.
2. Set up a loop that makes a call to hasNext( ). Have the loop iterate as long as hasNext( ) returns true.
3. Within the loop, obtain each element by calling next( ).
For collections that implement List, you can also obtain an iterator by calling listIterator( ). As explained, a list iterator gives you the ability to access the collection in either the forward or backward direction and lets you change or add an element to the collection being iterated. Otherwise, ListIterator is used like Iterator.
The following example implements these steps, demonstrating both the Iterator and ListIterator interfaces. It uses an ArrayList of strings, but the general principles

962 chapter 25 Using the Data Structures in the Collections Framework
apply to any type of collection that supports iterators. Notice how the underlying
collection is modified by the use of remove( ), add( ), and set( ). // Demonstrate both Iterator and ListIterator.
import java.util.*;
class IteratorDemo {
public static void main(String[] args) {
// Create a list of strings.
ArrayList al = new ArrayList();
// Add entries to the array list. al.add(“Alpha”);
al.add(“Beta”);
al.add(“Gamma”);
al.add(“Delta”); al.add(“Epsilon”); al.add(“Zeta”); al.add(“Eta”);
// First, use Iterator.
// Use Iterator to display the contents of the list. System.out.print(“Original contents: “);
Iterator itr = al.iterator(); Obtain an iterator. while(itr.hasNext())
System.out.print(itr.next() + ” “); System.out.println();
// Use Iterator to remove Gamma from the list. itr = al.iterator();
while(itr.hasNext()) {
Check for a next element. Obtain the next element.
if(itr.next().equals(“Gamma”)) itr.remove();
}
Use an iterator to remove an element.
System.out.print(“Contents after deletion: “); itr = al.iterator();
while(itr.hasNext())
System.out.print(itr.next() + ” “); System.out.println();
// Now, use ListIterator.
if(litr.next().equals(“Beta”)) litr.add(“Gamma”);
// Use ListIterator to add Gamma back to the list. ListIterator litr = al.listIterator(); while(litr.hasNext()) {
Obtain a list iterator. Add an element using the list iterator.
}

System.out.print(“Contents after addition: “); litr = al.listIterator(); while(litr.hasNext())
System.out.print(litr.next() + ” “); System.out.println();
// Use ListIterator to modify the objects being iterated. String str;
litr = al.listIterator();
while(litr.hasNext()) {
str = litr.next();
if(str.equals(“Eta”)) litr.set(“Omega”);
else if(str.equals(“Zeta”)) litr.set(“Psi”);
else if(str.equals(“Epsilon”)) litr.set(“Chi”);
else if(str.equals(“Delta”)) litr.set(“…”);
}
System.out.print(“Contents after changes: “); litr = al.listIterator(); while(litr.hasNext())
System.out.print(litr.next() + ” “); System.out.println();
// Use ListIterator to display the list backwards. System.out.print(“Modified list backwards: “); while(litr.hasPrevious()) {
System.out.print(litr.previous() + ” “); }
System.out.println(); }
}
The output is shown here:
Use a list iterator to change an element.
Java programming 963
Display the list in reverse order.
Original contents: Alpha Beta Gamma Delta Epsilon Zeta Eta Contents after deletion: Alpha Beta Delta Epsilon Zeta Eta Contents after addition: Alpha Beta Gamma Delta Epsilon Zeta Eta Contents after changes: Alpha Beta Gamma … Chi Psi Omega Modified list backwards: Omega Psi Chi … Gamma Beta Alpha
At the end of the program, pay special attention to how the list is displayed in reverse. After the list is displayed in the forward direction, litr points to the end of the list. (Remember, litr.hasNext( ) returns false when the end of the list has been reached.) To traverse the list in reverse, the program continues to use litr, but this time it checks to see whether it has a previous element. As long as it does, that element is obtained and displayed.

964 chapter 25 Using the Data Structures in the Collections Framework the For-each alternative to iterators
If you won’t be modifying the contents of a collection or obtaining elements in reverse order, then the for-each version of the for loop is often a more convenient alternative to cycling through a collection than is using an iterator. Recall that the for-each for can cycle through any collection of objects that implement the Iterable interface. Because all of the collection classes implement this interface, they can all be operated upon by the for-each for.
For example, assuming the ArrayList called al in the previous example, the fol- lowing for loop displays its contents:
for(String s : al) System.out.println(s);
As you can see, the for loop is substantially shorter and simpler to use than the iterator-based approach. However, it can only be used to cycle through a collection in the forward direction, and you can’t modify the contents of the collection.
1. The two methods in the Iterator interface that are used for stepping through the elements of a Collection are ___________ and ____________.
2. For collections that implement List, a ListIterator is an Iterator that allows you to step forward and backward through the collection and change the values in the collection. True or False?
wOrking with MapS
As it relates to the Collections Framework, a map stores associations between keys and values, or key/value pairs. Given a key, you can find its value. There is one aspect to maps that is important to mention at the outset: they don’t implement the Iterable interface. This means that you cannot cycle through a map using a for-each style for loop. Furthermore, you can’t obtain an iterator to a map. However, as you will soon see, you can obtain a collection-view of a map, which does allow the use of either the for loop or an iterator.
the Map interfaces
Because the map interfaces define the character and nature of maps, this discussion of maps begins with them. The following interfaces in java.util support maps:
Answers:
1. hasNext( ) and next( ) 2. True.
progress Check

Java programming 965
Interface
Description
Map
Maps unique keys to values.
Map.Entry
Encapsulates an element (a key/value pair) in a map.
NavigableMap
Extends SortedMap to handle the retrieval of entries based on how close one key is to another.
SortedMap
Extends Map so that the keys are maintained in ascending order.
Each interface is examined in turn.
The Map Interface
The Map interface maps unique keys to values. A key is an object that you use to retrieve a value. Given a key and a value, you can store the value in a Map. After the value is stored, you can retrieve it by using its key. Map is generic and is declared as shown here:
interface Map
Here, K specifies the type of keys, and V specifies the type of values. The methods declared by Map are summarized in Table 25-9.
At the foundation of Map are two basic operations: get( ) and put( ). To put a value into a map, use put( ), specifying the key and the value. To obtain a value, call get( ), passing the key as an argument. The value is returned. These two methods sat- isfy the essences of the map contract: storing a key/value pair and returning the value when given the key.
As mentioned earlier, although maps are part of the Collections Framework, they do not implement the Collection interface. However, you can obtain a collection-view of a map. To do this, you can use the entrySet( ) method. It returns a Set that contains the elements in the map. To obtain a collection-view of the keys, use keySet( ). To get a collection-view of the values, use values( ). For all three collection-views, the col- lection-views refer to the elements in the original map. Changing one affects the other. You cannot, however, add an entry to the map through the view. Collection-views are the means by which maps are integrated into the larger Collections Framework.
Finally, notice the methods containsKey( ) and containsValue( ). These let you search a map for a specific key or value, respectively.
The SortedMap Interface
The SortedMap interface extends Map. It stores entries in ascending order based on
the keys. SortedMap is generic and is declared as shown here: interface SortedMap
Here, K specifies the type of keys, and V specifies the type of values. The methods added by SortedMap are summarized in Table 25-10.
Notice that SortedMap provides methods that enable you to work with submaps, (in other words, subsets of a map). To obtain a submap, use headMap( ), tailMap( ), or subMap( ). Because the map is sorted, these methods let you specify a range of

966 chapter 25 Using the Data Structures in the Collections Framework
TABLE 25-9: The Methods Declared by Map
Method
Description
void clear( )
Empties the invoking map by deleting all key/value pairs.
boolean containsKey(Object k)
Returns true if the invoking map contains k as a key. Otherwise, returns false.
boolean containsValue(Object v)
Returns true if the invoking map contains v as a value. Otherwise, returns false.
Set> entrySet( )
Returns a Set that includes all of the entries in the invoking map as objects of type Map.Entry.
The resulting collection is a view of the invoking map.
boolean equals(Object obj)
Returns true if obj is a Map and contains the same entries as the invoking Map. Otherwise, returns false.
V get(Object k)
Returns the value associated with the key k in the invoking map. Returns null if the key is not found.
int hashCode( )
Returns the invoking map’s hash code.
boolean isEmpty( )
Returns true if the invoking map is empty. Otherwise, returns false.
Set keySet( )
Returns a Set that includes all of the keys in the invoking map. The resulting collection is a view of the invoking map.
V put(K k, V v)
Puts an entry in the invoking map, overwriting any pre- vious value associated with the key. The key and value are k and v, respectively. Returns null if the key did not already exist. Otherwise, the previous value is returned.
void putAll(Map map)
Puts all the entries from map into the invoking map.
V remove(Object k)
Removes the entry whose key equals k in the invoking map. The value of the removed element is returned,
or if k is not in the map, null is returned.
int size( )
Returns the number of entries in the invoking map.
Collection values( )
Returns a collection that includes all of the values in the map. The resulting collection is a view of the invoking map.
entries to obtain based on the values of the keys they are passed. Be aware that the submaps returned by these methods are “views” and various restrictions apply.
Also notice that you can get the first key in the map by calling firstKey( ). To get the last key, call lastKey( ). Because the map is sorted, these are the smallest and largest keys in the map, respectively.
The NavigableMap Interface
The NavigableMap interface extends SortedMap. It declares the behavior of a map that supports the retrieval of an entry based on how close one key is to another. In other

Java programming 967
TABLE 25-10: The Methods Declared by SortedMap
Method
Description
Comparator comparator( )
Returns the invoking sorted map’s comparator. If no comparator is used, null is returned.
K firstKey( )
Returns the key with the smallest value. Since the map is sorted, this will be the first key in the invoking map. If called on an empty map, NoSuchElementException is thrown.
SortedMap headMap(K end )
Returns a SortedMap that includes those elements in the invoking map with keys that are less than end. The resulting map is a view of the invoking map.
K lastKey( )
Returns the key with the largest value. Since the map is sorted, this will be the last key in the invoking map. If called on an empty map, NoSuchElementException is thrown.
SortedMap subMap(K start, K end)
Returns a SortedMap that includes those elements in the invoking map that are between start and end–1. The resulting map is a view of the invoking map.
SortedMap tailMap(K start)
Returns a SortedMap that includes those elements in the invoking map that are greater than or equal to start. The resulting map is a view of the invoking map.
words, a NavigableMap lets you find an entry based on near matches. NavigableMap is a generic interface that has this declaration:
interface NavigableMap
Here, K specifies the type of the keys, and V specifies the type of values associ- ated with the keys. In addition to the methods that it inherits from SortedMap, NavigableMap adds those summarized in Table 25-11.
Pay special attention to the ceilingX and floorX methods. These methods search the map for a key that is close to another. For example, the ceilingEntry( ) and floorEntry( ) methods find an entry whose key is close to or equal to another key. Also notice the higherX and lowerX methods. These methods search the map for a key that is close, but not equal to another key. You can also obtain various submaps that are based on near matches.
The Map.entry Interface
The Map.Entry interface enables you to work with a map entry. Recall that the entrySet( ) method declared by the Map interface returns a Set containing the map entries. Each of these set elements is a Map.Entry object. Map.Entry is generic and is declared like this:
interface Map.Entry
Here, K specifies the type of keys, and V specifies the type of values.

968 chapter 25 Using the Data Structures in the Collections Framework
TABLE 25-11: The Methods Declared by NavigableMap
Method
Description
Map.Entry ceilingEntry(K obj)
Searches the map for the smallest key k such that k >= obj. If such a key is found, its entry is returned. Otherwise, null is returned.
K ceilingKey(K obj)
Searches the map for the smallest key k such that k >= obj. If such a key is found, it is returned. Otherwise, null is returned.
NavigableSet descendingKeySet( )
Returns a NavigableSet that includes all of the keys in the invoking map in reverse order. The resulting collection is a view of the invoking map.
NavigableMap descendingMap( )
Returns a NavigableMap that contains the entries in the invoking map in reverse order. The resulting map is a view of the invoking map.
Map.Entry firstEntry( )
Returns the first entry. Since the map is sorted, this will be the entry with the smallest key.
Map.Entry floorEntry(K obj)
Searches the map for the largest key k such that k <= obj. If such a key is found, its entry is returned. Otherwise, null is returned. K floorKey(K obj) Searches the map for the largest key k such that k <= obj. If such a key is found, it is returned. Otherwise, null is returned. NavigableMap
headMap(K upperBound, boolean incl)
Returns a NavigableMap that includes those ele- ments in the invoking map with keys that are less than upperBound. If incl is true, then an element equal to upperBound is included. The resulting map is a view of the invoking map.
Map.Entry higherEntry(K obj)
Searches the map for the smallest key k such that
k > obj. If such a key is found, its entry is returned. Otherwise, null is returned.
K higherKey(K obj)
Searches the set for the smallest key k such that k > obj. If such a key is found, it is returned. Otherwise, null is returned.
Map.Entry lastEntry( )
Returns the last entry. Since the map is sorted, this will be the entry with the largest key.
Map.Entry lowerEntry(K obj)
Searches the set for the largest key k such that
k < obj. If such a key is found, its entry is returned. Otherwise, null is returned. K lowerKey(K obj) Searches the set for the largest key k such that k < obj. If such a key is found, it is returned. Otherwise, null is returned. NavigableSet navigableKeySet( )
Returns a NavigableSet that includes all of the keys in the invoking map. The resulting set is a view of the invoking map.

Java programming 969
TABLE 25-11: The Methods Declared by NavigableMap (Continued)
Method
Description
Map.Entry pollFirstEntry( )
Returns the first entry, removing the entry in the process. Because the map is sorted, this is the entry with the smallest key value. If the map is empty, null is returned.
Map.Entry pollLastEntry( )
Returns the last entry, removing the entry in the process. Because the map is sorted, this is the entry with the largest key value. If the map is empty, null is returned.
NavigableMap subMap(K lowerBound,
boolean lowIncl, K upperBound, boolean highIncl)
Returns a NavigableMap that includes all entries from the invoking map that have keys that are greater than lowerBound and less than upperBound. If lowIncl is true, then a key equal to lowerBound is included. If highIncl is true, then an element equal to upperBound is included. The resulting map is a view of the invoking map.
NavigableMap
tailMap(K lowerBound, boolean incl)
Returns a NavigableMap that includes all entries from the invoking map that have keys that are greater than lowerBound. If incl is true, then a key equal to lowerBound is included. The resulting map is a view of the invoking map.
In addition to overrides of equals( ) and hashCode( ), Map.Entry specifies three methods that give you access to a map entry. They are shown here:
K getKey( )
V getValue( )
V setValue(V v)
As the names imply, for any given Map.Entry instance, getKey( ) returns its key and getValue( ) returns its value. You can set the value by calling setValue( ), passing in the new value.
the Map Classes
Several classes provide implementations of the map interfaces. The abstract class AbstractMap implements most of the Map interface. It is extended by several con- crete map classes. We will examine the following three:
Note: Other map classes include WeakHashMap, IdentifyHashMap, and EnumMap. Their use is specialized, and they are not examined here.
Class
Description
HashMap
Extends AbstractMap to use a hash table.
TreeMap
Extends AbstractMap to use a tree.
LinkedHashMap
Extends HashMap to allow insertion-order iterations.

970 chapter 25 Using the Data Structures in the Collections Framework The hashMap Class
The HashMap class extends AbstractMap and implements the Map interface. It uses a hash table to store the map. This allows the execution time of get( ) and put( ) to remain constant even for large data sets. HashMap is a generic class that has this declaration:
class HashMap
Here, K specifies the type of keys, and V specifies the type of values. The following constructors are defined:
HashMap( )
HashMap(Map map) HashMap(int initCapacity)
HashMap(int iniCapacity, float fillRatio)
The first constructor creates an empty hash map. The second constructor initializes the hash map by using the elements of map. The third constructor initializes the initial capacity of the hash map to initCapacity. The fourth constructor initializes both the initial capacity and fill ratio (load factor) of the hash map by using its arguments. The meaning of capacity and fill ratio is the same as for HashSet, described earlier. The default initial capacity is 16. The default fill ratio is 0.75.
You should note that a hash map does not store elements in a specific order. Furthermore, the order may change over the lifetime of the map. Therefore, the order in which elements are added to a hash map is not necessarily the order in which they will be obtained when iterating over a collection-view of the map.
The following program illustrates HashMap. It maps names to account balances. Notice how a collection-view is obtained and used.
import java.util.*;
class HashMapDemo {
public static void main(String[] args) {
// Create a hash map.
HashMap hm = new HashMap();
// Put elements to the map hm.put(“John Doe”, 3434.34); hm.put(“Tom Smith”, 123.22); hm.put(“Jane Baker”, 1378.00); hm.put(“Todd Hall”, 99.22); hm.put(“Ralph Smith”, -19.08);
Use put( ) to insert entries.
// Get a set of the entries.
Set> set = hm.entrySet();
// Display the set.
for(Map.Entry me : set) {
Obtain a set view of the entries.

System.out.print(me.getKey() + “: “); System.out.println(me.getValue());
} System.out.println();
// Deposit 1000 into John Doe’s account. double balance = hm.get(“John Doe”); hm.put(“John Doe”, balance + 1000);
System.out.println(“John Doe’s new balance: ” + hm.get(“John Doe”));
} }
Java programming 971 Display the keys
and values.
Output from this program is shown here (the precise order may vary):
Ralph Smith: -19.08 Tom Smith: 123.22 John Doe: 3434.34 Todd Hall: 99.22 Jane Baker: 1378.0
John Doe’s new balance: 4434.34
The program begins by creating a hash map and then adds the mapping of names to balances by calling put( ). Next, the contents of the map are displayed by using a collection-view, obtained by calling entrySet( ). The keys and values are displayed by calling the getKey( ) and getValue( ) methods that are defined by Map.Entry. Pay close attention to how the deposit is made into John Doe’s account. First, the current balance is obtained by calling get( ). Then, put( ) is called with the new balance. This automatically replaces any preexisting value that is associated with the specified key with the new value. Thus, after John Doe’s account is updated, the hash map will still contain just one “John Doe” account.
The treeMap Class
The TreeMap class extends AbstractMap and implements the NavigableMap interface. It creates maps stored in a tree structure. A TreeMap provides an effective means of storing key/value pairs in sorted order and allows rapid retrieval. You should note that, unlike a hash map, a tree map guarantees that its elements will be sorted in ascending key order. TreeMap is a generic class that has this declaration:
class TreeMap
Here, K specifies the type of keys, and V specifies the type of values.
The following TreeMap constructors are defined:
TreeMap( )
TreeMap(Comparator comp) TreeMap(Map map) TreeMap(SortedMap map)

972 chapter 25 Using the Data Structures in the Collections Framework
The first constructor creates an empty tree map. The second constructor builds a tree map that will be sorted by using the Comparator specified by comp. The third con- structor initializes a tree map with the entries from map, in sorted order. The fourth constructor initializes a tree map with the entries from map, which will be sorted in the same order as map.
The following program reworks the preceding example so that it uses TreeMap: import java.util.*;
class TreeMapDemo {
public static void main(String[] args) {
// Create a tree map.
TreeMap tm = new TreeMap();
// Put elements to the map. tm.put(“John Doe”, 3434.34); tm.put(“Tom Smith”, 123.22); tm.put(“Jane Baker”, 1378.00); tm.put(“Todd Hall”, 99.22); tm.put(“Ralph Smith”, -19.08);
// Get a set of the entries.
Set> set = tm.entrySet();
// Display the elements. for(Map.Entry me : set) {
System.out.print(me.getKey() + “: “);
System.out.println(me.getValue()); }
System.out.println();
// Deposit 1000 into John Doe’s account. double balance = tm.get(“John Doe”); tm.put(“John Doe”, balance + 1000);
System.out.println(“John Doe’s new balance: ” + tm.get(“John Doe”));
} }
The following is the output from this program:
Jane Baker: 1378.0 John Doe: 3434.34 Ralph Smith: -19.08 Todd Hall: 99.22 Tom Smith: 123.22
John Doe’s current balance: 4434.34

Java programming 973
Notice that TreeMap sorts the entries based on the keys. However, in this case, they are sorted beginning with the first name instead of the last name. You can alter this behavior by specifying a comparator when the map is created, as described shortly.
The LinkedhashMap Class
LinkedHashMap extends HashMap. It is similar to HashMap in that its entries are stored in a hash table. However, it also overlays a doubly linked list onto the entries. Unless specified otherwise, the order of the entries in the list is the same as the order in which they were inserted. This allows insertion-order iteration over the map. That is, when iterating through a collection-view of a LinkedHashMap, the elements will be returned in the order in which they were inserted. You can also cre- ate a LinkedHashMap that returns its elements in the order in which they were last accessed.
LinkedHashMap is a generic class that has this declaration: class LinkedHashMap
Here, K specifies the type of keys, and V specifies the type of values. LinkedHashMap defines the following constructors:
LinkedHashMap( )
LinkedHashMap(Map map) LinkedHashMap(int initCapacity)
LinkedHashMap(int initCapacity, float fillRatio)
LinkedHashMap(int initCapacity, float fillRatio, boolean orderByAccess)
The first constructor creates an empty map. The second constructor builds a map that is initialized with the elements from map. The third constructor initializes the initial capacity. The fourth constructor initializes both initial capacity and fill ratio (load factor). The meaning of capacity and fill ratio are the same as for HashMap. The default initial capacity is 16. The default fill ratio is 0.75. The last constructor allows you to specify whether the elements will be stored in the linked list by insertion order, or by order of last access. If orderByAccess is true, then access order is used. If orderByAccess is false, then insertion order is used. When access order is used, the last element in the list is the most recently used.
LinkedHashMap adds only one method to those defined by HashMap. This method is removeEldestEntry( ) and it is shown here:
protected boolean removeEldestEntry(Map.Entry entry)
This method is called by put( ) and putAll( ). The oldest entry is passed in entry. By default, this method returns false and does nothing. However, if you override this method, then you can have the LinkedHashMap remove the oldest entry in the map. To do this, your override must return true. To keep the oldest entry, return false.

974 chapter 25 Using the Data Structures in the Collections Framework
progress Check
1. A Map always maps unique keys to unique values. True or False?
2. What method do you use in a Map to retrieve the value associated with a given
key? What method do you use to add a new key/value pair to a Map?
3. To get a Collection of the keys in a Map, use the method ___________ and to
get a Collection of the values in a Map, use the method _______________.
4. What makes a LinkedHashMap unique?
COMparatOrS
Both TreeSet and TreeMap store elements in sorted order. However, it is how the elements are compared that defines precisely what “sorted order” means. By default, these classes store their elements by using what Java refers to as “natural ordering.” This is the order defined by the way a class implements the compareTo( ) method specified by Comparable. Often, this is the ordering that you want and would expect (A before B, 1 before 2, and so forth). If you want to order elements a different way, then specify a Comparator when you construct the set or map. Doing so gives you the ability to govern precisely how elements are stored within sorted collections and maps. It also lets you store an object in a collection that does not implement the Comparable interface.
Comparator is a generic interface that has this declaration: interface Comparator
Here, T specifies the type of objects being compared.
The Comparator interface defines two methods: compare( ) and equals( ). The
compare( ) method, shown here, compares two elements for order: int compare(T obj1, T obj2)
Here, obj1 and obj2 are the objects to be compared. This method returns zero if the objects are equal. It returns a positive value if obj1 is greater than obj2. Otherwise, a negative value is returned. By implementing compare( ), you can alter the way that objects are ordered. For example, to sort in reverse order, you can create a comparator that reverses the outcome of a comparison.
The equals( ) method, shown here, tests whether an object equals the invoking comparator:
boolean equals(Object obj) Answers:
1. False. All the keys must be unique, but not the values. In fact, all the keys could map to the same value.
2. get( ) and put( )
3. keySet( ) and values( )
4. LinkedHashMap overlays a doubly linked list on the entries, enabling them
to be accessed in a known order.

Java programming 975
Here, obj is the object to be tested for equality. The method returns true if obj and the invoking object are both Comparator objects and use the same ordering. Otherwise, it returns false. In many cases, you can simply use the default version of equals( ) provided by Object. This is what the following examples do.
Before looking at an example that uses a Comparator, an important point needs to be made. As a general rule, the outcome of comparing two objects with compare( ) should be compatible with the outcome of comparing those two objects with equals( ). Therefore, if the two objects are equal according to equals( ), then compareTo( ) must return zero, and vice versa. Failure to follow this rule could result in a corrupted collection, for example.
Note: In cases in which a collection will be serialized, a class that implements Comparator should also implement the Serializable interface. Since the follow- ing examples do not involve serialization, the comparator does not implement Serializable. The details concerning the implementation of Serializable are beyond the scope of this book.
The following program demonstrates the use of a comparator. It is an updated version of the TreeMap program shown earlier that stores account balances. In the previous version, the accounts were sorted by name, but the sorting began with the first name. The following program sorts the accounts by last name. To do so, it uses a comparator that compares the last name of each account. This results in the map being sorted by last name rather than first name.
// Use a comparator to sort accounts by last name. import java.util.*;
// Compare last whole words in two strings.
class NameComp implements Comparator { Implement a comparator.
public int compare(String aStr, String bStr) { int i, j, k;
// Find index of beginning of last name. i = aStr.lastIndexOf(‘ ‘);
j = bStr.lastIndexOf(‘ ‘);
k = aStr.substring(i).compareTo(bStr.substring(j)); if(k==0) // last names match, check entire name
return aStr.compareTo(bStr); else
return k; }
// No need to override equals. }
class TreeMapDemo2 {
public static void main(String[] args) {
Specify a comparator when constructing a TreeMap.
// Create a tree map that uses the specified comparator. TreeMap tm = new TreeMap(new NameComp());

976 chapter 25 Using the Data Structures in the Collections Framework
// Put elements to the map. tm.put(“John Doe”, 3434.34); tm.put(“Tom Smith”, 123.22); tm.put(“Jane Baker”, 1378.00); tm.put(“Todd Hall”, 99.22); tm.put(“Ralph Smith”, -19.08);
// Get a set of the entries.
Set> set = tm.entrySet();
// Display the elements. for(Map.Entry me : set) {
System.out.print(me.getKey() + “: “);
System.out.println(me.getValue()); }
System.out.println();
// Deposit 1000 into John Doe’s account. double balance = tm.get(“John Doe”); tm.put(“John Doe”, balance + 1000);
System.out.println(“John Doe’s new balance: ” + tm.get(“John Doe”));
} }
Here is the output; notice that the accounts are now sorted by last name:
Jane Baker: 1378.0 John Doe: 3434.34 Todd Hall: 99.22 Ralph Smith: -19.08 Tom Smith: 123.22
John Doe’s new balance: 4434.34
The comparator class TComp compares two strings that hold first and last names. It does so by first comparing last names. To do this, it finds the index of the last space in each string and then compares the substrings of each element that begin at that point. In cases where last names are equivalent, the entire string is compared. This yields a tree map that is sorted by last name and within last name by first name. You can see this because Ralph Smith comes before Tom Smith in the output.
the COLLeCtiOn aLgOrithMS
The Collections Framework defines many algorithms that can be applied to collections and maps. These algorithms are defined as static methods within the Collections class. While it’s not practical to look at them all, we will show five examples that will give you an idea of what is available. These are sort( ), binarySearch( ), replaceAll( ), reverse( ), and rotate( ).

Java programming 977
Perhaps the two most important algorithms in Collections are sort( ) and binarySearch( ). The sort( ) algorithm can sort any collection that implements the List interface. Here is one of its forms:
static > void sort(List list)
It sorts the elements of list as determined by their natural ordering. Recall that this is the order determined by the compareTo( ) method of Comparable, which T must implement. A second form lets you specify a comparator that can be used for types that don’t implement Comparable. A primary benefit of sort( ) is that it enables you to use an unsorted collection, such as LinkedList and ArrayList, but still obtain a sorted list when you want one.
Once you have a sorted List, the binarySearch( ) method can be used to perform very fast look-ups. It uses a binary search to find a specified value. (For a descrip- tion of a binary search, see the following Ask the Expert.) Here is one form of binarySearch( ):
static int binarySearch(List> list, T value)
It searches for value in list. It returns the index of value, or a negative result if value is not found. As with sort( ), the type of objects stored in the list must implement Comparable. A second form of binarySearch( ) lets you to specify a comparator that can be used for types that don’t implement Comparable.
Another very handy algorithm is replaceAll( ). It replaces one item with another throughout an entire list. It is shown here:
static boolean replaceAll(List list, T old, T new)
On return, all instances of old will have been replaced by new. It returns true if at least one replacement occurred. Otherwise, it returns false.
To reverse a list, call reverse( ), shown next: static void reverse(List list)
This method can be useful when you have a sorted list and you simply want it in reverse order.
A list can be rotated by use of the rotate( ) method. A rotate shifts the contents of a collection either left or right. The element shifted off one end is inserted on the other end. It is shown here:
static void rotate(List list, int n)
The elements in list are rotated n places to the right. To rotate left, use a negative value for n.
The following program demonstrates the algorithms just described.
// Demonstrate several algorithms.
import java.util.*;
class AlgorithmsDemo {
public static void main(String[] args) {

978 chapter 25 Using the Data Structures in the Collections Framework // Create a linked list.
LinkedList ll = new LinkedList();
// Put items in the list. for(int i = 0; i < 26; i+=2) { ll.add((char) ('A' + i)); ll.add((char) ('Z' - i)); } // Display original list. System.out.print("Original list: "); for(char ch : ll) System.out.print(ch); System.out.println(); // Sort the list. Collections.sort(ll); System.out.print("List sorted: "); for(char ch : ll) System.out.print(ch); System.out.println("\n"); Sort the list. // Search the list. System.out.println("Using binarySearch() to find X."); int i = Collections.binarySearch(ll, 'X'); if(i >= 0)
System.out.println(“X found. Index is ” + i); System.out.println();
// Reverse the list. Collections.reverse(ll); System.out.print(“List reversed: “); for(char ch : ll)
System.out.print(ch); System.out.println(“\n”);
// Rotate the List. Collections.rotate(ll, 5); System.out.print(“List rotated: “); for(char ch : ll)
System.out.print(ch); System.out.println(“\n”);
// Create a new list.
ll = new LinkedList();
Search the list.
Reverse the list.
Rotate the list.

// Add a string to it.
String str = “this is a test”; for(char ch : str.toCharArray())
ll.add(ch);
System.out.print(“Here is the new list: “); for(char ch : ll)
System.out.print(ch);
System.out.println();
// Replace all t’s with *
Collections.replaceAll(ll, ‘t’, ‘*’); Replace elements in the list.
System.out.print(“After replacements: for(char ch : ll)
System.out.print(ch); }
}
Output from this program is shown here:
Original list: AZCXEVGTIRKPMNOLQJSHUFWDYB List sorted: ABCDEFGHIJKLMNOPQRSTUVWXYZ
Using binarySearch() to find X. X found. Index is 23
List reversed: ZYXWVUTSRQPONMLKJIHGFEDCBA
List rotated: EDCBAZYXWVUTSRQPONMLKJIHGF
Here is the new list: this is a test After replacements: *his is a *es*
“);
Java programming 979
In addition to the methods just described, Collections provides many more, including some that layer on additional functionality. For example, if you want a syn- chronized version of a nonsynchronized collection, you can obtain one by using one of the synchronizedX methods, such as synchronizedSet( ) or synchronizedMap( ). You can obtain read-only versions of a collection by using one of the unmodifiableX methods, such as unmodifiableSet( ) or unmodifiableSortedMap( ). You will want to explore the capabilities of the Collections class on your own. It offers a wide range of ready-to-use functionality that helps you manage collections.
ask the expert
QIn the discussion of the collection algorithms, you described the binarySearch( ) method. What is a binary search, and why is it valuable?
A In general, there are two ways to search a collection for a value. The first is a sequential search. A sequential search starts at the beginning of a collection,

980 chapter 25 Using the Data Structures in the Collections Framework
ask the expert (Continued)
checking each element in sequence until either the item is found, or the end of the collection is reached. Although this approach works, it implies that many elements may need to be tested until the one being sought is found. This can result in long search times. However, for unsorted data, it is essentially the only approach that will work.
If the data is sorted, then a much faster approach, called a binary search, can be used. A binary search uses what can be characterized as a “divide and conquer” strategy to find an element in a sorted collection. It works like this. The middle element in the collection is checked. If it is larger than the item being sought, then the middle element of the lower half of the collection is tested. Otherwise, the middle element of the higher half is tested. This process of dividing the col- lection continues until either the element is found or the search fails. For large data sets, this process makes a binary search much faster than a sequential search, on average. This is because, on average, fewer elements need to be tested. (Of course, if the element being sought is near the front of the list, then a sequential search might beat the binary search in that case!) Also, remember that the binary search applies only to sorted collections.
the arrays CLaSS
Before moving on to the legacy classes, there is one more class that is part of the Collections Framework that requires a brief mention. The class is Arrays. It provides several static methods that are useful when working with Java’s built-in, fixed-length arrays. For example, it provides methods that copy an array, fill an array with a value, sort an array, and search an array. It also provides a method called asList( ) that returns a List that refers to a specified array. This lets you operate on an array as if it were a collection.
1. The method in the Comparator interface is ______________.
2. The Collections class is a class that implements the Collection interface. True
or False?
3. What algorithm in Collections searches a sorted list?
4. What algorithm in Collections rotates a list?
Answers:
1. compare( )
2. False. The Collections class is a class with static methods for manipulating
Collections
3. binarySearch( )
4. rotate( )
progress Check

the LegaCy CLaSSeS anD interFaCeS
Early versions of java.util did not include the Collections Framework. Instead, they defined several classes and an interface that provided an ad hoc method of storing objects. When collections were added (by J2SE 1.2), two of the original classes were reengineered to support the collection interfaces and are now technically part of the Collections Framework. However, where a modern collection duplicates the functionality of a legacy class, you will usually want to use the newer collection class.
The legacy classes defined by java.util are shown here:
There is one legacy interface called Enumeration. The following sections briefly examine Enumeration and each of the legacy classes.
the enumeration interface
The Enumeration interface defines the methods by which you can enumerate (obtain one at a time) the elements in a collection of objects. Although not deprecated, this legacy interface has been superseded by Iterator.
vector
Vector implements a dynamic array. It is similar to ArrayList, but with two main dif- ferences. First, Vector is synchronized. Second, it contains many legacy methods that duplicate the functionality of methods defined by the Collections Framework. With the advent of collections, Vector was reengineered to extend AbstractList and to imple- ment the List interface. This means that Vector has been integrated into the Collections Framework. Because Vector implements List, you can use a Vector just like you use an ArrayList instance. You can also manipulate one using its legacy methods. Generally, however, if you don’t need a synchronized dynamic array, ArrayList is a better choice.
Stack
Stack is a subclass of Vector that implements a standard last-in, first-out stack. Stack includes all the methods defined by Vector and adds methods such as push( ) and pop( ) which support stack operations. For new code, ArrayDeque or LinkedList is recommended. Each supports the modern Deque interface.
Dictionary
Dictionary is an abstract class that represents a key/value storage repository and oper- ates much like Map. Although not currently deprecated, Dictionary is classified as obsolete because it is fully superseded by Map.
hashtable
Hashtable is a concrete implementation of a Dictionary. However, with the advent of collections, Hashtable was reengineered to also implement the Map interface. Thus,
Java programming 981
Dictionary
Hashtable
Properties
Stack
Vector

982 chapter 25 Using the Data Structures in the Collections Framework
Hashtable is integrated into the Collections Framework. It is similar to HashMap, but is synchronized. Generally, however, if you don’t need a synchronized hash table, HashMap is a better choice.
properties
properties is a subclass of Hashtable. It is used to maintain lists of values in which the key is a String and the value is also a String. The properties class is used by methods such as System.getproperties( ) when obtaining environmental values.
exerCiSeS
1. What is the purpose of the following collection classes: AbstractCollection, AbstractList, AbstractQueue, AbstractSequentialList, AbstractSet? That is, why are these classes included in the Collections Framework?
2. Both the poll( ) and remove( ) methods in the Queue interface remove and return the element at the head of the queue. What is the difference between them?
3. A Collection represents an arbitrary group of data. In contrast, a Set repre- sents a group of data in which _____________.
4. What happens if you use the add( ) method to try to add an element to a Set that is already in the Set?
5. If m is a Map, then m.keySet( ).size( ) = m.values( ).size( ). True or False?
6. Suppose you have three collections of strings c1, c2, c3, and you want to find out which, if any, strings appear in all three collections. Write a code segment
that creates a collection c4 that contains only those strings that appear in all
three collections. It should not modify any of the three original collections.
7. Suppose you have three collections of strings c1, c2, c3, and you want to
find out which, if any, strings appear in c1, but do not appear in either c2 or c3. Create a code segment that creates a collection c4 that contains only the desired strings. It should not modify any of the three original collections.
8. What will be displayed by the following code segment? Explain.
Collection c = new ArrayList(); c.add(new Object());
c.add(new Object()); System.out.println(c.contains(new Object()));
9. Suppose you have an ArrayList named list and an array of type String[ ] named data, both of the same length. If you want to copy the data from either data structure to the other, you could do so using a loop. But there are easier ways. Create a code segment that assigns the strings in

Java programming 983
list to data and a code segment that assigns the strings in data to list without
using any loops.
10. Write a program that converts an ArrayList to a HashSet to a priority-
Queue to an ArrayDeque to a TreeSet using the version of their construc- tors that takes a Collection as its argument. Start by creating a small ArrayList of strings and displaying the list using its toString( ) method. Then similarly construct and display the other Collections, using each
of them as the argument to the constructor for next one. Even though the Collections all contain the same strings, you are likely to see those strings displayed in different orders for some of the Collections. Why?
11. Write a program that displays the elements of a non-empty ArrayList of strings using each of the following approaches. For example, if the list contains “A”, “B”, “C”, and “D”, then, in every case, the output should be “A, B, C, D”.
A. a for loop using calls to get( )
b. a loop using the iterator returned by iterator( ) C. a for-each for loop
D. the toString( ) method of the LinkedList class
12. Write a program that creates a LinkedList containing the strings “A”, “B”, “C”, and “D”. It then uses a ListIterator to step through the list to display the following output: “ABCBCD”. The iterator should not modify the list.
13. Write a program that creates a LinkedList containing four strings. It then uses a ListIterator to swap the two middle values of the list, using the itera- tor’s set( ) method (not the list’s set( ) method). The program should display the list before and after the swap.
14. Implement a sort( ) method that takes an array of integers as its parameter. The method should first create a priorityQueue. Then it should add all the integers from the array to the queue. Finally, it should extract the elements from the queue one at a time using poll( ) and put them back to the array. Write a program to test your method.
15. To add an element x at the end of an ArrayList named data, you could in- voke data.add(x). Give another method call that will do the same thing.
16. To add an element x at the front of a LinkedList named data, there are four methods in the LinkedList class that you could invoke on data. Give the four method calls.
17. To get the element at the front of a non-empty LinkedList named data, there are at least six methods, other than the toArray( ) methods, in the LinkedList class that you could invoke on data. Give the six method calls. These method calls should not remove the element from data.
18. Suppose you have a non-empty LinkedList named data. Suppose you want to assign to a string variable s the first string in data using either of the two toArray( ) methods. Show how to do so. That is, give assignment statements that use each of the toArray( ) methods to assign to s the first string in data.

984 chapter 25 Using the Data Structures in the Collections Framework
19. The following code segment compiles without errors or warnings, but throws
an exception when you run it. Explain why.
TreeSet t = new TreeSet(); t.add(new Object());
20. If a TreeSet is created with a Comparator and the elements implement Comparable, how is the sorted order of the set determined? Are the elements compared using the Comparator, or are they compared using their compareTo( ) method?
21. Write a program that creates a priorityQueue of strings that gives highest priority to the longest string. That is, the poll( ) method always returns the longest string in the collection. The program should then test the priorityQueue.
22. Modify the HashMapDemo program so that it displays the same output as it did before, but it does it without calling entrySet( ). Instead it calls keySet( ) and then iterates through the keys, displaying them and their associated values.
23. Suppose you have an ArrayList named list that you want sorted from largest to smallest. Unfortunately, the sort( ) method in the Collections class will sort list from smallest to largest. What is the easiest way to sort list from largest to smallest?
24. Pretend that there is no get( ) method in the LinkedList class and implement such a method yourself. More precisely, implement a generic get( ) method that takes an integer i and a LinkedList as its two parameters and returns the ith value in the list. It should throw an IndexOutOfboundsException if i is negative or greater than or equal to the length of the list. Use the rotate( ) method in the Collections class to move the desired element to the front of the list and then use the getFirst( ) method in the LinkedList class to get the element to be returned. When the method returns, the list should be back in its original form.
25. The Map’s get( ) method takes a key and finds the associated value. Write a method that does the opposite, namely, given a value, it finds an associated key. More precisely, write a generic method getReverse( ) that takes an object of type V and a Map as its parameters and determines whether the object appears as one of the values in the map. If so, it returns the key (or any one of the keys if there are more than one) associated with the value. If not, it returns null. Use the object’s equals( ) method to compare the object to other values. Write a program to test your method.

Chapter
Networking with java.net
key skills & concepts
j Know networking fundamentals j The InetAddress class
j The Socket class
j The URL class
j The URLConnection class
j The HttpURLConnection class j The DatagramSocket class
j The DatagramPacket class
As you learned in Chapter 1, Java was designed to address the needs of the Internet programming environment. Therefore, it should come as no surprise that it provides extensive support for networking in its API library. The primary Java networking package is java.net. It provides classes that enable an application to access network resources in a convenient, efficient manner.
Before we begin, it is necessary to emphasize that networking is an advanced subject. Moreover, it is a very large and, at times, complicated subject. A discussion of networking can easily involve several other topics, such as details relating to protocols and the general architecture of the Internet, which are beyond the scope of this book. Our purpose here is to introduce key elements of java.net and demonstrate their use. This will give you a general understanding of the networking capabilities provided by Java and enable you to write simple networked applications.
NetworkiNg FuNdameNtals
At the core of Java’s networking support is the concept of a socket. A socket identifies an endpoint in a network. Sockets are at the foundation of modern networking because a socket allows a single computer to serve many different clients at once, as well as to serve many different types of information. This is accomplished through the use of a port, which is a numbered socket on a particular machine. A server process is said
985
26

986 chapter 26 Networking with java.net
to “listen” to a port until a client connects to it. A server is allowed to accept multiple clients connected to the same port number, although each session is unique.
Socket communication takes place via a protocol. Internet Protocol (IP) is a low-level routing protocol that breaks data into small packets and sends them to an address across a network. It does not, however, guarantee to deliver these packets to the destination, or deliver them in the order in which they were sent. Transmission Control Protocol (TCP) is a higher-level protocol that manages the transmission of packets, sorting and retransmitting them as necessary to reliably transmit data. To accomplish this, TCP establishes a connection, which is a link between two sockets. A third protocol, User Datagram Protocol (UDP), can be used directly to support fast, connectionless, but unguaranteed transmission of packets.
Once a connection has been established, a higher-level protocol ensues, which is dependent on which port you are using. TCP/IP reserves the lower 1,024 ports for spe- cific protocols. Here are some examples: port number 21 is for FTP, 25 is for e-mail, 43 is for whois, and 80 is for HTTP. It is up to each protocol to determine how a client should interact with the port. The one with which you are probably the most familiar is HTTP (Hypertext Transfer Protocol). HTTP is the protocol that web browsers and servers use to transfer resources, such as web pages and images. Here’s how it works. When a client requests a file from an HTTP server, it simply sends the name of the file to a predefined port. The server sends back the contents of the file. The server also responds with a status code to tell the client whether the request can be fulfilled and, if not, why not.
A key component of the Internet is the address. Every computer on the Internet has one. An Internet address is a number that uniquely identifies each computer on the Net. Originally, all Internet addresses consisted of 32-bit values, organized as four 8-bit values. This address type was specified by IPv4 (Internet Protocol, version 4). However, a new addressing scheme, called IPv6 (Internet Protocol, version 6) has come into play. IPv6 uses a 128-bit value to represent an address, organized into eight 16-bit units. The principal advantage of IPv6 is that it supports a much larger address space than does IPv4. Fortunately, when using Java, you won’t normally need to worry about whether IPv4 or IPv6 addresses are used because Java handles the details for you.
Usually, you won’t work directly with numerical addresses. Rather, you will use a human-readable domain name. For example, www.mcgraw-hill.com is in the COM top-level domain. Its name is mcgraw-hill. An Internet domain name is mapped to an IP address by the Domain Name System (DNS). This enables users to work with domain names, but the Internet operates on IP addresses. An address like www.mcgraw-hill.com is also called a host name.
the NetworkiNg Classes aNd iNterFaCes
Java provides extensive support for both the TCP and UDP protocol families. As such, java.net provides many classes and several interfaces. To give you an idea of its wide range of capabilities, here are the classes defined by java.net at the time of this writing:

The interfaces in java.net include:
As these tables suggest, java.net provides a rich array of functionality that offers detailed control over network communications.
In the sections that follow, we will examine several core classes provided by java.net and show examples that illustrate their use. The classes described here are
These represent several fundamental aspects of Java-based networking, including how to create an address, how to make a connection, and how to send and receive data. A general understanding of these basic operations provides a foundation on which other aspects of Java’s networking can be integrated.
the inetaddress Class
The InetAddress class is used to encapsulate both the numerical IP address and the domain name for that address. You interact with this class by using the name of an IP host, which is more convenient and understandable than its IP address. InetAddress can handle both IPv4 and IPv6 addresses.
Java programming 987
Authenticator
Inet6Address
ServerSocket
CacheRequest
InetAddress
Socket
CacheResponse
InetSocketAddress
SocketAddress
ContentHandler
InterfaceAddress
SocketImpl
CookieHandler
JarURLConnection
SocketPermission
CookieManager
MulticastSocket
StandardSocketOptions
DatagramPacket
NetPermission
URI
DatagramSocket
NetworkInterface
URL
DatagramSocketImpl
PasswordAuthentication
URLClassLoader
HttpCookie
Proxy
URLConnection
HttpURLConnection
ProxySelector
URLDecoder
IDN
ResponseCache
URLEncoder
Inet4Address
SecureCacheResponse
URLStreamHandler
ContentHandlerFactory
CookiePolicy
CookieStore
DatagramSocketImplFactory
FileNameMap
ProtocolFamily
SocketImplFactory
SocketOption
SocketOptions
URLStreamHandlerFactory
InetAddress
Socket
URL
URLConnection
HttpURLConnection
DatagramPacket
DatagramSocket

988 chapter 26 Networking with java.net
The InetAddress class has no visible constructors. To create an InetAddress
object, you will use one of its static methods. Two are shown here:
static InetAddress getLocalHost( ) throws UnknownHostException
static InetAddress getByName(String hostName) throws UnknownHostException
The getLocalHost( ) method returns the InetAddress object that represents the local host (which is the local computer). The getByName( ) method returns an InetAddress for a host name passed to it. If these methods are unable to resolve the host name, they throw an UnknownHostException. There is also a getAllByName( ) method that returns an array of InetAddresses that represent all of the addresses that a particular name resolves to. This method is useful in cases in which a single name is used to represent several machines. It will also throw an UnknownHostException if it can’t resolve the name to at least one address.
There are several methods that can be called on an instance of InetAddress. We will use two of them:
String getHostAddress( ) String getHostName( )
The getHostAddress( ) method returns a string that lists the host IP address using its numeric form. The getHostName( ) address returns the name that represents the host address. For convenience, InetAddress also overrides toString( ). It returns both the host name and its address.
The following example demonstrates InetAddress by displaying the addresses and names of several web sites.
// Demonstrate InetAddress.
import java.net.*;
class InetAddressDemo {
public static void main(String[] args) {
try {
InetAddress address = InetAddress.getByName(“www.mcgraw-hill.com”); System.out.println(“Host name: ” + address.getHostName()); System.out.println(“Address: ” + address.getHostAddress());
System.out.println();
address = InetAddress.getByName(“www.mhhe.com”); System.out.println(“Host name: ” + address.getHostName()); System.out.println(“Address: ” + address.getHostAddress());
System.out.println();

address = InetAddress.getByName(“www.mheducation.com”); System.out.println(“Host name: ” + address.getHostName()); System.out.println(“Address: ” + address.getHostAddress());
} catch (UnknownHostException exc) { System.out.println(exc);
} }
}
Here is the output produced by this program. (Of course, the output you see may be slightly different.)
Host name: www.mcgraw-hill.com Address: 204.8.135.3
Host name: www.mhhe.com Address: 12.26.55.139
Host name: www.mheducation.com Address: 12.163.148.101
Java programming 989
ask the expert
QAHow does InetAddress handle the differences between IPv4 and IPv6?
To handle the differences between IPv4 and IPv6, JDK 1.4 added two sub-
classes of InetAddress: Inet4Address and Inet6Address. Inet4Address represents a traditional-style IPv4 address. Inet6Address encapsulates a new-style IPv6 address. Because they are subclasses of InetAddress, an InetAddress refer- ence can refer to either. This is one way that Java was able to add IPv6 functionality without breaking existing code or adding many more classes. For the most part, you can simply use InetAddress when working with IP addresses because it can accommodate both styles.
the socket Class
TCP/IP sockets are used to implement reliable, bidirectional, persistent, point-to- point, stream-based connections between hosts on the Internet. Through a socket, you can use Java’s stream-based I/O to communicate with other programs that may reside either on the local machine or on any other machine on the Internet. Of course, such connections are subject to restrictions imposed by the security manager. For example, as a general rule, applets may only establish socket connec- tions back to the host from which the applet was downloaded. This restriction exists because it would be dangerous for applets loaded through a firewall to have access to any arbitrary machine.

990 chapter 26 Networking with java.net
There are two kinds of TCP sockets in Java. One is for servers, and the other is for clients. The ServerSocket class is designed to be a “listener,” which waits for clients to connect before doing anything. Thus, ServerSocket is for servers. The Socket class is for clients. It is designed to connect to server sockets and initiate protocol exchanges. Here we will examine Socket.
Socket defines several constructors. Here is the one we will use: Socket(String hostName, int port)
throws UnknownHostException, IOException
It creates a socket connected to the named host and port. It implicitly establishes a connection between the client and server. It will throw an UnknownHostException if the host cannot be found and an IOException if an I/O error occurs.
Socket defines several instance methods. For example, a Socket can be examined at any time for the address and port information associated with it, by use of the fol- lowing methods:
InetAddress getInetAddress( ) int getPort( )
int getLocalPort( )
If the socket is connected to a server, then the getInetAddress( ) method returns its address in the form of an InetAddress instance. Otherwise, it returns null. Likewise, if the socket is connected to a server, then the getPort( ) method returns the port number on the server. Otherwise, it returns 0. You can obtain the local port number by calling getLocalPort( ). It returns –1 if the socket is not bound to a port.
You can gain access to the input and output streams associated with a Socket by use of the getInputStream( ) and getOutputStream( ) methods, as shown here. Each can throw an IOException if an I/O error occurs. These streams are used exactly like the I/O streams described in Chapter 11 to send and receive data.
InputStream getInputStream( ) throws IOException OutputStream getOutputStream( ) throws IOException
The getInputStream( ) method returns the input stream associated with the invoking socket. The socket’s output stream is returned by getOutputStream( ).
Socket supplies several other methods. For example, you can determine if a socket is connected to a server by calling isConnected( ). To check if a socket is bound to an address, call isBound( ). If a socket has been closed, then isClosed( ) will return true. To close a socket, call close( ). Closing a socket also closes the I/O streams associ- ated with the socket. Beginning with JDK 7, socket also implements AutoCloseable, which means that you can use a try-with-resources block to manage a socket.
The following program provides a simple Socket example. It uses “whois” to determine a domain name. It works by opening a connection to a whois port (port 43) on the Whois.InterNIC.net server. It then sends a domain name to the server. Finally, it displays the data that is returned. The whois server will look up the argument as a registered Internet domain name. If the name is found, it then sends back the IP address and contact information for that site.

// Demonstrate Sockets.
Java programming 991
import java.net.*; import java.io.*;
class SocketDemo {
public static void main(String[] args) {
int ch;
Socket socket = null;
try {
// Create a socket connected to whois.internic.net, port 43.
socket = new Socket(“whois.internic.net”, 43);
// Obtain input and output streams. InputStream in = socket.getInputStream(); OutputStream out = socket.getOutputStream();
// Construct a request string.
String str = (args.length == 0 ? “mcgraw-hill.com” :
Construct a Socket.
Obtain the input and output streams for the socket.
// Convert to bytes.
byte[] buf = str.getBytes();
// Send request. out.write(buf);
Send a request.
args[0]) + “\n”;
// Read and display response.
while ((ch = in.read()) != -1) { Obtain the response.
System.out.print((char) ch); }
} catch(IOException exc) { System.out.println(exc);
} finally { try {
if(socket != null) socket.close(); } catch(IOException exc) {
System.out.println(“Error closing socket: ” + exc); }
} }
}
To use the program, specify the name of the web site in which you are interested on the command line. If you don’t specify a command-line argument, then the site mcgraw-hill.com is used by default. If you use the default, you will see something similar to the following:
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net for detailed information.

992 chapter 26 Networking with java.net
Domain Name: MCGRAW-HILL.COM
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE Whois Server: whois.melbourneit.com
Referral URL: http://www.melbourneit.com
Name Server: CORP-55W-NS1.MCGRAW-HILL.COM
Name Server: CORP-HTS-NS1.MCGRAW-HILL.COM
Name Server: CORP-UKC-NS1.MCGRAW-HILL.COM
Status: clientTransferProhibited
Updated Date: 07-mar-2011
Creation Date: 07-may-1994
Expiration Date: 08-may-2012
. . .
Here is how the program works. First, a Socket is constructed that specifies the host name “whois.internic.net” and the port number 43. Internic.net is the InterNIC web site that handles whois requests. Port 43 is the whois port. Next, both input and output streams are opened on the socket. Then, a string is constructed that contains the name of the web site you want to obtain information about. As mentioned, if no web site is specified on the command line, then “mcgraw-hill.com” is used. The string is converted into a byte array by use of the String method getBytes( ) and then sent out the socket. The response is obtained by reading from the socket, and the results are displayed. Finally, the socket is closed, which also closes the I/O streams.
In the preceding example, the socket was closed manually by calling close( ). If you are using JDK 7 or later, then you can use a try-with-resources block to automati- cally close the socket. For example, here is another way to write the main( ) method of the previous program:
// Use automatic resource management to close a socket. public static void main(String[] args) {
int ch;
// Create a socket connected to internic.net, port 43. Manage this // socket with a try-with-resources block.
try ( Socket socket = new Socket(“whois.internic.net”, 43) ) {
// Obtain input and output streams. InputStream in = socket.getInputStream(); OutputStream out = socket.getOutputStream();
// Construct a request string.
String str = (args.length == 0 ? “mcgraw-hill.com” :
// Convert to bytes.
byte[] buf = str.getBytes();
// Send request. out.write(buf);
args[0]) + “\n”;

// Read and display response. while ((ch = in.read()) != -1) {
System.out.print((char) ch); }
} catch(IOException exc) { System.out.println(exc);
}
// The socket is now closed. }
In this version, the socket is automatically closed when the try block ends.
So the examples will work with versions of Java prior to JDK 7, and to clearly illustrate when a network resource can be closed, subsequent examples will continue to call close( ) explicitly. However, in your own code, you should consider using auto-
matic resource management since it offers a more streamlined approach.
Java programming 993
ask the expert
QAIn the discussion above, you mentioned ServerSocket. Can you tell me something about it?
The ServerSocket class is used to create server applications. When you create
a ServerSocket, it will register itself with the system as having an interest in client connections on a specified port. ServerSocket has a method called accept( ), which waits for a client to initiate communications. When this occurs, accept( ) returns a Socket that is then used for communication with the client.
progress Check
1. What does an InetAddress object encapsulate?
2. What is a “socket”?
3. Sockets send data back and forth to ServerSockets using _________________.
the url Class
URL stands for Uniform Resource Locator, and you are, no doubt, familiar with it because URLs provide a way to identify or address resources on the Internet. When you enter a web site into a browser, you are specifying that web site’s URL. Java pro- vides support for URLs with the URL class. After you have created a URL instance, you can use it to access the Internet.
Answers:
1. Both the numerical IP address and the domain name for that address.
2. It is one end of a connection between a client and a server over a network.
3. InputStreams and OutputStreams

994 chapter 26 Networking with java.net
All URLs share the same basic format, although some variation is allowed. Here are two examples: http://www.mhhe.com/ and http://www.mhhe.com:80/ index.html. A URL specification is based on four main components. The first is the protocol to use, separated from the rest of the locator by a colon (:). Common proto- cols include HTTP and FTP. The second component is the host name or IP address of the host to use; this is delimited on the left by double slashes (//) and on the right by a slash (/) or optionally a colon (:). The third component, the port number, is an optional parameter, delimited on the left from the host name by a colon (:) and on the right by a slash (/). (For HTTP, the port number defaults to 80, the predefined HTTP port; thus for HTTP, the “:80” is redundant. Other defaults are used for other protocols.) The fourth part is the resource path, such as to a file.
URL has several constructors. We will look at three, beginning with its simplest one, shown here:
URL(String urlSpecifier) throws MalformedURLException
Here, urlSpecifier is a string that specifies a complete URL, similar to what you would enter into a browser. The next two constructors allow you to break up the URL into its component parts:
URL(String protocolName, String hostName, int port, String path) throws MalformedURLException
URL(String protocolName, String hostName, String path) throws MalformedURLException
Here, each portion of the URL is specified by an individual string. For all three, a MalformedURLException is thrown if the protocol is invalid or if an argument is null. There are methods defined by URL that let you obtain the individual components of a URL. Here are some examples. To obtain the protocol, called getProtocol( ). To obtain the host name, called getHost( ). To obtain the file name, call getFile( ). They
are shown here:
String getProtocol( ) String getHost( ) String getFile( )
All return a string containing the desired information. You can retrieve the port num- ber by calling getPort( ). It is shown here:
int getPort( )
It returns the port associated with the URL, or −1 if the port is not specified.
The following example creates a URL to www.mhhe.com:80/index.html and
displays its components:
// Demonstrate URL.
import java.net.*;
class URLDemo {
public static void main(String[] args) {

try {
URL url = new URL(“http://www.mhhe.com:80/index.html”);
System.out.println(“Protocol: ” + url.getProtocol()); System.out.println(“Port: ” + url.getPort());
System.out.println(“Host: ” + url.getHost());
System.out.println(“File: ” + url.getFile()); } catch (MalformedURLException exc) {
System.out.println(“Invalid URL: ” + exc); }
} }
When you run this, you will get the following output:
Protocol: http Port: 80
Host: www.mhhe.com File: /index.html
In addition to the methods just demonstrated, URL defines several others. One of particular interest is openConnection( ). It returns a URLConnection instance. URLConnection encapsulates information about a connection. The openConnec- tion( ) method shown here:
URLConnection openConnection( ) throws IOException
Notice that it may throw an IOException. You will see this method in action in the following section.
the urlConnection Class
URLConnection is an abstract class that encapsulates a URL-based connection. As a general rule, you obtain a URLConnection by using the openConnection( ) method of URL, as just described in the previous section. Once you make a connec- tion to a remote server, you can use URLConnection to inspect the properties of the resource. You can also open an input stream that lets you download the resource. URLConnection defines several methods. A sampling is shown in Table 26-1.
Notice that URLConnection defines several methods that handle header informa- tion. A header consists of pairs of keys and values represented as strings. By using getHeaderField( ), you can obtain the value associated with a header key. By calling getHeaderFields( ), you can obtain a map that contains all of the headers. Several standard header fields are available directly through methods such as getDate( ) and getContentType( ).
The following example creates a URLConnection using the openConnection( ) method of a URL object and then uses it to examine the document’s properties and content:
// Demonstrate URLConnection. import java.net.*;
import java.io.*;
import java.util.*;
Java programming 995

996 chapter 26 Networking with java.net
Table 26-1: a Sampling of Methods Defined by URlConnection
Method
Description
int getContentLength( )
Returns the size in bytes of the content associated with the resource. If the length is unavailable, –1 is returned.
long getContentLengthLong( )
Returns the size in bytes of the content associated with the resource. If the length is unavailable, –1 is returned. (Added by JDK 7.)
String getContentType( )
Returns the type of content found in the resource. Returns null if the content type is not available.
long getDate( )
Returns the time and date of the response represented in terms of milliseconds since January 1, 1970 GMT. Zero is returned if the time and date are not available.
long getExpiration( )
Returns the expiration time and date of the resource represented in terms of milliseconds since January 1, 1970 GMT. Zero is returned if the expiration date is unavailable.
String getHeaderField(int idx)
Returns the value of the header field at index idx. (Header field indices begin at 0.) Returns null if the value of idx exceeds the number of fields.
String getHeaderField(String fieldName)
Returns the value of the header field whose name is specified by fieldName. Returns null if the specified name is not found.
String getHeaderFieldKey(int idx)
Returns the header field key at index idx. (Header field indices begin at 0.) Returns null if the value of idx exceeds the number of fields.
Map> getHeaderFields( )
Returns a map that contains all of the header fields and values.
long getLastModified( )
Returns the time and date, represented in terms of milliseconds since January 1, 1970 GMT, of the last modification of the resource. Zero is returned if the last-modified date is unavailable.
InputStream getInputStream( ) throws IOException
Returns an InputStream that is linked to the connection.
OutputStream getOutputStream( ) throws IOException
Returns an OutputStream that is linked to the connection.
class UCDemo {
public static void main(String[] args) {
InputStream in = null; URLConnection connection = null;
try {
URL url = new URL(“http://www.mcgraw-hill.com”);

connection = url.openConnection(); Open a connection.
// get date
long d = connection.getDate(); if(d==0)
System.out.println(“No date information.”); else
System.out.println(“Date: ” + new Date(d));
// get content type System.out.println(“Content-Type: ” +
connection.getContentType());
// get expiration date
d = connection.getExpiration(); if(d==0)
System.out.println(“No expiration information.”); else
System.out.println(“Expires: ” + new Date(d));
// get last-modified date
d = connection.getLastModified(); if(d==0)
System.out.println(“No last-modified information.”); else
System.out.println(“Last-Modified: ” + new Date(d));
// get content length
long len = connection.getContentLengthLong(); if(len == -1)
System.out.println(“Content length unavailable.”); else
System.out.println(“Content-Length: ” + len);
Obtain various values.
Java programming 997
if(len != 0) {
System.out.println(“=== Content ===”); in = connection.getInputStream();
int ch;
while (((ch = in.read()) != -1)) {
System.out.print((char) ch); }
Obtain the input stream.
Read and display the content.
} else {
System.out.println(“No content available.”);
}
} catch(IOException exc) {
System.out.println(“Connection Error: ” + exc); } finally {
try {
if(in != null) in.close();

998
chapter 26 Networking with java.net
} catch(IOException exc) {
System.out.println(“Error closing connection: ” + exc);
} }
} }
The program establishes an HTTP connection to www.mcgraw-hill.com. It then displays several header values and retrieves the content. Here are the first lines of the output (the precise output will vary over time).
Date: Mon Jul 18 10:59:42 CDT 2011
Content-Type: text/html;charset=ISO-8859-1
No expiration information.
No last-modified information.
Content-Length: 50631
=== Content ===
> hdrMap = connection.getHeaderFields(); Set hdrKeys = hdrMap.keySet();
Notice how a set of the keys is obtained.
System.out.println(“\nHere is the header:”);
// Display all header keys and values. for(String k : hdrKeys) {
Now, display the keys and the values.
The output produced by the program is shown here. (Of course, the exact response returned by www.mhhe.com will vary over time.)
Request method is GET Response code is 200 Response Message is OK
System.out.println(“Key: ” + k +
” Value: ” + hdrMap.get(k));
}
} catch(IOException exc) {
System.out.println(exc); }
} }

1002 chapter 26 Networking with java.net
Here is the header:
Key: null Value: [HTTP/1.1 200 OK]
Key: Date Value: [Mon, 18 Jul 2011 16:15:47 GMT]
Key: Content-Length Value: [50631]
Key: Keep-Alive Value: [timeout=5, max=100]
Key: Content-Type Value: [text/html;charset=ISO-8859-1] Key: Connection Value: [Keep-Alive]
Key: X-Powered-By Value: [Servlet/2.5 JSP/2.1]
Notice how the header keys and values are displayed. First, a map of the header keys and values is obtained by calling getHeaderFields( ) (which is inherited from URLConnection). Next, a set of the header keys is retrieved by calling keySet( ) on the map. Then the key set is cycled through by using a for-each style for loop. The value associated with each key is obtained by calling get( ) on the map.
ask the expert
Q In the table of classes in java.net shown earlier, I noticed the URI class. What is it?
AThe URI class encapsulates a Uniform Resource Identifier (URI). URIs are similar to URLs. In fact, URLs constitute a subset of URIs. A URI represents a standard way to identify a resource. A URL also describes how to access the resource. You can convert from a URI instance to a URL instance by using the toURL( ) method. To convert from a URL to a URI, use toURI( ).
progress Check
1. The four components of a URL are ______________________________. 2. You create a URLConnection by invoking _________________.
3. What are two methods added by the HttpURLConnection class?
datagrams
Datagrams provide an alternative to the TCP/IP-style networking just discussed. Datagrams are bundles of information passed between machines. Datagrams differ from TCP/IP networking in a very important way: a datagram is not guaranteed to reach its destination. Once the datagram has been sent to its intended target, there is no assurance that it will arrive or even that the target will be there to receive it.
Answers:
1. protocol, host name, port, and file path
2. the openConnection( ) method of the URL class
3. getRequestMethod( ) and getResponseCode( )

Java programming 1003
Furthermore, when the datagram is received, there is no assurance that it hasn’t been damaged in transit or that whoever sent it is still there to receive a response. Also, datagrams might reach their destination in an order that differs from the order in which they are sent.
Two primary classes support datagrams. The first is DatagramPacket, which con- tains the data. The second is DatagramSocket, which is the socket class that is used to send or receive the DatagramPackets. Each is examined here.
Note: Another class that supports datagrams is MulticastSocket. It is used for mul- ticasting datagrams. Muliticasting enables a server to send a datagram to multiple clients.
datagramsocket
DatagramSocket defines several constructors. The one we will use is shown here: DatagramSocket(int port) throws SocketException
It creates a DatagramSocket for the local host that uses the port specified by port. Notice that it can throw a SocketException if an error occurs while creating the socket.
DatagramSocket defines many methods, but we only need three for the example in this chapter. The first two are send( ) and receive( ) and are shown here:
void send(DatagramPacket packet) throws IOException void receive(DatagramPacket packet) throws IOException
The send( ) method sends a packet to the port and address specified by packet. The receive( ) method waits for a packet to be received from the port specified by packet. It then puts the received packet into packet. The third method we will use is close( ), which closes the socket. Beginning with JDK 7, DatagramSocket imple- ments AutoCloseable, which means that a DatagramSocket can be managed by a try-with-resources block.
datagrampacket
DatagramPacket defines several constructors. The two we will use are shown here:
DatagramPacket(byte[ ] data, int size)
DatagramPacket(byte[ ] data, int size, InetAddress ipAddress, int port)
The first constructor is used for receiving packets. Here, data specifies a buffer that will receive the data, and size specifies the length of the data, which must not exceed the size of the buffer. The second constructor is used for sending packets. In this ver- sion, data specifies a buffer that contains the data to be sent, and size indicates the number of bytes to send. It also specifies a target address and port, which are used by a DatagramSocket to determine where the data in the packet will be sent.
DatagramPacket defines several methods that give access to the address and port number of a packet, as well as the raw data and its length. In general, the get methods

1004 chapter 26 Networking with java.net
are used on packets that are received, and the set methods are used on packets that will
be sent. Here is a sampling of the methods defined by DatagramPacket:
InetAddress getAddress( )
Returns the address of the source (for datagrams being received) or destination (for datagrams being sent).
byte[ ] getData( )
Returns the byte array that contains the data buffer. Mostly used to retrieve data from the datagram after it has been received.
int getLength( )
Returns the number of bytes of data contained in the buffer. This may be less than the size of the underlying byte array.
int getOffset( )
Returns the starting index of the data in the buffer.
int getPort( )
Returns the port number used by the host on the other side of the connection.
void setData(byte[ ] data)
Sets the packet data to data, the offset to zero, and the length to the number of bytes in data.
void setData(byte[ ] data, int idx, int size)
Sets the packet data to data, the offset to idx, and the length to size.
void setLength(int size)
Sets the length of the packet to size. This value plus the offset must not exceed the length of the underlying byte array.
a datagram example
The following example demonstrates datagrams by implementing a very simple cli- ent and server. In this example, the server reads strings entered at the keyboard and sends them to the client. The client simply waits until it receives a packet and then displays the string. This process continues until “stop” is entered. In that case, both the client and server terminate. In the program, the port numbers were chosen somewhat arbitrarily because they were unused ports in the author’s system. Therefore, you may have to choose different ports. If a port is already bound to a socket, then the attempt to create a datagram socket will fail. One other point: the use of datagrams may be prohibited by your system, such as by a firewall. If this is the case, the following example will not work.
This example consists of two classes. The first is DGServer, which is the class that serves data. It is shown here:
// Demonstrate datagrams — server side.
import java.net.*; import java.io.*;
class DGServer {

// These ports were chosen arbitrarily. You must use // unused ports on your machine.
public static int clientPort = 50000;
public static int serverPort = 50001;
public static DatagramSocket ds;
public static void dgServer() throws IOException { byte[] buffer;
String str;
BufferedReader conin = new BufferedReader(
new InputStreamReader(System.in));
System.out.println(“Enter characters. Enter ‘stop’ to quit.”); for(;;) {
// read a string from the keyboard str = conin.readLine();
// convert string to byte array for transmission buffer = str.getBytes();
// send a new packet that contains the string
ds.send(new DatagramPacket(buffer, buffer.length, Send a packet.
InetAddress.getLocalHost(), clientPort));
// quit when “stop” is entered if(str.equals(“stop”)) {
System.out.println(“Server Quits.”);
return; }
} }
public static void main(String[] args) { ds = null;
try {
ds = new DatagramSocket(serverPort); dgServer();
} catch(IOException exc) { System.out.println(“Communication error: ” + exc);
} finally {
if(ds != null) ds.close();
} }
}
Each time a new string is entered, a DatagramPacket is created that contains the string as an array of bytes. This packet is then sent to the client via a call to send( ). The process repeats until “stop” is entered.
Java programming 1005

1006 chapter 26 Networking with java.net
The second file, called DGClient, receives the data sent by the server. It is
shown here:
// Demonstrate datagrams — client side.
import java.net.*; import java.io.*;
class DGClient {
// This port was choosen arbitrarily. You must use // an unused port on your machine.
public static int clientPort = 50000;
public static int buffer_size = 1024;
public static DatagramSocket ds;
public static void dgClient() throws IOException { String str;
byte[] buffer = new byte[buffer_size];
System.out.println(“Receiving Data”); for(;;) {
// create a new packet to receive the data
DatagramPacket p = new DatagramPacket(buffer, buffer.length);
// wait for a packet
ds.receive(p); Receive a packet.
// convert buffer into String
str = new String(p.getData(), 0, p.getLength());
// display the string on the client System.out.println(str);
// quit when “stop” is received. if(str.equals(“stop”)) {
System.out.println(“Client Stopping.”);
break; }
} }
public static void main(String[] args) { ds = null;
try {
ds = new DatagramSocket(clientPort); dgClient();
} catch(IOException exc) { System.out.println(“Communication error: ” + exc);

} finally {
if(ds != null) ds.close();
} }
}
Here, a new DatagramPacket is created to receive the data. Then, receive( ) is called. It waits until a packet has been received. Next, the buffer is converted into a string and then displayed. The process repeats until “stop” is received.
This example is restricted by the DatagramSocket constructor to running between two ports on the local machine. To use the program, first run
java DGClient
in one window; this will be the client. Then run
java DGServer
This will be the server. Anything that is typed in the server window will be sent to the client window after a newline is received. To stop the programs, enter “stop”.
1. The DatagramSocket class’s receive( ) method takes a DatagramPacket as its parameter. What does that method use its parameter for?
2. The DatagramPacket and DatagramSocket classes use the protocol TCP. True or False?
exerCises
1. Sockets are designed to send and receive data using the protocol HTTP. True or False?
2. URLConnections are designed to send and receive data using the protocol HTTP. True or False?
3. What two pieces of information does a Socket need to have in order to connect to another computer on the network?
4. When you enter a URL using HTTP in your web browser, why aren’t you required to enter a port number?
5. How does sending data using datagrams differ, with respect to guarantees of arrival, from sending data using a method that uses the protocol TCP?
Answers:
1. The data that is received is loaded into the DatagramPacket. It can be extracted by the getData( ) method.
2. False. They use UDP.
Java programming 1007
progress Check

1008 chapter 26 Networking with java.net
6. Modify the SocketDemo program so that it takes any number of domain names as arguments on the command line and sends them to the “whois” port of the whois.internic.net server. For each domain name argument, it outputs the data received from the socket. If there are no arguments, it doesn’t output anything. Note that you will need to close the socket and create a new one after receiving each response from the socket.
7. Write a method getIPSegments( ) that takes a host name as its parameter and returns an array of strings, one string containing each segment (separated by periods) of a numerical IP address. For example, if the host name’s IP address is 111.222.333.444, then the method should return the array {“111”, “222”, “333”, “444”}. Your method should work for both IPv4 and IPv6 addresses. Your method should throw an UnknownHostException if it can’t find the host. Write a test program for your method.
8. Write a program that outputs the host name and numerical IP address for your local host machine.
9. If you invoke a URL constructor with the argument “http://www.mhhe.com/ index.html?a=Jonathon#start” and then invoke the URL’s getFile( ) method, what is returned, if anything?
10. Modify the HttpURLConnectionDemo program so that it only outputs a number indicating how many header fields there are in the response header.
11. Modify the DGClient example at the end of the chapter so that buffer_size = 6 instead of 1024. What difference, if any, does this make?
12. In the dgClient( ) method of the DGClient example, there is a loop in which a new DatagramPacket is constructed for receiving each new packet of information from the sender. Would it also work to reuse the same DatagramPacket? That is, suppose we rewrite the code so that one DatagramPacket is created outside the loop and that packet is repeatedly passed as the argument to the receive( ) method. Will the program still work correctly?

ChapTer
The Concurrency Utilities
key skills & concepts
j The Semaphore class
j The CountDownLatch class j The CyclicBarrier class
j The Exchanger class
j The Phaser class
j Use an Executor
j Use Callable and Future
j Use locks
j The Fork/Join Framework
From the start, Java has provided built-in support for multithreading and synchro- nization. For example, new threads can be created by implementing Runnable or by extending Thread; synchronization is available by use of the synchronized keyword; and interthread communication is supported by the wait( ) and notify( ) methods that are defined by Object. In general, this built-in support for multi- threading was one of Java’s most important innovations and is still one of its major strengths.
As conceptually pure as Java’s original support for multithreading is, it is not ideal for all applications—especially those that make extensive use of multiple threads. For example, the original multithreading support does not provide several high-level features, such as semaphores, thread pools, and execution managers, that facilitate the creation of intensively concurrent programs.
It is important to explain at the outset that many Java programs make use of multithreading and are, therefore, “concurrent.” For example, many applets use multi- threading. However, as it is used in this chapter, the term concurrent program refers to a program that makes extensive, integral use of concurrently executing threads. An example of such a program is one that uses separate threads to simultaneously
1009
27

1010 chapter 27 The Concurrency Utilities
compute the partial results of a larger computation. Another example is a program that coordinates the activities of several threads, each of which seeks access to information in a database. In this case, read-only accesses might be handled differently from those that require read/write capabilities.
To begin to handle the needs of a concurrent program, JDK 5 added the concur- rency utilities, also commonly referred to as the concurrent API. The original set of concurrency utilities supplied many features that had long been wanted by program- mers who develop concurrent applications. For example, it offered synchronizers (such as the semaphore), thread pools, execution managers, locks, several concurrent collections, and a streamlined way to use threads to obtain computational results.
Although the original concurrent API was impressive in its own right, it was sig- nificantly expanded by JDK 7. One of these additions is the Fork/Join Framework. The Fork/Join Framework facilitates the creation of certain types of programs that make use of multiple processors (such as those found in multicore systems). Thus, it streamlines the development of programs in which two or more pieces execute with true simultaneity (that is, true parallel execution). As you can easily imagine, parallel execution can dramatically increase the speed of certain operations.
The original concurrent API was quite large, and the Fork/Join Framework increases its size substantially. As you might expect, many of the issues surround- ing the concurrency utilities are quite complex. It is beyond the scope of this book to discuss all of its facets. The preceding notwithstanding, it is important for all programmers to have a general, working knowledge of the concurrent API. Even in programs that are not intensively parallel, features such as synchronizers, callable threads, and executors are applicable to a wide variety of situations. Perhaps most importantly, because of the rise of multicore computers, solutions involving the Fork/ Join Framework will become more common. For these reasons, this chapter presents an overview of the concurrency utilities and shows several examples of their use. It concludes with an in-depth examination of the Fork/Join Framework.
The ConCUrrenT apI paCkages
The concurrency utilities are contained in the java.util.concurrent package and in its two subpackages: java.util.concurrent.atomic and java.util.concurrent.locks. A brief overview of their contents is given here.
java.util.concurrent
java.util.concurrent defines the core features that support alternatives to the built-in approaches to synchronization and interthread communication. It defines the follow- ing key features:
• Synchronizers • Executors
• Concurrent collections
• The Fork/Join Framework

Java programming 1011 Synchronizers offer high-level ways of synchronizing the interactions between
multiple threads. The synchronizer classes defined by java.util.concurrent are
Semaphore
Implements the classic semaphore.
CountDownLatch
Waits until a specified number of events have occurred.
CyclicBarrier
Enables a group of threads to wait at a predefined execution point.
Exchanger
Exchanges data between two threads.
Phaser
Synchronizes threads that advance through multiple phases of an operation.
Notice that each synchronizer provides a solution to a specific type of synchronization problem. This enables each synchronizer to be optimized for its intended use. In the past, these types of synchronization objects had to be crafted by hand. The concurrent API standardizes them and makes them available to all Java programmers.
Executors manage thread execution. At the top of the executor hierarchy is the Executor interface, which is used to initiate a thread. ExecutorService extends Executor and provides methods that manage execution. There are three implementa- tions of ExecutorService: ThreadPoolExecutor, ScheduledThreadPoolExecutor, and ForkJoinPool. java.util.concurrent also defines the Executors utility class, which includes a number of static methods that simplify the creation of various executors.
Related to executors are the Future and Callable interfaces. A Future contains a value that is returned by a thread after it executes. Thus, its value becomes defined “in the future,” when the thread terminates. Callable defines a thread that returns a value.
java.util.concurrent defines several concurrent collection classes, including ConcurrentHashMap, ConcurrentLinkedQueue, and CopyOnWriteArraylist. These offer concurrent alternatives to their related classes defined by the Collections Framework in java.util.
The Fork/Join Framework supports parallel programming. Its main classes are ForkJoinTask, ForkJoinPool, RecursiveTask, and RecursiveAction. As mentioned, the Fork/Join Framework was added by JDK 7.
Finally, to better handle thread timing, java.util.concurrent defines the TimeUnit enumeration.
java.util.concurrent.atomic
java.util.concurrent.atomic facilitates the use of variables in a concurrent environ- ment. It provides a means of efficiently updating the value of a variable without the use of locks. This is accomplished through the use of classes, such as AtomicInteger and AtomicLong, and methods, such as compareAndSet( ), decrementAndGet( ), and getAndSet( ). These methods execute as a single, noninterruptible operation.
java.util.concurrent.locks
java.util.concurrent.locks provides an alternative to the use of synchronized meth- ods. At the core of this alternative is the Lock interface, which defines the basic mechanism used to acquire and relinquish access to an object. The key methods are

1012 chapter 27 The Concurrency Utilities
lock( ), tryLock( ), and unlock( ). The advantage of using these methods is greater control over synchronization.
The remainder of this chapter takes a closer look at the constituents of the concurrent API.
UsIng synChronIzaTIon obJeCTs
A key part of the concurrent API are its synchronization objects. These are supported by the Semaphore, CountDownLatch, CyclicBarrier, Exchanger, and Phaser classes. Collectively, they enable you to handle otherwise difficult synchronization situations with ease. They are also applicable to a wide range of programs—even those that con- tain only limited concurrency. Because the synchronization objects will be of interest to nearly all Java programmers, each is examined here in some detail.
semaphore
The Semaphore class implements a classic semaphore. A semaphore controls access to a shared resource through the use of a counter. If the counter is greater than zero, then access is allowed. If it is zero, then access is denied. What the counter is count- ing are permits that allow access to the shared resource. Thus, to access the resource, a thread must be granted a permit from the semaphore.
In general, to use a semaphore, the thread that wants access to the shared resource tries to acquire a permit. If the semaphore’s count is greater than zero, then the thread acquires a permit, which causes the semaphore’s count to be decremented. Otherwise, the thread will be blocked until a permit can be acquired. When the thread no longer needs access to the shared resource, it releases the permit, which causes the semaphore’s count to be incremented. If there is another thread waiting for a permit, then that thread will acquire a permit at that time. Java’s Semaphore class imple- ments this mechanism.
Semaphore has the two constructors shown here: Semaphore(int num)
Semaphore(int num, boolean how)
Here, num specifies the initial permit count. Thus, num specifies the number of threads that can access a shared resource at any one time. If num is one, then only one thread can access the resource at any one time. By default, waiting threads are granted a per- mit in an undefined order. By setting how to true, you can ensure that waiting threads are granted a permit in the order in which they requested access.
To acquire a permit, call the acquire( ) method, which has these two forms: void acquire( ) throws InterruptedException
void acquire(int num) throws InterruptedException
The first form acquires one permit. The second form acquires num permits. If the per- mit cannot be granted at the time of the call, then the invoking thread suspends until the permit is available.

To release a permit, call release( ), which has these two forms: void release( )
void release(int num)
The first form releases one permit. The second form releases the number of permits specified by num.
To use a semaphore to control access to a resource, each thread that wants to use that resource must first call acquire( ) before accessing the resource. When the thread is done with the resource, it must call release( ). Here is an example that illustrates the use of a semaphore:
// A simple semaphore example. import java.util.concurrent.*; class SemDemo {
public static void main(String[] args) {
Semaphore sem = new Semaphore(1); Create a semaphore that
Java programming 1013
new IncThread(sem, “A”); new DecThread(sem, “B”);
} }
// A shared resource. class Shared {
static int count = 0; }
// A thread of execution that increments count. class IncThread implements Runnable {
String name; Semaphore sem;
IncThread(Semaphore s, String n) { sem = s;
name = n;
new Thread(this).start(); }
public void run() {
System.out.println(“Starting ” + name);
try {
// First, get a permit.
System.out.println(name + ” is waiting for a permit.”); sem.acquire();
System.out.println(name + ” gets a permit.”);
Wait until a permit can be acquired.
has only 1 permit.

1014 chapter 27 The Concurrency Utilities
// Now, access shared resource. for(int i=0; i < 5; i++) { Shared.count++; System.out.println(name + ": " + Shared.count); // Now, allow a context switch -- if possible. Thread.sleep(10); } } catch (InterruptedException exc) { System.out.println(exc); } // Release the permit. System.out.println(name + " releases the permit."); sem.release(); // A thread of execution that decrements count. class DecThread implements Runnable { String name; Semaphore sem; DecThread(Semaphore s, String n) { sem = s; name = n; new Thread(this).start(); } public void run() { System.out.println("Starting " + name); try { // First, get a permit. System.out.println(name + " is waiting for a permit."); sem.acquire(); System.out.println(name + " gets a permit."); // Now, access shared resource. for(int i=0; i < 5; i++) { Shared.count--; System.out.println(name + ": " + Shared.count); // Now, allow a context switch -- if possible. Thread.sleep(10); } } catch (InterruptedException exc) { System.out.println(exc); } // Release the permit. System.out.println(name + " releases the permit."); Access the shared resource. Release the permit. } } Wait until a permit can be acquired. Access the shared resource. sem.release(); Release the permit. } } The output from the program is shown here. (The precise order in which the threads execute may vary.) Starting A A is waiting for a permit. A gets a permit. A: 1 Starting B B is waiting for a permit. A: 2 A: 3 A: 4 A: 5 A releases the permit. B gets a permit. B: 4 B: 3 B: 2 B: 1 B: 0 B releases the permit. The program uses a semaphore to control access to the count variable, which is a static variable within the Shared class. Shared.count is incremented five times by the run( ) method of IncThread and decremented five times by DecThread. To prevent these two threads from accessing Shared.count at the same time, access is allowed only after a permit is acquired from the controlling semaphore. After access is complete, the permit is released. In this way, only one thread at a time will access Shared.count, as the output shows. In both IncThread and DecThread, notice the call to sleep( ) within run( ). It is used to “prove” that accesses to Shared.count are synchronized by the semaphore. In run( ), the call to sleep( ) causes the invoking thread to pause between each access to Shared.count. This would normally enable the second thread to run. However, because of the semaphore, the second thread must wait until the first has released the permit, which happens only after all accesses by the first thread are complete. Thus, Shared.count is first incremented five times by IncThread and then decremented five times by DecThread. The increments and decrements are not intermixed. Without the use of the semaphore, accesses to Shared.count by both threads would have occurred simultaneously, and the increments and decrements would be intermixed. To confirm this, try commenting out the calls to acquire( ) and release( ). When you run the program, you will see that access to Shared.count is no longer synchronized, and each thread accesses it as soon as it gets a timeslice. CountDownLatch Sometimes you will want a thread to wait until one or more events have occurred. (Here, we are using the term event to mean some program action, such as the comple- tion of a task by a separate thread.) To handle such a situation, the concurrent API Java programming 1015 1016 chapter 27 The Concurrency Utilities supplies CountDownLatch. A CountDownLatch is initially created with a count of the number of events that must occur before the latch is released. Each time an event happens, the count is decremented. When the count reaches zero, the latch opens. CountDownLatch has the following constructor: CountDownLatch(int num) Here, num specifies the number of events that must occur in order for the latch to open. To wait on the latch, a thread calls await( ), which has the forms shown here: void await( ) throws InterruptedException boolean await(long wait, TimeUnit tu) throws InterruptedException The first form waits until the count associated with the invoking CountDownLatch reaches zero. The second form waits only for the period of time specified by wait. The units represented by wait are specified by tu, which is an object of the TimeUnit enumeration. (TimeUnit is described later in this chapter.) It returns false if the time limit is reached and true if the countdown reaches zero. To signal an event, call the countDown( ) method, shown next: void countDown( ) Each call to countDown( ) decrements the count associated with the invoking object. The following program demonstrates CountDownLatch. It creates a latch that requires five events to occur before it opens. // An example of CountDownLatch. import java.util.concurrent.CountDownLatch; class CDLDemo { public static void main(String[] args) { CountDownLatch cdl = new CountDownLatch(5); Create a CountDownLatch that waits for 5 events. System.out.println("Starting"); new MyThread(cdl); try { cdl.await(); } catch (InterruptedException exc) { System.out.println(exc); } System.out.println("Done"); } } class MyThread implements Runnable { CountDownLatch latch; MyThread(CountDownLatch c) { latch = c; Wait until the count down finishes. new Thread(this).start(); } public void run() { for(int i = 0; i<5; i++) { System.out.println(i); latch.countDown(); // decrement count } } } The output produced by the program is shown here: Starting 0 1 2 3 4 Done Decrement the count each time through the loop. Java programming 1017 Inside main( ), a CountDownLatch called cdl is created with an initial count of five. Next, an instance of MyThread is created, which begins execution of a new thread. Notice that cdl is passed as a parameter to MyThread’s constructor and stored in the latch instance variable. Then, the main thread calls await( ) on cdl, which causes execution of the main thread to pause until cdl’s count has been decremented five times. Inside the run( ) method of MyThread, a loop is created that iterates five times. With each iteration, the countDown( ) method is called on latch, which refers to cdl in main( ). After the fifth iteration, the latch opens, which allows the main thread to resume. CountDownLatch is a powerful yet easy-to-use synchronization object that is appropriate whenever a thread must wait for one or more actions to occur. 1. To get a permit from a Semaphore, call its _________ method and to return a permit, call its __________ method. 2. A thread can get at most one permit at a time from a Semaphore. True or False? 3. A CountDownLatch is useful when you want a thread to wait until _______________. 4. To force a thread to wait until a CountDownLatch’s count reaches 0, the thread should call the CountDownLatch’s ___________ method. Answers: 1. acquire( ) and release( ) 2. False. A thread can acquire any number of permits (assuming they are avail- able) from a semaphore by calling acquire(n), where n is the number of permits desired. 3. a certain number of events have occurred 4. await( ) progress Check 1018 chapter 27 The Concurrency Utilities Cyclicbarrier A situation not uncommon in concurrent programming occurs when a set of two or more threads must wait at a predetermined execution point, called a barrier, until all threads in the set have reached that point. To handle such a situation, the concurrent API supplies the CyclicBarrier class. It enables you to define a syn- chronization object that suspends until the specified number of threads has reached the barrier. CyclicBarrier has the following two constructors: CyclicBarrier(int numThreads) CyclicBarrier(int numThreads, Runnable action) Here, numThreads specifies the number of threads that must reach the barrier before execution continues. In the second form, action specifies a thread that will be executed when the barrier has been reached by all threads. Here is the general procedure that you will follow to use CyclicBarrier. First, create a CyclicBarrier object, specifying the number of threads that you will be waiting for. Next, when each thread reaches the barrier, have it call await( ) on that object. This will pause execution of the thread until all of the other threads also call await( ). Once the specified number of threads has reached the barrier, await( ) will return, and execution will resume. Also, if you have specified an action, then that thread is executed. The await( ) method has the following two forms: int await( ) throws InterruptedException, BrokenBarrierException int await(long wait, TimeUnit tu) throws InterruptedException, BrokenBarrierException, TimeoutException The first form waits until the all threads have reached the barrier point. The second form waits only for the period of time specified by wait. The units represented by wait are specified by tu. It will throw a TimeoutException if the wait period expires. Both forms return a value that indicates the order in which the threads arrive at the barrier point. The first thread returns a value equal to the number of threads waited upon minus one. The last thread returns zero. Here is an example that illustrates CyclicBarrier. It waits until a set of three threads has reached the barrier. When that occurs, the thread specified by BarAction executes. // An example of CyclicBarrier. import java.util.concurrent.*; class BarDemo { public static void main(String[] args) { Create a CyclicBarrier for 3 threads. CyclicBarrier cb = new CyclicBarrier(3, new BarAction() ); System.out.println("Starting"); new MyThread(cb, "A"); new MyThread(cb, "B"); new MyThread(cb, "C"); } } // A thread of execution that uses a CyclicBarrier. class MyThread implements Runnable { CyclicBarrier cbar; String name; MyThread(CyclicBarrier c, String n) { cbar = c; name = n; new Thread(this).start(); } public void run() { System.out.println(name); try { cbar.await(); } catch (BrokenBarrierException exc) { System.out.println(exc); } catch (InterruptedException exc) { System.out.println(exc); } } } // An object of this class is called when the // CyclicBarrier ends. class BarAction implements Runnable { public void run() { System.out.println("Barrier Reached!"); } } Wait for all threads to call await( ). Java programming 1019 The output is shown here. (The precise order in which the threads execute may vary.) Starting A B C Barrier Reached! 1020 chapter 27 The Concurrency Utilities A CyclicBarrier can be reused because it will release waiting threads each time the specified number of threads calls await( ). For example, if you change main( ) in the preceding program so that it looks like this: public static void main(String[] args) { CyclicBarrier cb = new CyclicBarrier(3, new BarAction() ); System.out.println("Starting"); new MyThread(cb, "A"); new MyThread(cb, "B"); new MyThread(cb, "C"); new MyThread(cb, "X"); new MyThread(cb, "Y"); new MyThread(cb, "Z"); } the following output will be produced. (The precise order in which the threads execute may vary.) Starting A B C Barrier Reached! X Y Z Barrier Reached! As the preceding example shows, the CyclicBarrier offers a streamlined solution to what would otherwise be a complicated problem. exchanger Perhaps the most interesting of the synchronization classes is Exchanger. It is designed to simplify the exchange of data between two threads. The operation of an Exchanger is astoundingly simple: it simply waits until two separate threads call its exchange( ) method. When that occurs, it exchanges the data supplied by the threads. This mechanism is both elegant and easy to use. Uses for Exchanger are easy to imagine. For example, one thread might prepare a buffer for receiving information over a network connection. Another thread might fill that buffer with the information from the connection. The two threads work together so that each time a new buffer is needed, an exchange is made. Exchanger is a generic class that is declared as shown here: Exchanger

Java programming 1021 The only method defined by Exchanger is exchange( ), which has the two forms
Here, V specifies the type of the data being exchanged. shown here:
V exchange(V exchgObj) throws InterruptedException V exchange(V exchgObj, long wait, TimeUnit tu)
throws InterruptedException, TimeoutException
Here, exchgObj is a reference to the data to exchange. The data received from the other thread is returned. The second form of exchange( ) allows a time-out period to be specified. The key point about exchange( ) is that it won’t succeed until it has been called on the same Exchanger object by two separate threads. Thus, exchange( ) synchronizes the exchange of the data.
Here is an example that demonstrates Exchanger. It creates two threads that exchange strings with each other. One thread creates a reference to an empty string. The second thread creates an initialized string. These string references are then exchanged. The net result is that the first thread exchanges an empty string for a full one.
// An example of Exchanger.
import java.util.concurrent.Exchanger;
class ExgrDemo {
public static void main(String[] args) {
Exchanger exgr = new Exchanger(); Create an Exchanger for strings.
new UseString(exgr);
new MakeString(exgr); }
}
// A Thread that constructs an initialized string. class MakeString implements Runnable {
Exchanger ex; String str;
MakeString(Exchanger c) { ex = c;
str = new String();
new Thread(this).start(); }
public void run() { char ch = ‘A’;
for(int i = 0; i < 3; i++) { 1022 chapter 27 The Concurrency Utilities // Make a string. for(int j = 0; j < 5; j++) str += ch++; try { // Exchange an initialized string for an empty one. str = ex.exchange(str); } catch(InterruptedException exc) { System.out.println(exc); } } } } // A Thread that uses a string. class UseString implements Runnable { Exchanger ex;
String str; UseString(Exchanger c) {
ex = c;
new Thread(this).start(); }
public void run() {
for(int i=0; i < 3; i++) { try { // Exchange an empty string for an initialized one. str = ex.exchange(new String()); System.out.println("Got: " + str); } catch(InterruptedException exc) { System.out.println(exc); } } } } Here is the output produced by the program: Got: ABCDE Got: FGHIJ Got: KLMNO Exchange an initialized string for an empty string. Exchange an empty string for an initialized string. In the program, the main( ) method creates an Exchanger for strings. This object is then used to synchronize the exchange of strings between the MakeString and UseString classes. The MakeString class initializes a string. UseString exchanges an empty string for a full one. It then displays the contents of the newly constructed string. The exchange of strings is synchronized by the exchange( ) method, which is called by both class’s run( ) method. Java programming 1023 progress Check 1. A CyclicBarrier is useful in a situation where ____________________. 2. An Exchanger provides an easy way to _______________. phaser JDK 7 adds a new synchronization class called Phaser. Its primary purpose is to enable the synchronization of threads that represent one or more phases of activity. For exam- ple, you might have a set of threads that implement three phases of an order-processing application. In the first phase, separate threads are used to validate customer informa- tion, check inventory, and confirm pricing. When that phase is complete, the second phase has two threads that compute shipping costs and all applicable tax. After that, a final phase confirms payment and determines estimated shipping time. In the past, to synchronize the multiple threads that comprise this scenario would require a bit of work on your part. With the inclusion of Phaser, the process is now much easier. To begin, it helps to know that a Phaser works somewhat like a CyclicBarrier, described earlier, except that it supports multiple phases. As a result, Phaser lets you define a synchronization object that waits until a specific phase has completed. It then advances to the next phase, again waiting until that phase concludes. It is important to understand that Phaser can also be used to synchronize only a single phase. In this regard, it acts much like a CyclicBarrier. However, its primary use is to synchronize multiple phases. Phaser defines four constructors. Here are the two used in this section: Phaser( ) Phaser(int numParties) The first creates a phaser that has a registration count of zero. The second sets the registration count to numParties. The term party refers to the objects that register with a phaser. Although often there is a one-to-one correspondence between the number of registrants and the number of threads being synchronized, this is not required. In both cases, the current phase is zero. That is, when a Phaser is created, it is initially at phase zero. In general, here is how you use Phaser. First, create a new instance of Phaser. Next, register one or more parties with the phaser, either by calling register( ) or by specifying the number of parties in the constructor. For each registered party, have the phaser wait until all registered parties complete a phase. A party signals this by Answers: 1. You want every thread in a set of threads to reach a certain point before any of them continues beyond it. 2. Exchange data between two threads. 1024 chapter 27 The Concurrency Utilities calling one of a variety of methods supplied by Phaser, such as arrive( ) or arrive- AndAwaitAdvance( ). After all parties have arrived, the phase is complete, and the phaser can move on to the next phase (if there is one), or terminate. The following sections explain the process in detail. To register parties after a Phaser has been constructed, call register( ). It is shown here: int register( ) It returns the phase number of the phase to which it is registered. To signal that a party has completed a phase, you must call arrive( ) or some varia- tion of arrive( ). When the number of arrivals equals the number of registered parties, the phase is completed and the Phaser moves on the next phase (if there is one). The arrive( ) method has this general form: int arrive( ) This method signals that a party (normally a thread of execution) has completed some task (or portion of a task). It returns the current phase number. If the phaser has been terminated, then it returns a negative value. The arrive( ) method does not suspend execution of the calling thread. This means that it does not wait for the phase to be completed. This method should be called only by a registered party. If you want to indicate the completion of a phase and then wait until all other registrants have also completed that phase, use arriveAndAwaitAdvance( ). It is shown here: int arriveAndAwaitAdvance( ) It waits until all parties have arrived. It returns the next phase number or a negative value if the phaser has been terminated. This method should be called only by a reg- istered party. A thread can arrive and then deregister itself by calling arriveAndDeregister( ). It is shown here: int arriveAndDeregister( ) It returns the current phase number or a negative value if the phaser has been termi- nated. It does not wait until the phase is complete. This method should be called only by a registered party. To obtain the current phase number, call getPhase( ), which is shown here: final int getPhase( ) When a Phaser is created, the first phase will be 0, the second phase 1, the third phase 2, and so on. A negative value is returned if the invoking Phaser has been terminated. To determine if a Phaser is terminated, use the isTerminated( ) method. It returns true if the phaser is terminated and false otherwise. Here is an example that shows Phaser in action. It creates three threads, each of which has three phases. It uses a Phaser to synchronize each phase. // An example of Phaser. Create a Phaser with one initial party, which is for the main thread. Java programming 1025 import java.util.concurrent.*; class PhaserDemo { public static void main(String[] args) { Phaser phsr = new Phaser(1); int curPhase; System.out.println("Starting"); new MyThread(phsr, "A"); new MyThread(phsr, "B"); new MyThread(phsr, "C"); // Wait for all threads to complete phase one. curPhase = phsr.getPhase(); phsr.arriveAndAwaitAdvance(); System.out.println("Phase " + curPhase + " Complete"); // Wait for all threads to complete phase two. curPhase = phsr.getPhase(); phsr.arriveAndAwaitAdvance(); System.out.println("Phase " + curPhase + " Complete"); curPhase = phsr.getPhase(); phsr.arriveAndAwaitAdvance(); System.out.println("Phase " + curPhase + " Complete"); // Deregister the main thread. phsr.arriveAndDeregister(); if(phsr.isTerminated()) System.out.println("The Phaser is terminated"); } } // A thread of execution that uses a Phaser. class MyThread implements Runnable { The main thread arrives and then waits until each phase completes. Phaser phsr; String name; MyThread(Phaser p, String n) { phsr = p; name = n; phsr.register(); new Thread(this).start(); } public void run() { Register this thread. 1026 chapter 27 The Concurrency Utilities System.out.println("Thread " + name + " Beginning Phase One"); phsr.arriveAndAwaitAdvance(); // Signal arrival. // Pause a bit to prevent jumbled output. This is for illustration // only. It is not required for the proper operation of the phaser. try { Thread.sleep(10); } catch(InterruptedException e) { System.out.println(e); } System.out.println("Thread " + name + " Beginning Phase Two"); phsr.arriveAndAwaitAdvance(); // Signal arrival. // Pause a bit to prevent jumbled output. This is for illustration // only. It is not required for the proper operation of the phaser. try { Thread.sleep(10); } catch(InterruptedException e) { System.out.println(e); } System.out.println("Thread " + name + " Beginning Phase Three"); Arrive and then wait until all threads arrive. phsr.arriveAndDeregister(); // Signal arrival and deregister. } } The output is shown here: Deregister when done. Starting Thread A Thread C Thread B Phase 0 Complete Thread B Beginning Phase Two Thread C Beginning Phase Two Thread A Beginning Phase Two Phase 1 Complete Thread C Beginning Phase Three Thread B Beginning Phase Three Thread A Beginning Phase Three Phase 2 Complete The Phaser is terminated Beginning Phase One Beginning Phase One Beginning Phase One Let’s look closely at the key sections of the program. First, in main( ), a Phaser called phsr is created with an initial party count of 1 (which corresponds to the main thread). Then three threads are started by creating three MyThread objects. Notice that MyThread is passed a reference to phsr (the phaser). The MyThread objects use this phaser to synchronize their activities. Next, main( ) calls get- Phase( ) to obtain the current phase number (which is initially zero) and then calls arriveAndAwaitAdvance( ). This causes main( ) to suspend until phase zero has Java programming 1027 completed. This won’t happen until all MyThreads also arrive. When this occurs, main( ) will resume execution, at which point, it displays that phase zero has com- pleted, and it moves on to phase two. This process repeats until all three phases have finished. Then, main( ) calls arriveAndDeregister( ). At that point, all three MyThreads have also deregistered. Since this results in there being no registered par- ties when the phaser advances to the next phase, the phaser is terminated. Now look at MyThread. First, notice that the constructor is passed a reference to the phaser that it will use and then registers the new thread as a party on that phaser. Thus, each new MyThread becomes a party registered with the passed-in phaser. Also notice that each thread has three phases. In this example, each phase consists of a placeholder that simply displays the name of the thread and what it is doing. Obviously, in real-world code, the thread would be performing more meaningful actions. Between the first two phases, the thread calls arriveAndAwaitAdvance( ). Thus, each thread waits until all threads have completed the phase (and the main thread is ready). After all threads have arrived (including the main thread), the phaser moves on to the next phase. After the third phase, each thread deregisters itself with a call to arriveAndDeregister( ). As the comments in MyThread explain, the calls to sleep( ) are used for the purposes of illustra- tion to ensure that the output is not jumbled because of the multithreading. They are not needed to make the phaser work properly. If you remove them, the output may look a bit jumbled, but the phases will still be synchronized correctly. One other point: Although the preceding example used three threads that were all of the same type, this is not a requirement. Each party that uses a phaser can be unique, with each performing some separate task. It is possible to take control of precisely what happens when a phase advance occurs. To do this, you must override the onAdvance( ) method. This method is called by the run time when a Phaser advances from one phase to the next. It is shown here: protected boolean onAdvance(int phase, int numParties) Here, phase will contain the current phase number prior to being incremented, and numParties will contain the number of registered parties. To terminate the phaser, onAdvance( ) must return true. To keep the phaser alive, onAdvance( ) must return false. The default version of onAdvance( ) returns true (thus terminating the phaser) when there are no registered parties. As a general rule, your override should also follow this practice. One reason to override onAdvance( ) is to enable a phaser to execute a specific number of phases and then stop. You will see an example of this in Try This 27-1. Try This 27-1 Demonstrate Phaser’s onadvance( ) Method StarPhaserDemo.java This project demonstrates the use of the onAdvance( ) method defined by Phaser. It develops a program that uses multiple threads and a Phaser to draw a 4-by-3 rectangle of stars (asterisks) on the console. To draw the rectangle, four threads are 1028 chapter 27 The Concurrency Utilities used, and their actions are coordinated by the phaser. In each phase, each thread will draw one star and then await the next phase. It uses Phaser’s onAdvance( ) method to output a newline after each phase completes, and to terminate the phaser after the rectangle has been drawn. Thus, the phaser will be responsible for moving to the next line and then initiating the next phase. STEP-By-STEP 1. Create a new file called StarPhaserDemo.java and enter the following code: import java.util.concurrent.Phaser; public class StarPhaserDemo { public static void main(String args[]) { Phaser phsr = new NewlinePhaser(4,3); new StarThread(phsr); new StarThread(phsr); new StarThread(phsr); new StarThread(phsr); } } Notice that all the main( ) method needs to do is create the NewlinePhaser and the four threads. The threads will handle the drawing of the rectangle. 2. Now add the code for the NewlinePhaser class: class NewlinePhaser extends Phaser { int numPhases; public NewlinePhaser(int numParties, int phases) { super(numParties); numPhases = phases; } public boolean onAdvance(int phase, int numParties) { System.out.println(); // print a newline return phase == numPhases-1; // stop after numPhases } } As you can see, NewlinePhaser does two things. First, it keeps track of the number of phases it will allow to occur. Second, it overrides the onAdvance( ) method. This override outputs a newline after each phase and stops the phaser after the given number of phases have occurred. (Recall that a Phaser terminates when onAdvance( ) returns true.) Java programming 1029 3. Finally, add the code for the StarThread class: class StarThread implements Runnable { Phaser phsr; StarThread(Phaser p) { phsr = p; new Thread(this).start(); } public void run() { while (!phsr.isTerminated()) { System.out.print('*'); phsr.arriveAndAwaitAdvance(); } } } As you can see, the thread repeatedly displays one star and then awaits the end of that phase. It keeps performing this activity until the phaser has ter- minated. 4. Here is the entire program: import java.util.concurrent.Phaser; public class StarPhaserDemo { public static void main(String args[]) { Phaser phsr = new NewlinePhaser(4,3); new StarThread(phsr); new StarThread(phsr); new StarThread(phsr); new StarThread(phsr); } } class NewlinePhaser extends Phaser { int numPhases; public NewlinePhaser(int numParties, int phases) { super(numParties); numPhases = phases; } public boolean onAdvance(int phase, int numParties) { System.out.println(); // print a newline return phase == numPhases-1; // stop after numPhases } } 1030 chapter 27 The Concurrency Utilities class StarThread implements Runnable { Phaser phsr; StarThread(Phaser p) { phsr = p; new Thread(this).start(); } public void run() { while (!phsr.isTerminated()) { System.out.print('*'); phsr.arriveAndAwaitAdvance(); } } } 5. When you run the program, you will see the following output. **** **** **** As the output confirms, three lines of four stars have been drawn, with each star in a row displayed by a separate thread. The actions of the threads have been coordinated by the phaser. progress Check 1. A Phaser that is used to synchronize only one phase is very much like a ______________. 2. To signal a Phaser that a thread has completed a phase and needs to wait until the other threads complete the phase, the thread should call the Phaser’s _______ method. 3. If you want a Phaser to execute some code at the completion of a phase before the next phase begins, you should ________________. UsIng an exeCUTor The concurrent API supplies a feature called an executor that initiates and controls the execution of threads. As such, an executor offers an alternative to managing threads through the Thread class. Answers: 1. CyclicBarrier 2. arriveAndAwaitAdvance( ) 3. subclass Phaser and override the onAdvance( ) method inherited by your subclass so that it contains the code you want to be executed Java programming 1031 At the core of an executor is the Executor interface. It defines the following method: void execute(Runnable task) The code specified by task is executed. The ExecutorService interface extends Executor by adding methods that help manage and control the execution of threads. For example, ExecutorService defines shutdown( ), shown here, which stops the invoking ExecutorService. void shutdown( ) ExecutorService also defines methods that execute threads that return results, that execute a set of threads, and that determine the shutdown status. Also defined is the interface ScheduledExecutorService, which extends ExecutorService to support the scheduling of threads. The concurrent API defines three predefined executor classes: ThreadPoolExecutor, ScheduledThreadPoolExecutor, and ForkJoinPool. ThreadPoolExecutor imple- ments the Executor and ExecutorService interfaces and provides support for a managed pool of threads. ScheduledThreadPoolExecutor also implements the ScheduledExecutorService interface to allow a pool of threads to be scheduled. ForkJoinPool implements the Executor and ExecutorService interfaces and is used by the Fork/Join Framework. It is described later in this chapter. A thread pool provides a set of threads that is used to execute various tasks. Instead of each task using its own thread, the threads in the pool are used. This reduces the overhead associated with creating many separate threads. Although you can use ThreadPoolExecutor and ScheduledThreadPoolExecutor directly, most often you probably will want to obtain an executor by calling one of the follow- ing static factory methods defined by the Executors utility class. Here are some examples: static ExecutorService newCachedThreadPool( ) static ExecutorService newFixedThreadPool(int numThreads) static ScheduledExecutorService newScheduledThreadPool(int numThreads) newCachedThreadPool( ) creates a thread pool that adds threads as needed but reuses threads if possible. newFixedThreadPool( ) creates a thread pool that consists of a specified number of threads. newScheduledThreadPool( ) creates a thread pool that supports thread scheduling. Each returns a reference to an ExecutorService that can be used to manage the pool. a simple executor example Before going any further, a simple example that uses an executor will be of value. The following program creates a fixed thread pool that contains two threads. It then uses that pool to execute four tasks. Thus, four tasks share the two threads that are in the pool. After the tasks are completed, the pool is shut down and the program ends. 1032 chapter 27 The Concurrency Utilities // A simple example that uses an Executor. import java.util.concurrent.*; class SimpExec { public static void main(String[] args) { CountDownLatch cdl = new CountDownLatch(5); CountDownLatch cdl2 = new CountDownLatch(5); CountDownLatch cdl3 = new CountDownLatch(5); CountDownLatch cdl4 = new CountDownLatch(5); ExecutorService es = Executors.newFixedThreadPool(2); Create an executor System.out.println("Starting"); // Start the threads. that has two threads. Execute four threads using the thread pool. es.execute(new es.execute(new es.execute(new es.execute(new MyThread(cdl, "A")); MyThread(cdl2, "B")); MyThread(cdl3, "C")); MyThread(cdl4, "D")); try { cdl.await(); cdl2.await(); cdl3.await(); cdl4.await(); } catch (InterruptedException exc) { System.out.println(exc); } es.shutdown(); System.out.println("Done"); } } class MyThread implements Runnable { String name; CountDownLatch latch; MyThread(CountDownLatch c, String n) { latch = c; name = n; } public void run() { for(int i = 0; i < 5; i++) { System.out.println(name + ": " + i); latch.countDown(); } } } Shut down the executor. Java programming 1033 The output from the program is shown here. (The precise order in which the threads execute may vary.) Starting B: 0 A: 0 B: 1 A: 1 A: 2 B: 2 B: 3 B: 4 A: 3 C: 0 C: 1 A: 4 C: 2 D: 0 D: 1 C: 3 D: 2 D: 3 C: 4 D: 4 Done As the output shows, even though the thread pool contains only two threads, all four tasks are still executed. However, only two can run at the same time. The others must wait until one of the pooled threads is available for use. The call to shutdown( ) is important. If it were not present in the program, then the program would not terminate because the executor would remain active. To try this for yourself, simply comment out the call to shutdown( ) and observe the result. UsIng Callable anD Future One quite interesting feature of the concurrent API is the Callable interface. This inter- face represents a thread that returns a value. An application can use Callable objects to compute results that are then returned to the invoking thread. This is a powerful mechanism because it facilitates the coding of many types of numerical computations in which partial results are computed simultaneously. It can also be used to run a thread that returns a status code that indicates the successful completion of the thread. Callable is a generic interface that is defined like this: interface Callable
Here, V indicates the type of data returned by the task. Callable defines only one method, call( ), which is shown here:
V call( ) throws Exception

1034 chapter 27 The Concurrency Utilities
Inside call( ), you define the task that you want performed. After that task completes, you return the result. If the result cannot be computed, call( ) must throw an exception. A Callable task is executed by an ExecutorService, by calling its submit( ) meth- od. There are three forms of submit( ), but only one is used to execute a Callable. It
is shown here:
Future submit(Callable task)
Here, task is the Callable object that will be executed. The result is returned through an object of type Future.
Future is a generic interface that represents the value that will be returned by a Callable object. Because this value is obtained at some future time, the name Future is appropriate. Future is defined like this:
interface Future
Here, V specifies the type of the result.
To obtain the returned value, you will call Future’s get( ) method, which has these
two forms:
V get( )
throws InterruptedException, ExecutionException
V get(long wait, TimeUnit tu)
throws InterruptedException, ExecutionException, TimeoutException
The first form waits for the result indefinitely. The second form allows you to specify a time-out period in wait. The units of wait are passed in tu, which is an object of the TimeUnit enumeration, described later in this chapter.
The following program illustrates Callable and Future by creating three tasks that perform three different computations. The first returns the summation of a value, the second computes the length of the hypotenuse of a right triangle given the length of its sides, and the third computes the factorial of a value. All three computations can occur simultaneously.
// An example that uses a Callable.
import java.util.concurrent.*;
class CallableDemo {
public static void main(String[] args) {
ExecutorService es = Executors.newFixedThreadPool(3); Future f;
Future f2;
Future f3;
System.out.println(“Starting”);
f = es.submit(new Sum(10));
f2 = es.submit(new Hypot(3, 4)); f3 = es.submit(new Factorial(5));
Submit tasks for execution.

try { System.out.println(f.get()); System.out.println(f2.get()); System.out.println(f3.get());
} catch (InterruptedException exc) { System.out.println(exc);
}
catch (ExecutionException exc) {
System.out.println(exc); }
es.shutdown();
System.out.println(“Done”); }
}
// Following are three computational threads.
class Sum implements Callable { int stop;
Sum(int v) { stop = v; }
public Integer call() {
int sum = 0;
for(int i = 1; i <= stop; i++) { sum += i; } return sum; } } class Hypot implements Callable { double side1, side2;
Hypot(double s1, double s2) { side1 = s1;
side2 = s2;
}
public Double call() {
return Math.sqrt((side1*side1) + (side2*side2));
} }
class Factorial implements Callable { int stop;
Factorial(int v) { stop = v; }
Java programming 1035 Obtain and display the results.

1036 chapter 27 The Concurrency Utilities
public Integer call() {
int fact = 1;
for(int i = 2; i <= stop; i++) { fact *= i; } return fact; } } Starting 55 5.0 120 Done 1. To create an ExecutorService that manages a thread pool of a fixed size, invoke the factory method ____________________. 2. If you create an Executor and then call its execute( ) method four times in succession, each time passing in a different Runnable, then each Runnable will not execute until the preceding Runnable has completed. True or False? 3. To execute a Callable object, you invoke the __________________ method of an ExecutorService. 4. Why is “Future” an appropriate name for the Future interface? The TimeUnit enUmeraTIon The concurrent API defines several methods that take an argument of type TimeUnit, which indicates a time-out period. TimeUnit is an enumeration that is used to specify the granularity (or resolution) of the timing. TimeUnit is defined within java.util.concurrent. It can be one of the following values: DAYS HOURS MINUTES SECONDS MILLISECONDS MICROSECONDS NANOSECONDS Answers: 1. Executors.newFixedThreadPool( ) 2. False, unless the Executor manages a fixed thread pool of size 1. 3. submit( ) 4. Because it represents a value that will be available sometime in the future. The output is shown here: progress Check Java programming 1037 Although TimeUnit lets you specify any of these values in calls to methods that take a timing argument, there is no guarantee that the system is capable of the specified resolution. Here is an example that uses TimeUnit. The CallableDemo class, shown in the previous section, is modified as shown next to use the second form of get( ) that takes a TimeUnit argument. try { System.out.println(f.get(10, TimeUnit.MILLISECONDS)); System.out.println(f2.get(10, TimeUnit.MILLISECONDS)); System.out.println(f3.get(10, TimeUnit.MILLISECONDS)); } catch (InterruptedException exc) { System.out.println(exc); } catch (ExecutionException exc) { System.out.println(exc); } catch (TimeoutException exc) { System.out.println(exc); } In this version, no call to get( ) will wait more than 10 milliseconds. The TimeUnit enumeration defines various methods that convert between units. These are shown here: long convert(long tval, TimeUnit tu) long toMicros(long tval) long toMillis(long tval ) long toNanos(long tval) long toSeconds(long tval) long toDays(long tval) long toHours(long tval) long toMinutes(long tval ) The convert( ) method converts tval into the specified unit and returns the result. The to methods perform the indicated conversion and return the result. Three more methods defined by TimeUnit are shown here: void sleep(long delay) throws InterruptedExecution void timedJoin(Thread thrd, long delay) throws InterruptedExecution void timedWait(Object obj, long delay) throws InterruptedExecution Here, sleep( ) pauses execution for the specified delay period, which is speci- fied in terms of the invoking enumeration constant. It translates into a call to Thread.sleep( ). The timedJoin( ) method is a specialized version of Thread.join( ) in which thrd pauses for the time period specified by delay, which is described in terms of the invoking time unit. The timedWait( ) method is a specialized version of Object.wait( ) in which obj is waited on for the period of time specified by delay, which is described in terms of the invoking time unit. 1038 chapter 27 The Concurrency Utilities The ConCUrrenT CoLLeCTIons As explained, the concurrent API defines several collection classes that have been engineered for concurrent operation. They include: These offer concurrent alternatives to their related classes defined by the Collections Framework. These collections work much like the other collections except that they provide concurrency support. LoCks The java.util.concurrent.locks package provides support for locks, which are objects that offer an alternative to using synchronized to control access to a shared resource. In general, here is how a lock works. Before accessing a shared resource, the lock that protects that resource is acquired. When access to the resource is complete, the lock is released. If a second thread attempts to acquire the lock when it is in use by another thread, the second thread will suspend until the lock is released. In this way, conflict- ing access to a shared resource is prevented. Locks are particularly useful when multiple threads need to access the value of shared data. For example, an inventory application might have a thread that first confirms that an item is in stock and then decreases the number of items on hand as each sale occurs. If two or more of these threads are running, then without some form of synchronization, it would be possible for one thread to be in the middle of a transaction when the second thread begins its transaction. The result could be that both threads would assume that adequate inventory exists, even if there is only suf- ficient inventory on hand to satisfy one sale. In this type of situation, a lock offers a convenient means of handling the needed synchronization. All locks implement the Lock interface. The methods defined by Lock are shown in Table 27-1. In general, to acquire a lock, call lock( ). If the lock is unavailable, lock( ) will wait. To free a lock, call unlock( ). To see if a lock is available, and to acquire it if it is, call tryLock( ). This method will not wait for the lock if it is unavailable. Instead, it returns true if the lock is acquired and false otherwise. The newCondition( ) method returns a Condition object associated with the lock. Using a Condition, you gain detailed control of the lock through methods such as await( ) and signal( ), which provide functionality similar to Object.wait( ) and Object.notify( ). java.util.concurrent.locks supplies an implementation of Lock called ReentrantLock. ReentrantLock implements a reentrant lock, which is a lock that can be repeatedly entered by the thread that currently holds the lock. In the case of a ArrayBlockingQueue ConcurrentHashMap ConcurrentLinkedDeque ConcurrentLinkedQueue ConcurrentSkipListMap ConcurrentSkipListSet CopyOnWriteArraylist CopyOnWriteArraySet DelayQueue LinkedBlockingDeque LinkedBlockingQueue LinkedTransferQueue PriorityBlockingQueue SynchronousQueue thread reentering a lock, all calls to lock( ) must be offset by an equal number of calls to unlock( ). Otherwise, the lock will not be released. The following program demonstrates the use of a lock. It creates two threads that access a shared resource called Shared.count. Before a thread can access Shared.count, it must obtain a lock. After obtaining the lock, Shared.count is incre- mented, and then, before releasing the lock, the thread sleeps. This causes the second thread to attempt to obtain the lock. However, because the lock is still held by the first thread, the second thread must wait until the first thread stops sleeping and releases the lock. The output shows that access to Shared.count is, indeed, synchronized by the lock. // A simple lock example. import java.util.concurrent.locks.*; class LockDemo { public static void main(String[] args) { ReentrantLock lock = new ReentrantLock(); Create a reentrant lock. new LockThread(lock, "A"); new LockThread(lock, "B"); } } // A shared resource. class Shared { static int count = 0; } Java programming 1039 Table 27-1: The lock Methods Method Description void lock( ) Waits until the invoking lock can be acquired. void lockInterruptibly( ) throws InterruptedException Waits until the invoking lock can be acquired, unless interrupted. Condition newCondition( ) Returns a Condition object that is associated with the invoking lock. boolean tryLock( ) Attempts to acquire the lock. This method will not wait if the lock is unavailable. Instead, it returns true if the lock has been acquired and false if the lock is currently in use by another thread. boolean tryLock(long wait, TimeUnit tu) throws InterruptedException Attempts to acquire the lock. If the lock is unavailable, this method will wait no longer than the period specified by wait, which is in tu units. It returns true if the lock has been acquired and false if the lock cannot be acquired within the specified period. void unlock( ) Frees the lock, allowing it to be used by another thread. 1040 chapter 27 The Concurrency Utilities // A thread of execution that increments count. class LockThread implements Runnable { String name; ReentrantLock lock; LockThread(ReentrantLock lk, String n) { lock = lk; name = n; new Thread(this).start(); } public void run() { System.out.println("Starting " + name); try { // First, lock count. System.out.println(name + " is waiting to lock count."); lock.lock(); System.out.println(name + " is locking count."); Shared.count++; System.out.println(name + ": " + Shared.count); // Now, allow a context switch -- if possible. System.out.println(name + " is sleeping."); Thread.sleep(1000); } catch (InterruptedException exc) { System.out.println(exc); } finally { // Unlock System.out.println(name + " is unlocking count."); lock.unlock(); } } } Acquire the lock. Access the resource. Release the lock. The output is shown here. (The precise order in which the threads execute may vary.) Starting A A is A is A: 1 A is Starting B B is A is B is B: 2 B is B is waiting to lock count. unlocking count. locking count. sleeping. unlocking count. waiting to lock count. locking count. sleeping. Java programming 1041 java.util.concurrent.locks also defines the ReadWriteLock interface. This interface specifies a lock that maintains separate locks for read and write access. This enables multiple locks to be granted for reading a resource as long as the resource is not being written. ReentrantReadWriteLock provides an implementation of ReadWriteLock. ask the expert Q What are the main differences between a Semaphore, a Lock, and the implic- it monitor lock used in synchronized blocks as discussed in Chapter 12? AAll three objects provide a way of limiting the number of threads that can access a shared resource at a given time, but they have different properties. Monitor locks are acquired and released implicitly at the beginning and end of a synchronized block. Locks have more flexibility. For example, in addition to the lock( ) method, Locks have a nonblocking version called tryLock( ) and a temporarily blocking version tryLock(wait, tu). A ReentrantLock (a class imple- menting the Lock interface) is a lock that becomes “owned” by a thread when the thread calls lock( ) and must be released by the same thread by calling unlock( ). For that reason, it is recommended that the call to unlock( ) be in a finally block to ensure that the lock is released even in the case when an exception is thrown. A second call to lock( ) by the same thread that owns the lock does not block, but there eventually needs to be a corresponding call to unlock( ) for every call to lock( ). A RentrantLock can also be queried concerning its current owner and the queue of threads waiting to acquire the lock. A Semaphore manages a set of “permits” that it issues to requesting threads. If there is more than one permit, then multiple threads can receive permits at the same time and can access the shared resource at the same time. This behavior is useful, for example, when the shared resource is a pool of objects that two or more threads want to use. If the pool has N objects, then a semaphore with N permits is one way to manage access to the pool. A semaphore essentially keeps track only of how many permits are still available, not who received a permit. Thus, it is possible for one thread to acquire a permit, which decreases the number still available, and a second thread to release a permit, which increases the number of available permits, even if it didn’t first acquire a permit. If a thread has acquired a permit and then tries to acquire another, it will block if there are no more permits available (this behavior is different from the behavior of a reentrant lock, as mentioned above, in that the thread owning the lock can call lock( ) as often as it wants without blocking). A semaphore that manages only one permit is called a binary semaphore and is most similar to a lock. aTomIC operaTIons java.util.concurrent.atomic offers an alternative to the other synchronization features when reading or writing the value of some types of variables. This package offers methods that get, set, or compare the value of a variable in one uninterruptible (that is, atomic) operation. This means that no lock or other synchronization mechanism 1042 chapter 27 The Concurrency Utilities is required. Atomic operations are accomplished through the use of classes, such as AtomicInteger and AtomicLong, and methods such as get( ), set( ), compareAnd- Set( ), decrementAndGet( ), and getAndSet( ), which perform the action indicated by their names. In general, the atomic operations offer a convenient (and possibly more efficient) alternative to the other synchronization mechanisms when only a single vari- able is involved. 1. What are the seven values in the TimeUnit enumeration? 2. How do AtomicIntegers differ from Integers? 3. To get access to a shared resource that is protected by a Lock, a thread should call the Lock’s ______________ method and when it is finished with the resource it should call the Lock’s _____________ method. paraLLeL programmIng vIa The Fork/JoIn Framework Parallel programming is the name commonly given to the techniques that take advan- tage of computers that contain two or more processors (or cores). In recent years, multicore computers have become commonplace. The advantage that multiprocessor environments offer is the ability to significantly increase program performance. As a result, there has been a growing need for a mechanism that gives Java programmers a simple, yet effective, way to make use of multiple processors in a clean, scalable manner. To answer this need, JDK 7 added several new classes and interfaces that sup- port parallel programming. They are commonly referred to as the Fork/Join Framework. The Fork/Join Framework is defined in the java.util.concurrent package. The Fork/Join Framework enhances multithreaded programming in two important ways. First, it simplifies the creation and use of multiple threads. Second, it auto- matically makes use of multiple processors. In other words, by using the Fork/Join Framework, you enable your applications to automatically scale to make use of the number of available processors. These two features make the Fork/Join Framework the recommended approach to multithreading when certain types of parallel process- ing is desired. Before continuing, it is important to point out the distinction between traditional multithreading and parallel programming. In the past, most computers had a single Answers: 1. DAY, HOUR, MINUTE, SECOND, MILLISECOND, MICROSECOND, NANOSECOND 2. An AtomicInteger is a mutable object that stores an integer value and that has several uninterruptible operations, which allow you to read, compare, and modify the value without having to worry about synchronization. 3. lock( ) and unlock( ) progress Check Java programming 1043 CPU, and multithreading was primarily used to take advantage of idle time, such as when a program is waiting for user input. Using this approach, one thread can execute while another is waiting. In other words, on a single-CPU system, multithreading is used to allow two or more tasks to share the CPU. This type of multithreading is typi- cally supported by an object of type Thread (as described in Chapter 12). Although this type of multithreading will always remain quite useful, it was not optimized for situations in which two or more CPUs are available (as in multicore computers). When multiple CPUs are present, a second type of multithreading capability that supports true parallel execution is required. With two or more CPUs, it is possible to execute portions of a program simultaneously, with each part executing on its own CPU. This can be used to significantly speed up the execution of some types of opera- tions, such as sorting, transforming, or searching a large array. In many cases, these types of operations can be broken down into smaller pieces (each acting on a portion of the array), and each piece can be run on its own CPU. As you can imagine, the gain in efficiency can be quite significant. Simply put: Parallel programming offers a way to dramatically improve program performance. The maIn Fork/JoIn CLasses The Fork/Join Framework is packaged in java.util.concurrent. At the core of the Fork/Join Framework are the following four classes: Here is how they relate. A ForkJoinPool manages the execution of ForkJoinTasks. ForkJoinTask is an abstract class that is extended by two other abstract classes: RecursiveAction and RecursiveTask. Typically, your code will extend these classes to create a task. Before looking at the process in detail, an overview of the key aspects of each class will be helpful. ForkJoinTask
ForkJoinTask is an abstract class that defines a task that can be managed by a ForkJoinPool. The type parameter V specifies the result type of the task. ForkJoinTask differs from Thread in that ForkJoinTask represents a lightweight abstraction of a task, rather than a thread of execution. ForkJoinTasks are executed by threads managed by a thread pool of type ForkJoinPool. This mechanism allows a large number of tasks to be managed by a small number of actual threads. Thus, ForkJoinTasks are very efficient when compared to threads.
ForkJoinTask defines many methods. At the core are fork( ) and join( ), shown here:
final ForkJoinTask fork( ) final V join( )
ForkJoinTask
An abstract class that defines a task
ForkJoinPool
Manages the execution of ForkJoinTasks
RecursiveAction
A subclass of ForkJoinTask for tasks that do not return values
RecursiveTask
A subclass of ForkJoinTask for tasks that return values

1044 chapter 27 The Concurrency Utilities
The fork( ) method submits the invoking task for asynchronous execution. This means that the thread that calls fork( ) continues to run. The fork( ) method returns this after the task is scheduled for execution. It can be executed only from within the computational portion of another ForkJoinTask, which is running within a ForkJoinPool. (You will see how to do this, shortly.) The join( ) method waits until the task on which it is called terminates. The result of the task is returned. Thus, through the use of fork( ) and join( ), you can start one or more new tasks and then wait for them to finish.
Another important ForkJoinTask method is invoke( ). It combines the fork and join operations into a single call because it begins a task and then waits for it to end. It is shown here:
final V invoke( )
The result of the invoking task is returned.
You can invoke more than one task at a time by using invokeAll( ). Two of its
forms are shown here:
static void invokeAll(ForkJoinTask taskA, ForkJoinTask taskB)
static void invokeAll(ForkJoinTask … taskList)
In the first case, taskA and taskB are executed. In the second case, all specified tasks are executed. In both cases, the calling thread waits until all of the specified tasks have terminated. The invokeAll( ) method can be executed only from within the compu- tational portion of another ForkJoinTask, which is running within a ForkJoinPool.
recursiveaction
A subclass of ForkJoinTask is RecursiveAction. This class encapsulates a task that does not return a result. Typically, your code will extend RecursiveAction to cre- ate a task that has a void return type. RecursiveAction specifies four methods, but only one is of interest here: the abstract method called compute( ). When you extend RecursiveAction to create a concrete class, you will put the code that defines the task inside compute( ). The compute( ) method represents the computational portion of the task.
The compute( ) method is defined by RecursiveAction like this: protected abstract void compute( )
Notice that compute( ) is abstract. This means that it must be implemented by a sub- class (unless that subclass is also abstract). There is no default implementation.
In general, RecursiveAction is used to implement a recursive, divide-and-conquer strategy for tasks that don’t return results. (See “The Divide-and-Conquer Strategy” later in this chapter.)
recursiveTask
Another subclass of ForkJoinTask is RecursiveTask. This class encapsu- lates a task that returns a result. The result type is specified by V. Typically, your code will extend RecursiveTask to create a task that returns a value. Like

Java programming 1045
RecursiveAction, it too specifies four methods, but we will use only the abstract compute( ) method, which represents the computational portion of the task. When you extend RecursiveTask to create a concrete class, put the code that represents the task inside compute( ). This code must also return the result of the task.
The compute( ) method is defined by RecursiveTask as follows: protected abstract V compute( )
Notice that compute( ) is also abstract, which means that it must be implemented by a subclass. When implemented, it must return the result of the task.
In general, RecursiveTask is used to implement a recursive, divide-and-conquer strategy for tasks that return results. (See “The Divide-and-Conquer Strategy” later in this chapter.)
ForkJoinpool
The execution of ForkJoinTasks takes place within a ForkJoinPool, which also manages the execution of the tasks. Therefore, in order to execute a ForkJoinTask, you must first have a ForkJoinPool.
ForkJoinPool defines several constructors. Here are two commonly used ones: ForkJoinPool( )
ForkJoinPool(int pLevel)
The first creates a default pool that supports a level of parallelism equal to the num- ber of processors available in the system. The second lets you specify the level of parallelism. Its value must be greater than zero and not more than the limits of the implementation. The level of parallelism determines the number of threads that can execute concurrently. As a result, the level of parallelism effectively determines the number of tasks that can be executed simultaneously. (Of course, the number of tasks that can execute simultaneously cannot exceed the number of processors.) It is impor- tant to understand that the level of parallelism does not, however, limit the number of tasks that can be managed by the pool. A ForkJoinPool can manage many more tasks than its level of parallelism. Also, the level of parallelism is only a target. It is not a guarantee.
After you have created an instance of ForkJoinPool, you can start a task in a number of different ways. The first task started is often thought of as the main task. Frequently, the main task begins subtasks that are also managed by the pool. One common way to begin a main task is to call invoke( ) on the ForkJoinPool. It is shown here:
T invoke(ForkJoinTask task)
This method begins the task specified by task, and it returns the result of the task. This means that the calling code waits until invoke( ) returns.
To start a task without waiting for its completion, you can use execute( ). Here is one of its forms:
void execute(ForkJoinTask task)

1046 chapter 27 The Concurrency Utilities
In this case, task is started, but the calling code does not wait for its completion. Rather, the calling code continues execution asynchronously.
ForkJoinPool manages the execution of its threads using an approach called work-stealing. Each worker thread maintains a queue of tasks. If one worker thread’s queue is empty, it will take a task from another worker thread. This adds to overall efficiency and helps maintain a balanced load.
One other point: ForkJoinPool uses daemon threads. As explained in Chapter 12, a daemon thread is automatically terminated when all user threads have terminated. Thus, there is no need to explicitly shut down a ForkJoinPool. However, it is possible to do so by calling shutdown( ).
The DIvIDe-anD-ConqUer sTraTegy
Many uses of the Fork/Join Framework will employ a divide-and-conquer strategy that is based on recursion. This is why the two subclasses of ForkJoinTask are called RecursiveAction and RecursiveTask. It is anticipated that you will extend one of these classes when creating your own fork/join task.
The divide-and-conquer strategy is based on recursively dividing a task into smaller subtasks until the subtask is small enough to be handled sequentially. For example, a task that applies a transform to each element in an array of N integers can be broken down into two subtasks in which each transforms half the elements in the array. That is, one subtask transforms the elements 0 to N/2, and the other transforms the elements N/2+1 to N–1. In turn, each subtask can be reduced to another set of sub- tasks, each transforming half of the remaining elements. This process of dividing the array will continue until a threshold is reached in which a sequential solution is faster than creating another division.
The advantage of the divide-and-conquer strategy is that the processing can occur in parallel. Therefore, instead of cycling through an entire array using a single thread, pieces of the array can be processed simultaneously. Of course, the divide-and- conquer approach works in many cases in which an array (or collection) is not present, but many uses will involve some type of array, collection, or grouping of data.
One of the keys to best employing the divide-and-conquer strategy is correctly selecting the threshold at which sequential processing (rather than further division) is used. Typically, an optimal threshold is obtained through profiling the execu- tion characteristics. However, very significant speed-ups will still occur even when a less than optimal threshold is used. It is, however, best to avoid overly large or overly small thresholds. At the time of this writing, the Java API documentation for ForkJoinTask states that, as a rule of thumb, a sequential task should perform somewhere between 100 and 10,000 computational steps.
For applications that are to be run on a known system, with a known number of processors, you can use the number of processors to make informed decisions about the threshold value. However, for applications that will be running on a variety of sys- tems, the capabilities of which are not known in advance, you can make no assump- tions about the execution environment.
One other point: Although multiple processors may be available on a system, other processes (and the operating system, itself) will be competing with your application for

Java programming 1047
CPU time. Thus, it is important not to assume that your program will have unrestricted access to all CPUs. Furthermore, different runs of the same program may display dif- ferent run-time characteristics because of varying task loads.
a simple First Fork/Join example
At this point, a simple example that demonstrates the Fork/Join Framework and the divide-and-conquer strategy will be helpful. Following is a program that transforms the elements in an array of double into their square roots. It does so via a subclass of RecursiveAction.
// A simple example of the basic divide-and-conquer strategy. // In this case, RecursiveAction is used.
import java.util.concurrent.*;
import java.util.*;
// A ForkJoinTask (via RecursiveAction) that transforms
// the elements in an array of doubles into their square roots. class SqrtTransform extends RecursiveAction {
// The threshold value is arbitrarily set at 1,000 in this example. // In real-world code, its optimal value can be determined by
// profiling and experimentation.
final int seqThreshold = 1000;
// Array to be accessed. double[] data;
// Determines what part of data to process. int start, end;
SqrtTransform(double[] vals, int s, int e ) { data = vals;
start = s;
end = e;
}
// This is the method in which parallel computation will occur. protected void compute() {
// If number of elements is below the sequential threshold, // then process sequentially.
if((end – start) < seqThreshold) { // Transform each element into its square root. for(int i = start; i < end; i++) { data[i] = Math.sqrt(data[i]); } } else { A task based on RecursiveAction. This is where computation occurs. Process sequentially. // Otherwise, continue to break the data into smaller pieces. 1048 chapter 27 The Concurrency Utilities // Find the midpoint. int middle = (start + end) / 2; // Invoke new tasks, using the subdivided data. invokeAll(new SqrtTransform(data, start, middle), new SqrtTransform(data, middle, end)); Break the task in two. } } } // Demonstrate parallel execution. class ForkJoinDemo { public static void main(String[] args) { // Create a task pool. ForkJoinPool fjp = new ForkJoinPool(); double[] nums = new double[100000]; // Give nums some values. for(int i = 0; i < nums.length; i++) nums[i] = (double) i; System.out.println("A portion of the original sequence:"); for(int i=0; i < 10; i++) System.out.print(nums[i] + " "); System.out.println("\n"); SqrtTransform task = new SqrtTransform(nums, 0, nums.length); Create a task. // Start the main ForkJoinTask. fjp.invoke(task); Run the task. System.out.println("A portion of the transformed sequence" + " (to four decimal places):"); for(int i=0; i < 10; i++) System.out.format("%.4f ", nums[i]); System.out.println(); } } A portion of the original sequence: 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 A portion of the transformed sequence (to four decimal places): 0.0000 1.0000 1.4142 1.7321 2.0000 2.2361 2.4495 2.6458 2.8284 3.0000 As you can see, the values of the array elements have been transformed into their square roots. The output from the program is shown here: Java programming 1049 Let’s look closely at how this program works. First, notice that SqrtTransform is a class that extends RecursiveAction. As explained, RecursiveAction extends ForkJoinTask for tasks that do not return results. Next, notice the final variable seqThreshold. This is the value that determines when sequential processing will take place. This value is set (somewhat arbitrarily) to 1,000. Next, notice that a reference to the array to be processed is stored in data and that the fields start and end are used to indicate the boundaries of the elements to be accessed. The main action of the program takes place in compute( ). It begins by checking if the number of elements to be processed is below the sequential processing thresh- old. If it is, then those elements are processed (by computing their square root in this example), and then returning. If the sequential processing threshold has not been reached, then two new tasks are started by calling invokeAll( ). In this case, each subtask processes half the elements. As explained earlier, invokeAll( ) waits until both tasks return. After all of the recursive calls unwind, each element in the array will have been modified, with much of the action taking place in parallel (if multiple processors are available). Understanding the Impact of the Level of parallelism Before moving on, it is important to understand the impact that the level of parallelism has on the performance of a fork/join task and how the parallelism and the threshold interact. The program shown in this section lets you experiment with different degrees of parallelism and threshold values. Assuming that you are using a multicore com- puter, then you can interactively observe the effect of these values. In the preceding example, because the default ForkJoinPool constructor was used, the default level of parallelism was used, which is equal to the number of processors in the system. However, you can specify the level of parallelism that you want. One way shown earlier is to specify it when you create a ForkJoinPool using this constructor: ForkJoinPool(int pLevel) Here, pLevel specifies the level of parallelism, which must be greater than zero and less than the implementation-defined limit. The following program creates a fork/join task that transforms an array of doubles. The transformation is arbitrary, but it is designed to consume several CPU cycles. This was done to ensure that the effects of changing the threshold or the level of par- allelism would be more clearly displayed. To use the program, specify the threshold value and the level of parallelism on the command line. The program then runs the tasks. It also displays the amount of time it takes the tasks to run. To do this, it uses System.nanoTime( ), which returns the value of the JVM’s high-resolution timer. // A simple program that lets you experiment with the effects of // changing the threshold and parallelism of a ForkJoinTask. import java.util.concurrent.*; // A ForkJoinTask (via RecursiveAction) that performs a // a transform on the elements of an array of doubles. class Transform extends RecursiveAction { 1050 chapter 27 The Concurrency Utilities // Sequential threshold, which is set by the constructor. int seqThreshold; // Array to be accessed. double[] data; // Determines what part of data to process. int start, end; Transform(double[] vals, int s, int e, int t ) { data = vals; start = s; end = e; seqThreshold = t; } // This is the method in which parallel computation will occur. protected void compute() { // If number of elements is below the sequential threshold, // then process sequentially. if((end - start) < seqThreshold) { // The following code assigns an element at an even index the // square root of its original value. An element at an odd // index is assigned its cube root. This code is designed // to simply consume CPU time so that the effects of concurrent // execution are more readily observable. for(int i = start; i < end; i++) { if((data[i] % 2) == 0) data[i] = Math.sqrt(data[i]); else data[i] = Math.cbrt(data[i]); } } else { // Otherwise, continue to break the data into smaller pieces. // Find the midpoint. int middle = (start + end) / 2; // Invoke new tasks, using the subdivided data. invokeAll(new Transform(data, start, middle, seqThreshold), } } } new Transform(data, middle, end, seqThreshold)); // Demonstrate parallel execution. class FJExperiment { public static void main(String[] args) { int pLevel; int threshold; if(args.length != 2) { System.out.println("Usage: FJExperiment parallelism threshold "); return; Java programming 1051 } pLevel = Integer.parseInt(args[0]); threshold = Integer.parseInt(args[1]); // These variables are used to time the task. long beginT, endT; Set the level of parallelism and the sequential threshold limit as specified on the command line. // Create a task pool. Notice that the parallelism level is set. ForkJoinPool fjp = new ForkJoinPool(pLevel); double[] nums = new double[1000000]; for(int i = 0; i < nums.length; i++) nums[i] = (double) i; Transform task = new Transform(nums, 0, nums.length, threshold); // Starting timing. beginT = System.nanoTime(); // Start the main ForkJoinTask. fjp.invoke(task); // End timing. endT = System.nanoTime(); System.out.println("Level of parallelism: " + pLevel); System.out.println("Sequential threshold: " + threshold); System.out.println("Elapsed time: " + (endT - beginT) + " ns"); System.out.println(); } } To use the program, specify the level of parallelism followed by the threshold limit. You should try experimenting with different values for each, observing the results. Remember, to be effective, you must run the code on a computer with at least two processors. Also, understand that two different runs may (almost certainly will) produce different results because of the effect of other processes in the system con- suming CPU time. To give you an idea of the difference that parallelism makes, try this experiment. First, execute the program like this: java FJExperiment 1 1000 1052 chapter 27 The Concurrency Utilities This requests one level of parallelism (essentially sequential execution) with a thresh- old of 1,000. Here is a sample run produced on a dual-core computer: Level of parallelism: 1 Sequential threshold: 1000 Elapsed time: 259677487 ns Now, specify two levels of parallelism like this: java FJExperiment 2 1000 Here is sample output from this run produced by the same dual-core computer: Level of parallelism: 2 Sequential threshold: 1000 Elapsed time: 169254472 ns As is evident, adding parallelism substantially decreases execution time, thus increas- ing the speed of the program. You should experiment with varying the threshold and parallelism on your own computer. The results may surprise you. You might find two other methods useful when experimenting with the execution characteristics of a fork/join program. First, you can obtain the level of parallelism by calling getParallelism( ), which is defined by ForkJoinPool. It is shown here: int getParallelism( ) It returns the parallelism level currently in effect. Recall that, by default, this will equal the number of available processors. Second, you can obtain the number of processors available for use by the JVM by calling availableProcessors( ), which is defined by the Runtime class. It is shown here: int availableProcessors( ) an example That Uses recursiveTask
The two preceding examples are based on RecursiveAction, which means that they concurrently execute tasks that do not return results. To create a task that returns a result, use RecursiveTask. In general, solutions are designed in the same manner as just shown. The key difference is that the compute( ) method returns a result. Thus, you must aggregate the results, so that when the first invocation finishes, it returns the overall result. Another difference is that you will typically start a subtask by calling fork( ) and join( ) explicitly (rather than implicitly by calling invokeAll( ), for example).
The following program demonstrates RecursiveTask. It creates a task called Sum that returns the summation of the value in an array of double. In this example, the array consists of 5,000 elements, which contain the values 0 through 5,000. However, every other value is negative. Thus, the first values in the array are 0, –1, 2, –3, 4, and so on.
// A simple example that uses RecursiveTask. import java.util.concurrent.*;
// A RecursiveTask that computes the summation of an array of doubles.
class Sum extends RecursiveTask {
A task based on RecursiveTask.

// The sequential threshold value. final int seqThresHold = 500;
// Array to be accessed. double[] data;
// Determines what part of data to process. int start, end;
Sum(double[] vals, int s, int e ) { data = vals;
start = s;
end = e;
}
// Find the summation of an array of doubles. protected Double compute() {
double sum = 0;
// If number of elements is below the sequential threshold, // then process sequentially.
if((end – start) < seqThresHold) { // Sum the elements. for(int i = start; i < end; i++) sum += data[i]; } else { // Otherwise, continue to break the data into smaller pieces. // Find the midpoint. int middle = (start + end) / 2; // Invoke new tasks, using the subdivided data. Sum subTaskA = new Sum(data, start, middle); Sum subTaskB = new Sum(data, middle, end); Java programming 1053 // Start each subtask by forking. subTaskA.fork(); subTaskB.fork(); Use fork( ) to start the tasks. // Wait for the subtasks to return, and aggregate the results. sum = subTaskA.join() + subTaskB.join(); } // Return the final sum. return sum; } } // Demonstrate parallel execution. class RecurTaskDemo { public static void main(String[] args) { // Create a task pool. ForkJoinPool fjp = new ForkJoinPool(); Aggregate the partial results. 1054 chapter 27 The Concurrency Utilities double[] nums = new double[5000]; // Initialize nums with values that alternate between // positive and negative. for(int i=0; i < nums.length; i++) nums[i] = (double) (((i%2) == 0) ? i : -i) ; Sum task = new Sum(nums, 0, nums.length); // Start the ForkJoinTasks. Notice that, in this case, // invoke() returns a result. double summation = fjp.invoke(task); System.out.println("Summation " + summation); } } Here’s the output from the program: Summation -2500.0 There are a couple of interesting items in this program. First, notice that the two subtasks are executed by calling fork( ), as shown here: subTaskA.fork(); subTaskB.fork(); In this case, fork( ) is used because it starts a task but does not wait for it to finish. (Thus, it asynchronously runs the task.) The result of each task is obtained by calling join( ), as shown here: sum = subTaskA.join() + subTaskB.join(); This statement waits until each task ends. It then adds the results of each and assigns the total to sum. Thus, the summation of each subtask is added to the running total. Finally, compute( ) ends by returning sum, which will be the final total when the first invocation returns. There are other ways to approach the handling of the asynchronous execution of the subtasks. For example, the following sequence uses fork( ) to start subTaskA( ) and uses invoke( ) to start and wait for subTaskB( ): subTaskA.fork(); sum = subTaskB.invoke() + subTaskA.join(); Another alternative is to have subTaskB( ) call compute( ) directly, as shown here: subTaskA.fork(); sum = subTaskB.compute() + subTaskA.join(); executing a Task asynchronously The preceding programs have called invoke( ) on a ForkJoinPool to initiate a task. This approach is commonly used when the calling thread must wait until the task has Java programming 1055 completed (which is often the case) because invoke( ) does not return until the task has terminated. However, you can start a task asynchronously. In this approach, the calling thread continues to execute. Thus, both the calling thread and the task execute simultaneously. To start a task asynchronously, use execute( ), which is also defined by ForkJoinPool. It has the two forms shown here: void execute(ForkJoinTask task) void execute(Runnable task)
In both forms, task specifies the task to run. Notice that the second form lets you specify a Runnable rather than a ForkJoinTask task. Thus, it forms a bridge between Java’s traditional approach to multithreading and the new Fork/Join Framework. It is important to remember that the threads used by a ForkJoinPool are daemon. Thus, they will end when the main thread ends. As a result, you may need to keep the main thread alive until the tasks have finished.
The ConCUrrenCy UTILITIes versUs
Java’s TraDITIonaL approaCh
Given the power and flexibility found in the concurrency utilities, it is natural to ask the following question: Do they replace Java’s traditional approach to multithreading and synchronization? The answer is no! The original support for multithreading and the built-in synchronization features are still the mechanism that should be employed for many Java programs. For example, synchronized, wait( ), and notify( ) offer elegant solutions to a wide range of problems. However, when extra control is needed, the concurrency utilities are available to handle the chore. Furthermore, the Fork/Join Framework offers a powerful way to integrate parallel programming techniques into your more sophisticated applications.
1. How does a RecursiveAction differ from a RecursiveTask?
2. In a ForkJoinTask, the _________ method schedules the task for execution, and the _______ method waits until the task is completed and returns the result.
3. The __________ method in the ForkJoinTask class is a method that combines
calls to fork( ) and join( ).
Answers:
1. A RecursiveTask returns a result but a RecursiveAction does not.
2. fork( ) and join( )
3. invoke( )
progress Check

1056 chapter 27 The Concurrency Utilities exerCIses
1. How does a semaphore work?
2. In the SemDemo program in this chapter, what happens if you add a call
to sem.release( ) immediately before both of the calls to sem.acquire( )?
Explain.
3. In the SemDemo program in this chapter, what happens if you replace each
of the two calls to sem.acquire( ) with sem.acquire(2)? Explain.
4. Consider a horse race where the horses and riders need to line up at the gate and wait there until all the horses and riders are ready before the gate opens
and the horses can start racing. What Java synchronization tool does this
situation remind you of?
5. Suppose you add the statement System.out.println(name); as the last state-
ment of the run( ) method of the MyThread class in the BarDemo program. In that case, “Barrier reached!” would be displayed before the names “A”, “B”, and “C” are displayed a second time. True or False? Explain.
6. Using an Exchanger, it is possible that a String can be exchanged for an Integer. True or False?
7. If a thread attempts to get the value of a Future object before its value has been computed, then an exception is thrown. True or False?
8. A Callable object is like a Runnable object except that it represents a thread that ____________.
9. A ForkJoinPool uses an approach called “work-stealing” to execute waiting tasks. What does “work-stealing” mean?
10. A very appropriate strategy to use with the Fork/Join Framework is “divide and conquer.” How does that strategy work?
11. In the RecurTaskDemo program, the compute( ) method of the Sum class includes the following three lines:
subTaskA.fork();
subTaskB.fork();
sum = subTaskA.join() + subTaskB.join();
Since the invoke( ) method is a combined fork and join, why not just call invoke( ) for each subtask? That is, why not replace those three lines with the following line?
sum = subtaskA.invoke() + subtaskB.invoke();
12. Modify the CDLDemo program in this chapter so that it creates two MyThread objects instead of just one. Then run the program and explain the output you get.
13. Suppose you were to modify the SemDemo program in this chapter so that it creates two Semaphores with permit counts of 1 and each of the two threads needs to acquire both semaphores before it can access the shared resource.

Java programming 1057
What can go wrong if the two threads try to acquire the two semaphores but
in the opposite order?
14. Here is a simple program that creates and starts two threads of the same
class. In the run( ) method of the threads, there are two print statements, the first of which outputs “before” and the second outputs “after”. There are two possible outputs: “before after before after” and “before before after after”. Modify the program using a CountDownLatch to ensure that the first pos- sible output, namely, “before after before after”, never occurs.
class Exercise {
public static void main(String[] args) {
new MyThread();
new MyThread(); }
}
class MyThread implements Runnable { MyThread() {
new Thread(this).start(); }
public void run() { System.out.print(“before “); System.out.print(“after “);
} }
15. Redo the preceding exercise using a CyclicBarrier instead of a CountDownLatch.
16. In the BarDemo program in this chapter, what would happen if you replaced the value 3 with the value 4 as the first argument to the CyclicBarrier constructor? Explain.
17. In the ExgrDemo program, the UseString class’s run( ) method contains the line:
str = ex.exchange(new String());
What would happen if you replaced that line with the line:
str = ex.exchange(str);
that appears in the run( ) method of the MakeString class? Explain.
18. An Exchanger is very useful if two threads need to exchange values, but
what if three threads need to exchange values? More precisely, suppose you have three threads A, B, and C and you want to exchange values among them so that A’s value is passed to B, B’s value is passed to C, and C’s value is passed to A. Explain how you could do it.
19. Suppose you have three threads A, B, and C with time-consuming jobs, such as downloading large files. Suppose you want to start the threads all at the same time, but you want them to do their jobs sequentially in the order A, B, C instead of concurrently. Tell how you can use a Phaser to accomplish your goal.

1058 chapter 27 The Concurrency Utilities
20. Modify the program in Try This 27-1 so that, instead of a rectangle, it dis-
plays a triangle of stars like this:
**** *** **
*
It should use four threads as before, each responsible for drawing at most
one star per phase.
21. Modify the SimpExec program in this chapter so that MyThread’s run( )
method sleeps for 10 milliseconds between each call to countDown( ). Then run the program four times, each time using a different value (1, 2, 3, or 4) as the argument to the newFixedThreadPool( ) method. Explain the results you see.
22. In the CallableDemo program in this chapter, add a fourth Callable whose constructor takes an integer array as its parameter and whose call( ) method returns the largest value in the array. It throws an Exception if the array is null or empty.
23. Look up the documentation for the get( ) and set( ) methods in the AtomicInteger class. Assume that ai is an AtomicInteger. Does the atomic nature of ai’s operations guarantee that, by executing ai.set(ai.get( ) – ai.get( )), ai will have the value 0?
24. Modify the RecurTaskDemo program so that instead of finding and display- ing the sum of the elements of an array of doubles, it finds and displays the largest value in the array.

aPPeNDIX
Using Java’s Documentation Comments
As explained in Part I, Java supports three types of comments. The first two are the // and the /* */. The third type is called a documentation comment. It begins with the character sequence /**. It ends with */. Documentation comments allow you to embed information about your program into the program itself. You can then use the javadoc utility program (supplied with the JDK) to extract the information and put it into an HTML file. Documentation comments make it convenient to document your programs. You have almost certainly seen documentation generated with javadoc because that is the way the Java API library was documented.
The javadoc Tags
The javadoc utility recognizes the following tags:
Tag
Meaning
@author
Identifies the author.
{@code}
Displays information as-is, without processing HTML styles, in code font.
@deprecated
Specifies that a program element is deprecated.
{@docRoot}
Specifies the path to the root directory of the current documentation.
@exception
Identifies an exception thrown by a method or constructor.
{@inheritDoc}
Inherits a comment from the immediate superclass.
{@link}
Inserts an in-line link to another topic.
{@linkplain}
Inserts an in-line link to another topic, but the link is displayed in a plain-text font.
{@literal}
Displays information as-is, without processing HTML styles.
@param
Documents a parameter.
@return
Documents a method’s return value.
1059
a

1060 appendix A Using Java’s Documentation Comments
@see
Specifies a link to another topic.
@serial
Documents a default serializable field.
@serialData
Documents the data written by the writeObject( ) or writeExternal( ) methods.
@serialField
Documents an ObjectStreamField component.
@since
States the release when a specific change was introduced.
@throws
Same as @exception.
{@value}
Displays the value of a constant, which must be a static field.
@version
Specifies the version of a class.
Document tags that begin with an “at” sign (@) are called stand-alone tags, and they must be used on their own line. Tags that begin with a brace, such as {@code}, are called in-line tags, and they can be used within a larger description. You may also use other, standard HTML tags in a documentation comment. However, some tags, such as headings, should not be used because they disrupt the look of the HTML file produced by javadoc.
As it relates to documenting source code, you can use documentation comments to document classes, interfaces, fields, constructors, and methods. In all cases, the documentation comment must immediately precede the item being documented. Some tags, such as @see, @since, and @deprecated, can be used to document any element. Other tags apply only to the relevant elements. Each tag is examined next.
Note: Documentation comments can also be used for documenting a package and preparing an overview, but the procedures differ from those used to document source code. See the JDK javadoc documentation for details on these uses. This appendix refers only to documentation comments in a Java program.
@author
The @author tag documents the author of a class or interface. It has the following syntax:
@author description
Here, description will usually be the name of the author. You will need to specify the -author option when executing javadoc in order for the @author field to be included in the HTML documentation.
{@code}
The {@code} tag enables you to embed text, such as a snippet of code, into a com- ment. That text is then displayed as-is in code font, without any further processing, such as HTML rendering. It has the following syntax:
{@code code-snippet}

@deprecated
The @deprecated tag specifies that a program element is deprecated. It is recom- mended that you include @see or {@link} tags to inform the programmer about avail- able alternatives. The syntax is the following:
@deprecated description
Here, description is the message that describes the deprecation. The @deprecated tag
can be used in documentation for fields, methods, constructors, classes, and interfaces.
{@docRoot}
{@docRoot} specifies the path to the root directory of the current documentation. @exception
The @exception tag describes an exception to a method. It has the following syntax: @exception exception-name explanation
Here, the name of the exception is specified by exception-name, and explanation is a string that describes how the exception can occur. The @exception tag can be used only in documentation for a method or constructor.
{@inheritDoc}
This tag inherits a comment from the immediate superclass.
{@link}
The {@link} tag provides an in-line link to additional information. It has the follow- ing syntax:
{@link pkg.class#member text}
Here, pkg.class#member specifies the name of a class or method to which a link is
added, and text is the string that is displayed. {@linkplain}
Inserts an in-line link to another topic. The link is displayed in plain-text font. Otherwise, it is similar to {@link}.
{@literal}
The {@literal} tag enables you to embed text into a comment. That text is then displayed as-is, without any further processing, such as HTML rendering. It has the following syntax:
{@literal description}
Here, description is the text that is embedded.
Java Programming 1061

1062 appendix A Using Java’s Documentation Comments @param
The @param tag documents a parameter. It has the following syntax: @param parameter-name explanation
Here, parameter-name specifies the name of a parameter. The meaning of that param- eter is described by explanation. The @param tag can be used only in documentation for a method or constructor, or a generic class or interface.
@return
The @return tag describes the return value of a method. It has the following syntax: @return explanation
Here, explanation describes the type and meaning of the value returned by a method. The @return tag can be used only in documentation for a method.
@see
The @see tag provides a reference to additional information. Two commonly used forms are shown here:
@see anchor
@see pkg.class#member text
In the first form, anchor is a link to an absolute or relative URL. In the second form, pkg.class#member specifies the name of the item, and text is the text displayed for that item. The text parameter is optional, and if not used, then the item specified by pkg.class#member is displayed. The member name, too, is optional. Thus, you can specify a reference to a package, class, or interface in addition to a reference to a specific method or field. The name can be fully qualified or partially qualified. However, the dot that precedes the member name (if it exists) must be replaced by a hash character.
@serial
The @serial tag defines the comment for a default serializable field. It has the fol- lowing syntax:
@serial description
Here, description is the comment for that field.
@serialData
The @serialData tag documents the data written by the writeObject( ) and writeExternal( ) methods. It has the following syntax:
@serialData description
Here, description is the comment for that data.

Java Programming 1063 For a class that implements Serializable, the @serialField tag provides comments for
an ObjectStreamField component. It has the following syntax: @serialField name type description
Here, name is the name of the field, type is its type, and description is the comment for that field.
@since
The @since tag states that an element was introduced in a specific release. It has the following syntax:
@since release
Here, release is a string that designates the release or version in which this feature
became available.
@throws
The @throws tag has the same meaning as the @exception tag. {@value}
{@value} has two forms. The first displays the value of the constant that it precedes, which must be a static field. It has this form:
{@value}
The second form displays the value of a specified static field. It has this form:
{@value pkg.class#field}
Here, pkg.class#field specifies the name of the static field.
@version
The @version tag specifies the version of a class or interface. It has the following syntax:
@version info
Here, info is a string that contains version information, typically a version number, such as 2.2. You will need to specify the -version option when executing javadoc in order for the @version field to be included in the HTML documentation.
The geNeRal FoRm oF a DoCUmeNTaTIoN
CommeNT
After the beginning /**, the first line or lines become the main description of your class, interface, field, constructor, or method. After that, you can include one or more of the various @ tags. Each @ tag must start at the beginning of a new line or follow one or more asterisks (*) that are at the start of a line. Multiple tags of the same type
@serialField

1064 appendix A Using Java’s Documentation Comments
should be grouped together. For example, if you have three @see tags, put them one after the other. In-line tags (those that begin with a brace) can be used within any description.
Here is an example of a documentation comment for a class:
/**
* This class draws a bar chart.
* @author Herbert Schildt
* @version 3.2
*/
WhaT javadoc oUTPUTs
The javadoc program takes as input your Java program’s source file and outputs sev- eral HTML files that contain the program’s documentation. Information about each class will be in its own HTML file. javadoc will also output an index and a hierarchy tree. Other HTML files can be generated.
aN eXamPle ThaT Uses DoCUmeNTaTIoN
CommeNTs
Following is a sample program that uses documentation comments. Notice the way each comment immediately precedes the item that it describes. After being pro- cessed by javadoc, the documentation about the SquareNum class will be found in SquareNum.html.
import java.io.*; /**
* This class demonstrates documentation comments.
* @author Herbert Schildt
* @version 1.2
*/
public class SquareNum {
/**
* This method returns the square of num.
* This is a multiline description. You can use
* as many lines as you like.
* @param num The value to be squared.
* @return num squared as a double.
*/
public double square(double num) {
return num * num; }
/**
* This method inputs a number from the user. * @return The value input as a double.
* @exception IOException On input error.

* @see IOException */
public double getNumber() throws IOException {
// create a BufferedReader using System.in InputStreamReader isr = new InputStreamReader(System.in); BufferedReader inData = new BufferedReader(isr);
String str;
str = inData.readLine();
return (new Double(str)).doubleValue(); }
/**
* This method demonstrates square().
* @param args Unused.
* @exception IOException On input error.
* @see IOException
*/
public static void main(String[] args)
throws IOException {
SquareNum ob = new SquareNum(); double val;
System.out.println(“Enter value to be squared: “); val = ob.getNumber();
val = ob.square(val);
System.out.println(“Squared value is ” + val); }
}
Java Programming 1065

APPENDIX
An Introduction to Regular Expressions
This appendix presents a brief introduction to what is both a powerful and some- times complicated feature: the regular expression. As the term is used here, a regular expression is a string of characters that describes a general form, called a pattern. This pattern can then be used to find matches in other character sequences. Through the use of regular expressions you can perform sophisticated pattern matching operations. For example, regular expressions can specify a wildcard character, sets of characters, and various quantifiers. These and other elements let a regular expression match many different sequences with great flexibility.
Java provides extensive support for regular expressions in the java.util.regex package. It defines two classes that support regular expression processing: Pattern and Matcher. These classes work together. Pattern defines a regular expression. The pattern is matched against another sequence using Matcher.
THE Pattern CLASS
The Pattern class defines no constructors. Instead, a pattern is created by calling its compile( ) method. One of its forms is shown here:
static Pattern compile(String pattern)
Here, pattern is the regular expression that you want to use. The compile( ) method transforms the string in pattern into a pattern that can be used for pattern matching by the Matcher class. It returns a Pattern object that contains the pattern. If pattern does not represent a legal expression, a PatternSyntaxException will be thrown.
Once you have created a Pattern object, you will use it to create a Matcher. This is done by calling the matcher( ) method defined by Pattern. It is shown here:
Matcher matcher(CharSequence str)
Here str is the character sequence that the pattern will be matched against. This is called the input sequence. As mentioned in Chapter 23, a CharSequence is an
1067
B

1068 appendix b An Introduction to Regular Expressions
interface that defines a read-only set of characters. It is implemented by the String
class, among others. Thus, you can pass a string to matcher( ). THE Matcher CLASS
The Matcher class has no constructors. Instead, you create a Matcher by calling the matcher( ) method defined by Pattern, as just explained. Once you have created a Matcher, you will use its methods to perform various pattern matching operations.
The simplest pattern matching method is matches( ), which simply determines whether the character sequence matches the pattern. It is shown here:
boolean matches( )
It returns true if the sequence and the pattern match, and false otherwise. Understand that the entire sequence must match the pattern, not just a subsequence of it.
To determine if a subsequence of the input sequence matches the pattern, use find( ). One version is shown here:
boolean find( )
It returns true if there is a matching subsequence and false otherwise. This method can be called repeatedly, allowing it to find all matching subsequences. Each call to find( ) begins where the previous one left off.
You can obtain a string containing the currently matching sequence by calling group( ). One of its forms is shown here:
String group( )
The matching string is returned. If no match exists, then an IllegalStateException is thrown.
You can obtain the index within the input sequence of the current match by calling start( ). The index that is one past the end of the current match is obtained by calling end( ). One form of each of these methods is shown here:
int start( ) int end( )
Both throw IllegalStateException if no match exists.
You can replace all occurrences of a matching sequence with another sequence by
calling replaceAll( ), shown here: String replaceAll(String newStr)
Here, newStr specifies the new character sequence that will replace the ones that match the pattern. The updated input sequence is returned as a string.
REguLAR EXPRESSIoN SyNTAX BASICS
Before demonstrating Pattern and Matcher, it is necessary to explain how to con- struct a regular expression. Although no rule is complicated by itself, there are a large number of them, and a complete discussion is beyond the scope of this book. However, a few of the fundamental constructs are described here.

In general, a regular expression is comprised of normal characters, character classes (sets of characters), the wildcard character, and quantifiers. A normal charac- ter is matched as-is. Thus, if a pattern consists of “xy”, then the only input sequence that will match it is “xy”. Characters such as newline and tab are specified using the standard escape sequences, which begin with a \. For example, a newline is specified by \n. In the language of regular expressions, a normal character is also called a literal.
A character class is a set of characters. A character class is specified by putting the characters in the class between brackets. For example, the class [wxyz] matches w, x, y, or z. To specify an inverted set, precede the characters with a ^. For example, [^wxyz] matches any character except w, x, y, or z. You can specify a range of char- acters using a hyphen. For example, to specify a character class that will match the digits 1 through 9, use [1-9]. Java also provides several predefined classes. Here are two examples: the class \d matches the digits 0 through 9 and the class \w matches characters that can be part of a word.
Another predefined class is the . (dot). It is, essentially, a wildcard character because it matches any character except a line terminator. (It is possible to alter the behavior of the dot to also catch line terminators, but we won’t do so here.) Thus, a pattern that consists of “.” will match these (and other) input sequences: “A”, “a”, “x”, and so on.
A quantifier determines how many times an expression is matched. Here are the basic quantifiers:
For example, the pattern “x+” will match “x”, “xx”, and “xxx”, among others. As you will see shortly, these quantifiers are called greedy because of their behavior.
DEMoNSTRATINg PATTERN MATCHINg
The best way to understand how regular expression pattern matching operates is to work through some examples. The first, shown here, looks for a match with a literal pattern:
// A simple pattern matching demo. import java.util.regex.*;
class RegExpr {
public static void main(String[] args) {
Pattern pat; Matcher mat; boolean found;
pat = Pattern.compile(“Alpha”);
mat = pat.matcher(“Alpha”);
found = mat.matches(); // check for a match
Java Programming 1069
+
Match one or more.
*
Match zero or more.
?
Match zero or one.

1070 appendix b An Introduction to Regular Expressions
System.out.println(“Testing Alpha against Alpha.”); if(found) System.out.println(“Matches”);
else System.out.println(“No Match”);
System.out.println();
System.out.println(“Testing Alpha against Alpha Beta Gamma.”); mat = pat.matcher(“Alpha Beta Gamma”); // create a new matcher
found = mat.matches(); // check for a match
if(found) System.out.println(“Matches”);
else System.out.println(“No Match”); }
}
The output from the program is shown here:
Testing Alpha against Alpha. Matches
Testing Alpha against Alpha Beta Gamma. No Match
Let’s look closely at this program. The program begins by creating the pattern that contains the sequence “Alpha”. Next, a Matcher is created for that pattern that has the input sequence “Alpha”. Then, the matches( ) method is called to determine if the input sequence matches the pattern. Because the sequence and the pattern are the same, matches( ) returns true. Next, a new Matcher is created with the input sequence “Alpha Beta Gamma”, and matches( ) is called again. In this case, the pat- tern and the input sequence differ, and no match is found. Remember, the matches( ) function returns true only when the input sequence precisely matches the pattern. It will not return true just because a subsequence matches.
You can use find( ) to determine if the input sequence contains a subsequence that matches the pattern. Consider the following program:
// Use find() to find a subsequence. import java.util.regex.*;
class RegExpr2 {
public static void main(String[] args) {
Pattern pat = Pattern.compile(“Alpha”); Matcher mat = pat.matcher(“Alpha Beta Gamma”);
System.out.println(“Looking for Alpha in Alpha Beta Gamma.”);
if(mat.find()) System.out.println(“subsequence found”);
else System.out.println(“No Match”); }
}

The output is shown here:
Looking for Alpha in Alpha Beta Gamma. subsequence found
In this case, find( ) finds the subsequence “Alpha”.
The find( ) method can be used to search the input sequence for repeated occur-
rences of the pattern because each call to find( ) picks up where the previous one left off. For example, the following program finds two occurrences of the pattern “Beta”:
// Use find() to find multiple subsequences. import java.util.regex.*;
class RegExpr3 {
public static void main(String[] args) {
Pattern pat = Pattern.compile(“Beta”);
Matcher mat = pat.matcher(“Alpha Beta Gamma Beta Theta”);
while(mat.find()) {
System.out.println(“Beta found at index ” + mat.start());
} }
}
The output is shown here:
Beta found at index 6 Beta found at index 17
As the output shows, two matches were found. The program uses the start( ) method to obtain the index of each match.
uSINg THE WILDCARD CHARACTER
AND QuANTIfIERS
Although the preceding programs show the general technique for using Pattern and Matcher, they don’t show their power. The real benefit of regular expression pro- cessing is not seen until the wildcard and quantifiers are used. To begin, consider the following example that uses the + quantifier to match any arbitrarily long sequence of Ws. Recall that + matches an expression one or more times.
// Use a quantifier. import java.util.regex.*;
class RegExpr4 {
public static void main(String[] args) {
Pattern pat = Pattern.compile(“W+”); Matcher mat = pat.matcher(“W WW WWW”);
while(mat.find())
System.out.println(“Match: ” + mat.group());
} }
Java Programming 1071

1072 appendix b An Introduction to Regular Expressions The output from the program is shown here:
Match: W Match: WW Match: WWW
As the output shows, the regular expression pattern “W+” matches any arbitrarily long sequence of Ws.
The next program uses a wildcard to create a pattern that will match any sequence of length 3 or more that begins with e and ends with d. To do this, it uses the dot character along with the + quantifier.
// Use wildcard and quantifier. import java.util.regex.*;
class RegExpr5 {
public static void main(String[] args) {
Pattern pat = Pattern.compile(“e.+d”);
Matcher mat = pat.matcher(“extend cup end table”);
while(mat.find())
System.out.println(“Match: ” + mat.group());
} }
You might be surprised by the output produced by the program, which is shown here:
Match: extend cup end
Only one match is found, and it is the longest sequence that begins with e and ends with d. You might have expected two matches: “extend” and “end”. The reason that the longer sequence is found is that by default, find( ) matches the longest sequence that fits the pattern. This is called greedy behavior. All three of the basic quantifiers exhibit greedy behavior. Thus, they are called the greedy quantifiers.
You can use two other types of quantifier behavior. They are reluctant and posses- sive. You can specify reluctant behavior by adding a ? to the quantifier. Therefore, the reluctant quantifiers are +?, *?, and ??. The reluctant quantifiers cause the shortest matching pattern to be obtained. For example, if you substitute “e.+?d” for the regular expression in the previous program you will see the following output:
Match: extend Match: end
As the output shows, the pattern “e.+?d” matches the shortest sequence of length 3 or more that begins with e and ends with d. Thus, two matches are found.
A possessive quantifier will match the longest sequence it can, even if matching a shorter sequence would enable the entire regular expression match to succeed. A pos- sessive quantifier is created by appending a +. Thus, the possessive quantifiers are ++, *+, and ?+. For example, if you substitute “e.++d” into the preceding program as the pattern, it will report no matches because the .++ consumes all the characters to the end of the string. Thus, there is no match for the d.

Java Programming 1073
One other point: there are forms of the quantifiers that let you specify how many times you want to match a pattern. This is done by enclosing a count after the quanti- fier, between braces. Other variations let you specify the minimum number of times to match, or a range of times to match.
WoRkINg WITH CLASSES of CHARACTERS
Sometimes you will want to match any sequence that contains one or more characters, in any order, that are part of a set of characters. For example, to match whole words, you want to match any sequence of the letters of the alphabet. One of the easiest ways to do this is to use a character class, which defines a set of characters. Recall that a character class is created by putting the characters you want to match between brackets. For example, to match the lowercase characters a through z, use [a-z]. The following program demonstrates this technique:
// Use a character class. import java.util.regex.*;
class RegExpr6 {
public static void main(String[] args) {
// Match lowercase words.
Pattern pat = Pattern.compile(“[a-z]+”); Matcher mat = pat.matcher(“this is a test.”);
while(mat.find())
System.out.println(“Match: ” + mat.group());
} }
The output is shown here:
Match: this Match: is Match: a Match: test
uSINg replaceAll( )
The replaceAll( ) method supplied by Matcher lets you perform powerful search and replace operations that use regular expressions. For example, the following program replaces all occurrences of sequences that begin with “Jon” with “Eric”:
// Use replaceAll(). import java.util.regex.*;
class RegExpr7 {
public static void main(String[] args) {
String str = “Jon Jonathan Frank Ken Todd”;

1074 appendix b An Introduction to Regular Expressions Pattern pat = Pattern.compile(“Jon.*? “);
Matcher mat = pat.matcher(str);
System.out.println(“Original sequence: ” + str);
str = mat.replaceAll(“Eric “);
System.out.println(“Modified sequence: ” + str); }
}
The output is shown here:
Original sequence: Jon Jonathan Frank Ken Todd Modified sequence: Eric Eric Frank Ken Todd
Because the regular expression “Jon.*?” reluctantly matches any string that begins with Jon followed by zero or more characters, ending in a space, it can be used to match and replace both Jon and Jonathan with the name Eric. Such a substitution would be more difficult without pattern matching capabilities.
THE String CLASS CoNNECTIoN
When working with Strings, you can perform a pattern match without creating a Matcher or a Pattern directly. To do so, use the matches( ) method provided by String. It is shown here:
boolean matches(String pattern)
If the invoking string matches the regular expression in pattern, then matches( ) returns true. Otherwise, it returns false. If pattern does not represent a legal expres- sion, a PatternSyntaxException will be thrown. The matches( ) method of String is very convenient when only an occasional match is required.
THINgS To EXPLoRE
This brief introduction to regular expressions presented several key features. However, there is much more to regular expressions. Here are some areas to explore: working with groups, the OR operator, using boundary matchers, and the use of vari- ous flags. Also, both Pattern and Matcher define additional methods beyond those mentioned here that you will find helpful in some cases. Here are two examples. Pattern defines the split( ) method that lets you reduce a string to its individual parts. The replaceFirst( ) method of Matcher replaces the first match of a regular expres- sion with a specified string.

APPENDIX
Answers to selected Exercises
ChAPtEr 1 ANswErs to sElECtED EXErCIsEs
1. Name the three necessary pieces of a computer. The CPU, memory, and input/output device.
2. What is source code? What is object code?
Source code is the human-readable form of a program. Object code is the program’s
executable form.
3. What is the value 14 in binary? What is decimal equivalent of this binary number 1010 0110?
14 in binary is 1110. The value 1010 0110 in decimal is 166.
4. As a general rule, a byte is comprised of __________ bits.
8
5. Whatisbytecode,andwhyisitimportanttoJava’suseforInternetprogramming?
Bytecode is a highly optimized set of instructions that is executed by the Java Virtual Machine.
Bytecode helps Java achieve both portability and security.
6. What are the three main principles of object-oriented programming?
Encapsulation, polymorphism, and inheritance.
7. Where do Java programs begin execution?
Java programs begin execution at main( ).
8. What is a variable?
A variable is a named memory location. The contents of a variable can be changed during the execution of a program.
9. Which of the following variable names is invalid?
The invalid variable is D. Variable names cannot begin with a digit.
1075
C

1076 appendix c Answers to selected Exercises
10. How do you create a single-line comment? How do you create a multiline
comment?
A single-line comment begins with // and ends at the end of the line. A multiline comment
begins with /* and ends with */.
11. Show the general form of the if statement. Show the general form of the
for loop.
The general form of the if:
if(condition) statement; The general form of the for:
for(initialization; condition; iteration) statement;
12. How do you create a block of code?
A block of code is started with a { and ended with a }.
13. The moon’s gravity is about 17 percent that of the earth’s. Write a program that computes your effective weight on the moon.
/*
Compute your weight on the moon.
Call this file Moon.java. */
class Moon {
public static void main(String[] args) {
double earthWeight; // weight on earth double moonWeight; // weight on moon
earthWeight = 165;
moonWeight = earthWeight * 0.17; System.out.println(earthWeight +
” earth-pounds is equivalent to ” + moonWeight + ” moon-pounds.”);
} }
14. Adapt Try This 1-2 so that it prints a conversion table of inches to meters. Display 12 feet of conversions, inch by inch. Output a blank line every 12 inches. (One meter equals approximately 39.37 inches.)
/*
This program displays a conversion table of inches to meters.
Call this program InchToMeterTable.java. */
class InchToMeterTable {
public static void main(String[] args) {

double inches, meters; int counter;
counter = 0;
for(inches = 1; inches <= 144; inches++) { meters = inches / 39.37; // convert to meters System.out.println(inches + " inches is " + meters + " meters."); counter++; // every 12th line, print a blank line if(counter == 12) { System.out.println(); counter = 0; // reset the line counter } } } } 15. If you make a typing mistake when entering your program, what sort of error will result? A syntax error. 16. Does it matter where on a line you put a statement? No, Java is a free-form language. ChAPtEr 2: ANswErs to sElECtED EXErCIsEs 1. Why does Java strictly specify the range and behavior of its primitive types? Java strictly specifies the range and behavior of its primitive types to ensure portability across platforms. 2. What is Java’s character type, and how does it differ from the character type used by some other programming languages? Java’s character type is char. Java characters are Unicode rather than ASCII, which is used by some other computer languages. 3. A boolean value can have any value you like because any non-zero value is true. True or False? False. A boolean value must be either true or false. 4. Given this output, One Two Three use a single string to show the println( ) statement that produced it. System.out.println("One\nTwo\nThree"); Java Programming 1077 1078 appendix c Answers to selected Exercises 5. What is wrong with this fragment? for(i = 0; i < 10; i++) { int sum; sum = sum + i; } System.out.println("Sum is: " + sum); There are three fundamental flaws in the fragment. First, sum is created each time the block created by the for loop is entered and destroyed on exit. Thus, it will not hold its value between iterations. Attempting to use sum to hold a running sum of the iterations is point- less. Second, sum will not be known outside of the block in which it is declared. Thus, the reference to it in the println( ) statement is invalid. Finally, sum is not initialized. 6. Explain the difference between the prefix and postfix forms of the increment operator. When the increment operator precedes its operand, Java will perform the corresponding operation prior to obtaining the operand’s value for use by the rest of the expression. If the operator follows its operand, then Java will obtain the operand’s value before incrementing. 7. Show how a short-circuit AND can be used to prevent a divide-by-zero error. if((b != 0) && (val / b == 1)) ... 8. In an expression, what type are byte and short promoted to? In an expression, byte and short are promoted to int. 9. In general, when is a cast needed? A cast is needed when a narrowing conversion is occurring. 10. Write a program that finds all of the prime numbers between 2 and 100. // Find prime numbers between 2 and 100. class Prime { public static void main(String[] args) { int i, j; boolean isprime; for(i=2; i < 100; i++) { isprime = true; // see if the number is evenly divisible for(j=2; j <= i/j; j++) // if it is, then it's not prime if((i%j) == 0) isprime = false; if(isprime) System.out.println(i + " is prime."); } } } Java Programming 1079 11. Does the use of redundant parentheses affect program performance? No. 12. Does a block define a scope? Yes. ChAPtEr 3: ANswErs to sElECtED EXErCIsEs 1. Write a program that reads characters from the keyboard until a period is received. Have the program count the number of spaces. Report the total at the end of the program. // Count spaces. class Spaces { public static void main(String[] args) throws java.io.IOException { char ch; int spaces = 0; System.out.println("Enter a period to stop."); do { ch = (char) System.in.read(); if(ch == ' ') spaces++; } while(ch != '.'); System.out.println("Spaces: " + spaces); } } 2. Show the general form of the if-else-if ladder. if(condition) statement; else if(condition) statement; else if(condition) statement; . . . else statement; 1080 appendix c Answers to selected Exercises 3. Given if(x < 10) if(y > 100) {
if(!done) x = z;
else y = z; }
else System.out.println(“error”); // what if?
to what if does the last else associate? The last else associates with if(y > 100).
4. Show the for statement for a loop that counts from 1000 to 0 by –2. for(int i = 1000; i >= 0; i -= 2) // …
5. Is the following fragment valid? for(int i = 0; i < num; i++) sum += i; count = i; No; i is not known outside of the for loop in which it is declared. 6. Explain what break does. Be sure to explain both of its forms. A break without a label causes termination of its immediately enclosing loop or switch statement. A break with a label causes control to transfer to the end of the labeled statement or block. 7. In the following fragment, after the break statement executes, what is displayed? for(i = 0; i < 10; i++) { while(running) { if(x= ‘a’ & ch <= 'z') { ch -= 32; changes++; System.out.println(ch); } Java Programming 1081 1082 appendix c Answers to selected Exercises else if(ch >= ‘A’ & ch <= 'Z') { ch += 32; changes++; System.out.println(ch); } } while(ch != '.'); System.out.println("Case changes: " + changes); } } 11. What is an infinite loop? An infinite loop is a loop that runs indefinitely. 12. When using break with a label, must the label be on a statement or block that contains the break? Yes. ChAPtEr 4: ANswErs to sElECtED EXErCIsEs 1. What is the difference between a class and an object? A class is a logical abstraction that describes the form and behavior of an object. An object is a physical instance of the class. 2. How is a class defined? A class is defined by using the keyword class. Inside the class statement, you specify the code and data that comprise the class. 3. What does each object have its own copy of? Each object of a class has its own copy of the class’s instance variables. 4. Using two separate statements, show how to declare a variable called counter of a class called MyCounter and assign it a new object of that class. MyCounter counter; counter = new MyCounter(); 5. Show how a method called myMeth( ) is declared if it has a return type of double and has two int parameters called a and b. double myMeth(int a, int b) { // ... 6. How must a method return if it returns a value? A method that returns a value must return via the return statement, passing back the return value in the process. 7. What name does a constructor have? A constructor has the same name as its class. Java Programming 1083 The new operator allocates memory for an object and initializes it using the object’s constructor. 9. What is garbage collection and how does it work? What is finalize( )? Garbage collection is the mechanism that recycles unused objects so that their memory can be reused. An object’s finalize( ) method is called just prior to an object being re- cycled. It is not used by most Java programs. 10. What is this? The this keyword is a reference to the object on which a method is invoked. It is automatically passed to a method. 11. Can a constructor have one or more parameters? Yes. 12. If a method returns no value, what must its return type be? void ChAPtEr 5: ANswErs to sElECtED EXErCIsEs 1. Show two ways to declare a one-dimensional array of 12 doubles. double x[] = new double[12]; double[] x = new double[12]; 2. Show how to initialize a one-dimensional array of integers to the values 1 through 5. int[] x = { 1, 2, 3, 4, 5 }; 3. Write a program that uses an array to find the average of 10 double values. Use any 10 values you like. // Average 10 double values. class Avg { public static void main(String[] args) { double[] nums = { 1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8, 9.9, 10.1 }; double sum = 0; for(int i=0; i < nums.length; i++) sum += nums[i]; System.out.println("Average: " + sum / nums.length); } } 8. What does new do? 1084 appendix c Answers to selected Exercises 4. Change the sort in Try This 5-1 so that it sorts an array of strings. Demonstrate that it works. // Demonstrate the Bubble sort with strings. class StrBubble { public static void main(String[] args) { String[] strs = { "this", "is", "a", "test", "of", "a", "string", "sort" }; int a, b; String t; int size; size = strs.length; // number of elements to sort // display original array System.out.print("Original array is:"); for(int i=0; i < size; i++) System.out.print(" " + strs[i]); System.out.println(); // This is the bubble sort for strings. for(a=1; a < size; a++) for(b=size-1; b >= a; b–) {
if(strs[b-1].compareTo(strs[b]) > 0) { // if out of order
// exchange elements t = strs[b-1]; strs[b-1] = strs[b]; strs[b] = t;
} }
// display sorted array System.out.print(“Sorted array is:”); for(int i=0; i < size; i++) System.out.print(" " + strs[i]); System.out.println(); } } 5. What is the difference between the String methods indexOf( ) and lastIndexOf( )? The indexOf( ) method finds the first occurrence of the specified substring. lastIndexOf( ) finds the last occurrence. 6. Since all strings are objects of type String, show how you can call the length( ) and charAt( ) methods on this string literal: "I like Java". As strange as it may look, this is a valid call to length( ): System.out.println("I like Java".length()); The output displayed is 11. charAt( ) is called in a similar fashion. Java Programming 1085 7. Expanding on the SimpleCipher class, modify it so that it uses an eight- character string as the key. // An improved XOR cipher. class SimpleCipher2 { public static void main(String[] args) { String String String String int j; msg = "This is a test"; encMsg = ""; decMsg = ""; key = "abcdefgi"; System.out.print("Original message: "); System.out.println(msg); // encode the message j = 0; for(int i=0; i < msg.length(); i++) { encMsg = encMsg + (char) (msg.charAt(i) ^ key.charAt(j)); j++; if(j==8) j = 0; } System.out.print("Encoded message: "); System.out.println(encMsg); // decode the message j = 0; for(int i=0; i < msg.length(); i++) { decMsg = decMsg + (char) (encMsg.charAt(i) ^ key.charAt(j)); j++; if(j==8) j = 0; } System.out.print("Decoded message: "); System.out.println(decMsg); } } 8. Can the bitwise operators be applied to the double type? No. 9. Show how this sequence can be rewritten using the ? operator. if(x < 0) y = 10; else y = 20; Here is the answer: y = x < 0 ? 10 : 20; 1086 appendix c Answers to selected Exercises 10. In the following fragment, is the & a bitwise or logical operator? Why? boolean a, b; // ... if(a & b) ... It is a logical operator because the operands are of type boolean. 11. Is it an error to overrun the end of an array? Yes. Is it an error to index an array with a negative value? Yes. All array indexes start at zero. 12. What is the symbol used for the unsigned right-shift operator? >>>
13. Rewrite the MinMax class shown earlier in this chapter so that it uses a for-each style for loop.
// Find the minimum and maximum values in an array. class MinMax {
public static void main(String[] args) { int[] nums = new int[10];
int min, max;
nums[0] = 99; nums[1] = -10; nums[2] = 100123; nums[3] = 18; nums[4] = -978; nums[5] = 5623; nums[6] = 463; nums[7] = -9; nums[8] = 287; nums[9] = 49;
min = max = nums[0]; for(int v : nums) {
if(v < min) min = v; if(v > max) max = v; }
System.out.println(“min and max: ” + min + ” ” + max); }
}
14. Can the for loops that perform sorting in the Bubble class shown in Try This 5-1 be converted into for-each style loops? If not, why not?
No, the for loops in the Bubble class that perform the sort cannot be converted into for-each style loops. In the case of the outer loop, the current value of its loop counter is needed by the inner loop. In the case of the inner loop, out-of-order values must be exchanged, which implies assignments. Assignments to the underlying array cannot take place when using a for-each style loop.

15. Can a String control a switch statement? Beginning with JDK 7, the answer is Yes.
ChAPtEr 6: ANswErs to sElECtED EXErCIsEs
1. Given this fragment, class X {
private int count;
is the following fragment correct?
class Y {
public static void main(String[] args) {
X ob = new X();
ob.count = 10;
No; a private member cannot be accessed outside of its class.
2. An access modifier must __________ a member’s declaration.
precede
3. Given this class,
class Test { int a;
Test(int i) { a = i; } }
write a method called swap( ) that exchanges the contents of the objects referred to by two Test object references.
void swap(Test ob1, Test ob2) { int t;
t = ob1.a; ob1.a = ob2.a; ob2.a = t;
}
4. Is the following fragment correct?
class X {
int meth(int a, int b) { … } String meth(int a, int b) { … }
No. Overloaded methods can have different return types, but they do not play a role in overload resolution. Overloaded methods must have different parameter lists.
5. Write a recursive method that displays the contents of a string backwards.
// Display a string backwards using recursion. class Backwards {
Java Programming 1087
String str;

1088 appendix c
Answers to selected Exercises
Backwards(String s) { str = s;
}
void backward(int idx) {
if(idx != str.length()-1) backward(idx+1);
System.out.print(str.charAt(idx)); }
}
class BWDemo {
public static void main(String[] args) {
Backwards s = new Backwards(“This is a test”);
s.backward(0); }
}
6. If all objects of a class need to share the same variable, how must you declare that variable?
Shared variables are declared as static.
7. Why might you need to use a static block?
A static block is used to perform any initializations related to the class, before any objects are created.
8. What is an inner class?
An inner class is a nonstatic nested class.
9. To make a member accessible by only other members of its class, what access modifier must be used?
private
10. The name of a method plus its parameter list constitutes the method’s
__________.
signature
11. An int argument is passed to a method by using call-by-__________.
value
12. Create a varargs method called sum( ) that sums the int values passed to it. Have it return the result. Demonstrate its use.
There are many ways to craft the solution. Here is one:
class SumIt {
int sum(int … n) {
int result = 0;
for(int i = 0; i < n.length; i++) result += n[i]; return result; } } class SumDemo { public static void main(String[] args) { SumIt siObj = new SumIt(); int total = siObj.sum(1, 2, 3); System.out.println("Sum is " + total); total = siObj.sum(1, 2, 3, 4, 5); System.out.println("Sum is " + total); } } 13. Can a varargs method be overloaded? Yes. 14. Show an example of an overloaded varargs method that is ambiguous. Here is one example of an overloaded varargs method that is ambiguous: double myMeth(double ... v ) { // ... double myMeth(double d, double ... v) { // ... If you try to call myMeth( ) with one argument, like this, myMeth(1.1); the compiler can’t determine which version of the method to invoke. ChAPtEr 7 ANswErs to sElECtED EXErCIsEs 1. Does a superclass have access to the members of a subclass? Does a subclass have access to the members of a superclass? No, a superclass has no knowledge of its subclasses. Yes, a subclass has access to all nonprivate members of its superclass. 2. Create a subclass of TwoDShape called Circle. Include an area( ) method that computes the area of the circle and a constructor that uses super to initialize the TwoDShape portion. // A subclass of TwoDShape for circles. class Circle extends TwoDShape { // A default constructor. Circle() { super(); } Java Programming 1089 1090 appendix c Answers to selected Exercises // Construct Circle Circle(double x) { super(x, "circle"); // call superclass constructor } // Construct an object from an object. Circle(Circle ob) { super(ob); // pass object to TwoDShape constructor } double area() { return (getWidth() / 2) * (getWidth() / 2) * 3.1416; } } 3. How do you prevent a subclass from having access to a member of a superclass? To prevent a subclass from having access to a superclass member, declare that member as private. 4. Describe the purpose and use of both versions of super. The super keyword has two forms. The first is used to call a superclass constructor. The general form of this usage is super (param-list); The second form of super is used to access a superclass member. It has this general form: super.member 5. Given the following hierarchy, in what order are the constructors for these classes executed when a Gamma object is instantiated? class Alpha { ... class Beta extends Alpha { ... Class Gamma extends Beta { ... Constructors are always executed in order of derivation. Thus, when a Gamma object is created, the order is Alpha, Beta, Gamma. 6. A superclass reference can refer to a subclass object. Explain why this is important as it is related to method overriding. When an overridden method is called through a superclass reference, it is the type of the object being referred to that determines which version of the method is called. 7. What is an abstract class? A class with at least one abstract method is abstract. Java Programming 1091 8. How do you prevent a method from being overridden? How do you prevent a class from being inherited? To prevent a method from being overridden, declare it as final. To prevent a class from being inherited, declare it as final. 9. Explain how inheritance, method overriding, and abstract classes are used to support polymorphism. Inheritance, method overriding, and abstract classes support polymorphism by enabling you to create a generalized class structure that can be extended by a variety of classes. Thus, the abstract class defines a consistent interface that is shared by all implementing classes. This embodies the concept of “one interface, multiple methods.” 10. What class is a superclass of every other class? The Object class. 11. A class that contains at least one abstract method must itself be declared abstract. True or False? True. 12. What keyword is used to create a named constant? final ChAPtEr 8 ANswErs to sElECtED EXErCIsEs 1. “One interface, multiple methods” is a key tenet of Java. What feature best exemplifies it? The interface best exemplifies the one interface, multiple methods principle of OOP. 2. How many classes can implement an interface? An interface can be implemented by an unlimited number of classes. 3. How many interfaces can a class implement? A class can implement as many interfaces as it chooses. 4. A class declares that it implements an interface by use of a/an ____________ __________. implements clause 5. Can interfaces be extended? Yes, interfaces can be extended by other interfaces. 6. Create an interface for the Vehicle class from Chapter 7. Call the interface IVehicle. interface IVehicle { // Return the range. int range(); 1092 appendix c Answers to selected Exercises // Compute fuel needed for a given distance. double fuelNeeded(int miles); // Accessor methods. int getPassengers(); void setPassengers(int p); int getFuelCap(); void setFuelCap(int f); int getMpg(); void setMpg(int m); } 7. Variables declared in an interface are implicitly static and final. What good are they? Interface variables create named constants that can be shared by all classes in a program. They can be brought into view by implementing their interface. 8. Can one interface be a member of another? Yes. 9. Given two interfaces called Alpha and Beta, show how a class called MyClass specifies that it implements each. class MyClass implements Alpha, Beta { // ... ChAPtEr 9: ANswErs to sElECtED EXErCIsEs 1. Using the code from Try This 8-1, put the ISimpleStack interface and its two implementations into a package called stackpack. Keeping the stack demonstration class ISimpleStackDemo in the default package, show how to import and use the classes in stackpack. To put ISimpleStack and its implementations into the stackpack package, make each implementation class public, and add this statement to the top of each file. package stackpack; Once this has been done, you can use stackpack by adding this import statement to ISimpleStackDemo. import stackpack.*; 2. What is a namespace? Why is it important that Java allows you to partition the namespace? A namespace is a declarative region. By partitioning the namespace, you can prevent name collisions. 3. Packages are stored in __________. directories Java Programming 1093 A member with protected access can be used within its package and by a subclass in 4. Explain the difference between protected and default access. any package. A member with default access can be used only within its package. 5. Explain the two ways that the members of a package can be accessed by other packages. To use a member of a package, either you can fully qualify its name, or you can import it using import. 6. A package is, in essence, a container for classes. True or False? True. 7. What standard Java package is automatically imported into a program? java.lang 8. In your own words, what does static import do? Static import brings into the global namespace the static members of a class or interface. This means that static members can be used without having to be qualified by their class or interface name. 9. What does this statement do? import static somepack.SomeClass.myMethod; The statement brings into the global namespace SomeClass.myMethod( ), which is part of the somepack package. 10. Is static import designed for special-case situations, or is it good practice to bring all static members of all classes into view? Static import is designed for special cases. Bringing many static members into view will lead to namespace collisions and destructure your code. ChAPtEr 10: ANswErs to sElECtED EXErCIsEs 1. What class is at the top of the exception hierarchy? Throwable is at the top of the exception hierarchy. 2. Briefly explain how to use try and catch. The try and catch work together. Program statements that you want to monitor for exceptions are contained within a try block. An exception is caught using catch. 3. What is wrong with this fragment? // ... vals[18] = 10; catch (ArrayIndexOutOfBoundsException exc) { // handle error } There is no try block preceding the catch. 1094 appendix c Answers to selected Exercises 4. What happens if an exception is not caught? If an exception is not caught, abnormal program termination results. 5. What is wrong with this fragment? class A extends Exception { ... class B extends A { ... // ... try { // ... } catch (A exc) { ... } catch (B exc) { ... } In the fragment, a superclass catch precedes a subclass catch. Since the superclass catch will catch all subclasses too, unreachable code is created. 6. Can an inner catch rethrow an exception to an outer catch? Yes, an exception can be rethrown. 7. The finally block is the last bit of code executed before your program ends. True or False? Explain your answer. False. The finally block is the code executed when a try block ends. 8. What type of exceptions must be explicitly declared in a throws clause of a method? All exceptions except those of type RuntimeException and Error must be declared in a throws clause. 9. What is wrong with this fragment? class MyClass { // ... } // ... throw new MyClass(); MyClass does not extend Throwable. Only subclasses of Throwable can be thrown by throw. 10. What are the three ways that an exception can be generated? An exception can be generated by an error in the JVM, by an error in your program, or explicitly by a throw statement. 11. What are the two direct subclasses of Throwable? Error and Exception 12. What is the multi-catch feature? The multi-catch feature allows one catch clause to catch two or more exceptions. 13. Should your code typically catch exceptions of type Error? No. Java Programming 1095 ChAPtEr 11: ANswErs to sElECtED EXErCIsEs 1. Why does Java define both byte and character streams? The byte streams are the original streams defined by Java. They are especially useful for binary I/O, and they support random-access files. The character streams are optimized for Unicode characters. 2. Even though console input and output is text-based, why does Java still use byte streams for this purpose? The predefined streams, System.in, System.out, and System.err, were defined before Java added the character streams. 3. Show how to open a file for reading bytes. Here is one way to open a file for byte input: FileInputStream fin = new FileInputStream("test"); 4. Show how to open a file for reading characters. Here is one way to open a file for reading characters: FileReader fr = new FileReader("test"); 5. Show how to open a file for random-access I/O. Here is one way to open a file for random access: RandomAccessFile randfile = new RandomAccessFile("test", "rw"); 6. How do you convert a numeric string such as "123.23" into its binary equivalent? One way to convert numeric strings into their binary equivalents is to use the parsing methods defined by the type wrappers, such as Integer or Double. 7. Write a program that copies a text file. In the process, have it convert all spaces into hyphens. Use the byte stream file classes. Use the traditional approach to closing a file by explicitly calling close( ). /* Copy a text file, substituting hyphens for spaces. This version uses byte streams. To use this program, specify the name of the source file and the destination file. For example, java Hyphen source target */ import java.io.*; 1096 appendix c Answers to selected Exercises class Hyphen { public static void main(String[] args) { int i; FileInputStream fin = null; FileOutputStream fout = null; // First make sure that both files have been specified. if(args.length !=2 ) { System.out.println("Usage: Hyphen From To"); return; } // Copy file and substitute hyphens. try { fin = new FileInputStream(args[0]); fout = new FileOutputStream(args[1]); do { i = fin.read(); // convert space to a hyphen if((char)i == ' ') i = '-'; if(i != -1) fout.write(i); } while(i != -1); } catch(IOException exc) { System.out.println("I/O Error: " + exc); } finally { try { if(fin != null) fin.close(); } catch(IOException exc) { System.out.println("Error closing input file."); } try { if(fin != null) fout.close(); } catch(IOException exc) { System.out.println("Error closing output file."); } } } } 8. Rewrite the program in exercise 7 so that it uses the character stream classes. This time, use the try-with-resources statement to automatically close the file. /* Copy a text file, substituting hyphens for spaces. This version uses character streams. To use this program, specify the name of the source file and the destination file. For example, java Hyphen2 source target This code requires JDK 7 or later. */ import java.io.*; class Hyphen2 { public static void main(String[] args) { int i; // First make sure that both files have been specified. if(args.length !=2 ) { System.out.println("Usage: CopyFile From To"); return; } // Copy file and substitute hyphens. // Use the try-with-resources statement. try (FileReader fin = new FileReader(args[0]); FileWriter fout = new FileWriter(args[1])) { do { i = fin.read(); // convert space to a hyphen if((char)i == ' ') i = '-'; if(i != -1) fout.write(i); } while(i != -1); } catch(IOException exc) { System.out.println("I/O Error: " + exc); } } } 9. What type of stream is System.in? InputStream 10. What does the read( ) method of InputStream return when the end of the stream is reached? –1 11. What type of stream is used to read binary data? Java Programming 1097 DataInputStream 1098 appendix c Answers to selected Exercises 12. Reader and Writer are at the top of the ____________ class hierarchies. character-based I/O 13. The try-with-resources statement is used for ___________ ____________ ____________. automatic resource management 14. If you are using the traditional method of closing a file, then closing a file within a finally block is generally a good approach. True or False? True. 15. What class gives you access to the attributes of a file? File 16. Can you use the File class to delete a file? Yes. ChAPtEr 12: ANswErs to sElECtED EXErCIsEs 1. How does Java’s multithreading capability enable you to write more efficient programs? Multithreading allows you to take advantage of the idle time that is present in nearly all programs. When one thread can’t run, another can. In multicore systems, two or more threads can execute simultaneously. 2. Multithreading is supported by the __________ class and the __________ interface. Multithreading is supported by the Thread class and the Runnable interface. 3. When creating a runnable object, why might you want to extend Thread rather than implement Runnable? You will extend Thread when you want to override one or more of Thread’s methods other than run( ). 4. Show how to use join( ) to wait for a thread object called myThrd to end. myThrd.join(); 5. Show how to set a thread called myThrd to three levels above normal priority. myThrd.setPriority(Thread.NORM_PRIORITY+3); 6. What is the effect of adding the synchronized keyword to a method? Adding synchronized to a method allows only one thread at a time to use the method for any given object of its class. 7. The wait( ) and notify( ) methods are used to perform ____________________. interthread communication Java Programming 1099 8. Change the TickTock class so that it actually keeps time. That is, have each tick take one half second and each tock take one half second. Thus, each tick-tock will take one second. (Don’t worry about the time it takes to switch tasks, etc.) To make the TickTock class actually keep time, simply add calls to sleep( ), as shown here. // Make the TickTock class actually keep time. class TickTock { String state; // contains the state of the clock synchronized void tick(boolean running) { if(!running) { // stop the clock state = "ticked"; notify(); // notify any waiting threads return; } System.out.print("Tick "); // wait 1/2 second try { Thread.sleep(500); } catch(InterruptedException exc) { System.out.println("Thread interrupted."); } state = "ticked"; // set the current state to ticked notify(); // let tock() run try { while(!state.equals("tocked")) wait(); // wait for tock() to complete } catch(InterruptedException exc) { System.out.println("Thread interrupted."); } } synchronized void tock(boolean running) { if(!running) { // stop the clock state = "tocked"; notify(); // notify any waiting threads return; } System.out.println("Tock"); 1100 appendix c Answers to selected Exercises // wait 1/2 second try { Thread.sleep(500); } catch(InterruptedException exc) { System.out.println("Thread interrupted."); } state = "tocked"; // set the current state to tocked notify(); // let tick() run try { while(!state.equals("ticked")) wait(); // wait for tick to complete } catch(InterruptedException exc) { System.out.println("Thread interrupted."); } } } 9. Why can’t you use suspend( ), resume( ), and stop( ) for new programs? The suspend( ), resume( ), and stop( ) methods have been deprecated because they can cause serious run-time problems. 10. What method defined by Thread obtains the name of a thread? getName( ) 11. What does isAlive( ) return? It returns true if the invoking thread is still running, and false if it has been terminated. ChAPtEr 13 ANswErs to sElECtED EXErCIsEs 1. Enumeration constants are said to be self-typed. What does this mean? In the term self-typed, the “self ” refers to the type of the enumeration in which the constant is defined. Thus, an enumeration constant is an object of the enumeration of which it is a part. 2. What class do all enumerations automatically inherit? The Enum class is automatically inherited by all enumerations. 3. Given the following enumeration, write a program that uses values( ) to show a list of the constants and their ordinal values. enum Tools { SCREWDRIVER, WRENCH, HAMMER, PLIERS } The solution is: enum Tools { SCREWDRIVER, WRENCH, HAMMER, PLIERS } class ShowEnum { public static void main(String[] args) { for(Tools d : Tools.values()) System.out.print(d + " has ordinal value of " + d.ordinal() + '\n'); } } 4. The traffic light simulation developed in Try This 13-1 can be improved with a few simple changes that take advantage of an enumeration’s class features. In the version shown, the duration of each color was controlled by the TrafficLightSimulator class by hard-coding these values into the run( ) method. Change this so that the duration of each color is stored by the con- stants in the TrafficLightColor enumeration. To do this, you will need to add a constructor, a private instance variable, and a method called getDelay( ). The improved version of the traffic light simulation is shown here. There are two major improvements. First, a light’s delay is now linked with its enumeration value, which gives more structure to the code. Second, the run( ) method no longer needs to use a switch statement to determine the length of the delay. Instead, sleep( ) is passed tlc.getDelay( ), which causes the delay associated with the current color to be used automatically. // An improved version of the traffic light simulation that // stores the light delay in TrafficLightColor. // An enumeration of the colors of a traffic light. enum TrafficLightColor { RED(12000), GREEN(10000), YELLOW(2000); private int delay; TrafficLightColor(int d) { delay = d; } int getDelay() { return delay; } } // A computerized traffic light. class TrafficLightSimulator implements Runnable { private Thread thrd; // holds the thread that runs the simulation private TrafficLightColor tlc; // holds the current traffic light color boolean stop = false; // set to true to stop the simulation boolean changed = false; // true when the light has changed Java Programming 1101 1102 appendix c Answers to selected Exercises TrafficLightSimulator(TrafficLightColor init) { tlc = init; thrd = new Thread(this); thrd.start(); } TrafficLightSimulator() { tlc = TrafficLightColor.RED; thrd = new Thread(this); thrd.start(); } // Start up the light. public void run() { while(!stop) { // Notice how this code has been simplified! try { Thread.sleep(tlc.getDelay()); } catch(InterruptedException exc) { System.out.println(exc); } changeColor(); } } // Change color. synchronized void changeColor() { switch(tlc) { case RED: tlc = TrafficLightColor.GREEN; break; case YELLOW: tlc = TrafficLightColor.RED; break; case GREEN: tlc = TrafficLightColor.YELLOW; } changed = true; notify(); // signal that the light has changed } // Wait until a light change occurs. synchronized void waitForChange() { try { while(!changed) wait(); // wait for light to change changed = false; } catch(InterruptedException exc) { System.out.println(exc); } } // Return current color. synchronized TrafficLightColor getColor() { return tlc; } // Stop the traffic light. synchronized void cancel() { stop = true; } } class TrafficLightDemo { public static void main(String[] args) { TrafficLightSimulator tl = new TrafficLightSimulator(TrafficLightColor.GREEN); for(int i=0; i < 9; i++) { System.out.println(tl.getColor()); tl.waitForChange(); } tl.cancel(); } } 5. Define boxing and unboxing. How does autoboxing/unboxing affect these actions? Boxing is the process of storing a primitive value in a type wrapper object. Unboxing is the process of retrieving the primitive value from the type wrapper. Autoboxing automatically boxes a primitive value without having to explicitly construct an object. Auto-unboxing automatically retrieves the primitive value from a type wrapper without having to explicitly call a method, such as intValue( ). 6. Change the following fragment so that it uses autoboxing. Short val = new Short(123); The solution is: Short val = 123; 7. An annotation is syntactically based on a/an ________________ . interface Java Programming 1103 1104 appendix c Answers to selected Exercises 8. What is a marker annotation? A marker annotation is one that does not take arguments. 9. An annotation can be applied only to methods. True or False? False. Any type of declaration can have an annotation. ChAPtEr 14 ANswErs to sElECtED EXErCIsEs 1. Generics are an important addition to Java because they enable the creation of code that is A. Type-safe B. Reusable C. Reliable D. All of the above D all of the above 2. Can a primitive type be used as a type argument? No, type arguments must be reference types. 3. Show how to declare a class called FlightSched that takes two generic parameters. The solution is class FlightSched {
4. Beginning with your answer to question 3, change FlightSched’s second type parameter so that it must extend Thread.
The solution is
class FlightSched {
5. Now, change FlightSched so that its second type parameter must be a subclass of its first type parameter.
The solution is
class FlightSched {
6. As it relates to generics, what is the ? and what does it do? The ? is the wildcard argument. It matches any valid type.
7. Can the wildcard argument be bounded?
Yes, a wildcard can have either an upper or a lower bound.
8. A generic method called MyGen( ) has one type parameter. Furthermore, MyGen( ) has one parameter whose type is that of the type parameter. It also returns an object of that type parameter. Show how to declare MyGen( ).
The solution is
T MyGen(T o) { // …

9. Given this generic interface
interface IGenIF { // …
show the declaration of a class called MyClass that implements IGenIF. The solution is
class MyClass implements IGenIF { // …
10. Given a generic class called Counter, show how to create an object of its raw type.
To obtain Counter’s raw type, simply use its name without any type specification, as shown here:
Counter x = new Counter();
11. Do type parameters exist at run time?
No. All type parameters are erased during compilation, and appropriate casts are substi-
tuted. This process is called erasure.
12. When a generic class is inherited, its type parameters must also be specified by the subclass. True or False?
True.
13. What is < >?
The diamond operator.
14. When using JDK 7, how can the following be simplified? MyClass obj = new MyClass(1.1,”Hi”);
It can be simplified by use of the diamond operator as shown here:
MyClass obj = new MyClass<>(1.1,”Hi”);
ChAPtEr 15: ANswErs to sElECtED EXErCIsEs
1. What method is called when an applet first begins running? What method is called when an applet is removed from the system?
When an applet begins, the first method called is init( ).When an applet is removed, destroy( ) is called.
2. Explain why an applet must use multithreading if it needs to run continually.
An applet must use multithreading if it needs to run continually because applets must not enter a “mode” of operation. For example, if start( ) never returns, then paint( ) will never be called.
3. Enhance Try This 15-1 so that it displays the string passed to it as a param- eter. Add a second parameter that specifies the time delay (in milliseconds) between each rotation.
Java Programming 1105
/* A simple banner applet that uses parameters.

1106 appendix c Answers to selected Exercises
*/
import java.awt.*; import java.applet.*;
/*

*/
public class ParamBanner extends Applet implements Runnable { String msg;
int delay;
Thread t;
boolean stopFlag;
// Initialize t to null. public void init() {
String temp;
msg = getParameter(“message”);
if(msg == null) msg = ” Java Rules the Web “;
temp = getParameter(“delay”);
try {
if(temp != null)
delay = Integer.parseInt(temp); else
delay = 250; // default if not specified } catch(NumberFormatException exc) {
delay = 250 ; // default on error }
t = null; }
// Start thread when the applet is needed. public void start() {
t = new Thread(this); stopFlag = false; t.start();
}
// Entry point for the thread that runs the banner. public void run() {
// Request a repaint at the specified interval. for( ; ; ) {
try { repaint();

Thread.sleep(delay);
if(stopFlag) break;
} catch(InterruptedException exc) {}
} }
// Pause the banner. public void stop() { stopFlag = true;
t = null; }
// Display the banner.
public void paint(Graphics g) {
char ch;
ch = msg.charAt(0);
msg = msg.substring(1, msg.length()); msg += ch;
g.drawString(msg, 50, 30); }
}
4. Extra challenge: Create an applet that displays the current time, updated once per second.
// A simple clock applet.
import java.util.*; import java.awt.*; import java.applet.*; /*

*/
public class Clock extends Applet implements Runnable { String msg;
Thread t;
Calendar clock;
boolean stopFlag;
// Initialize
public void init() {
t = null;
msg = “”; }
Java Programming 1107

1108 appendix c
Answers to selected Exercises
// Start thread when the applet is needed. public void start() {
t = new Thread(this); stopFlag = false; t.start();
}
// Entry point for the clock. public void run() {
// Request a repaint every second. for( ; ; ) {
try {
repaint(); Thread.sleep(1000); if(stopFlag) break;
} catch(InterruptedException exc) {} }
}
// Pause the clock. public void stop() {
stopFlag = true;
t = null; }
// Display the clock.
public void paint(Graphics g) {
clock = Calendar.getInstance();
msg = “Current time is ” + Integer.toString(clock.get(Calendar.HOUR));
msg = msg + “:” + Integer.toString(clock.get(Calendar.MINUTE));
msg = msg + “:” + Integer.toString(clock.get(Calendar.SECOND));
g.drawString(msg, 30, 30); }
}
5. To request that an applet’s window be redisplayed, what method do you call?
repaint( )
6. Briefly describe the assert keyword.
The assert keyword creates an assertion, which is a condition that should be true during program execution. If the assertion is false, an AssertionError is thrown.
7. Give one reason why a native method might be useful to some types of programs.

Java Programming 1109 A native method is useful when interfacing to routines written in languages other than Java,
or when optimizing code for a specific run-time environment.
8. What operator can you use to determine the type of an object at run time? instanceof
ChAPtEr 16: ANswErs to sElECtED EXErCIsEs
1. For methods, classes, and variables, you should use _______________ names.
intention-revealing
2. All the principles discussed in this chapter are iron-clad rules that must be followed in order to have elegant software. True or False?
False.
3. A good programmer writes self-documenting code and so never needs to add internal comments. True or False?
False. Internal documentation provides information not readily available from the code itself.
4. It is generally better to put all the important methods in one class and make most of the other classes simple servant classes. True or False?
False.
5. Out-of-date documentation is better than no documentation at all. True or False?
False.
6. A method with method chaining of the form
a.getB( ).getC( ).getD( ).doSomething( ) does not obey ______________.
Demeter’s Law
7. Suppose you have a Person class with instance variables containing the person’s name, birth date, address, spouse, children, and occupation. According to the Expert pattern, this class should have methods that handle any manipulations of this data that are needed by other classes. However, an unlimited number of manipulations of a Person object can be performed. What is the correct number of methods that the Person class should have?
It should include all the essential methods and an appropriate set of convenience methods.
8. A class typically has both instance variables and methods. Consider the two extreme cases: a class A that has several instance variables but no methods and a class B that has several methods but no instance variables. Which one of the principles discussed in this chapter is most likely violated by such classes?
The Expert pattern.

1110 appendix c Answers to selected Exercises
9. When you are trying to reach an executive in a company, you have at least three choices:
A. Call and be put on hold until the executive is free.
B. Keep calling back every few minutes until the executive is free.
C. Leave a message asking the executive to call you back when she is free. Which one of these choices corresponds most closely to the Observer pattern? C. The executive is the subject/publisher, and you are the observer/subscriber.
10. What is one flaw in the following class that makes it inelegant?
class NamedObject {
private String name; NamedObject(String n) { name = n; } void setName(String n) { name = n; }
}
There is no getName( ) method, and so there is no way to find out what the name is. Therefore the name is worthless. The problem is that the class has an incomplete interface.
ChAPtEr 17: ANswErs to sElECtED EXErCIsEs
1. Most AWT components translate into native peers. Why is this a problem, and how does Swing fix it?
Native peers are problematic because their use may cause a component to look or act differently on different platforms. Because they use native resources, the appearance of a native peer is not easily changed. They also have limitations, such as being opaque. Swing addresses these issues by using lightweight components and a pluggable look and feel.
2. Most Swing components are written in 100 percent Java code. True or False? True.
3. What are the four top-level, heavyweight containers? JFrame, JApplet, JDialog, and JWindow
4. What is the most commonly used top-level container for an application? JFrame
5. JFrame contains several panes. To what pane are components added? Components are added to the content pane.
6. An event listener must _____________ with a source in order to receive event notifications.
register
7. To receive an action event, a class must implement what interface?
ActionListener
8. When using a JButton or a JTextField, what method must be called to set the action command?
setActionCommand( )

Java Programming 1111 Here are a few of the layout managers: FlowLayout, BorderLayout, GridLayout,
9. Name three layout managers. GridBagLayout, BoxLayout, and SpringLayout.
10. The stopwatch example in Try This 17-1 uses two buttons, one to start
the stopwatch and the other to stop it. However, it is possible to use only one button, which alternates between starting and stopping the stopwatch. One way to do this is to reset the text within the button after each press, alternating between Start and Stop. Because, by default, this text is also the action command associated with the button, you can use the same but- ton for two different purposes. Your job is to rewrite Try This 17-1 so that it implements this approach.
// A version of the stopwatch for Try This 17-1 that // uses a single push button.
import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.*;
class StopWatch implements ActionListener {
JLabel jlab;
long start; // holds the start time in milliseconds JButton jbtnStartStop; // a start or stop button
StopWatch() {
// Create a new JFrame container.
JFrame jfrm = new JFrame(“A Simple Stopwatch”);
// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(250, 90);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Make one button.
jbtnStartStop = new JButton(“Start”);
// Add action listeners. jbtnStartStop.addActionListener(this);
// Add the buttons to the content pane. jfrm.add(jbtnStartStop);

1112 appendix c
Answers to selected Exercises
// Create a text-based label.
jlab = new JLabel(“Press Start to begin timing.”);
// Add the label to the frame. jfrm.add(jlab);
// Display the frame.
jfrm.setVisible(true); }
// Handle button events.
public void actionPerformed(ActionEvent ae) {
// get the current system time Calendar cal = Calendar.getInstance();
if(ae.getActionCommand().equals(“Start”)) { // Store start time.
start = cal.getTimeInMillis(); jlab.setText(“Stopwatch is Running…”); jbtnStartStop.setText(“Stop”);
}
else {
// Compute the elapsed time. jlab.setText(“Elapsed time is ”
+ (double) (cal.getTimeInMillis() – start)/1000); jbtnStartStop.setText(“Start”);
} }
public static void main(String[] args) {
// Create the frame on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new StopWatch();
} });
} }
ChAPtEr 18: ANswErs to sElECtED EXErCIsEs
1. Does JLabel generate an ActionEvent? No.
2. What event is generated when a push button is pressed? ActionEvent

3. Can JButton include an icon? Yes.
4. What control toggles between two states: selected and cleared? JToggleButton and its subclasses.
5. When using JTextField, cut and paste is supported by what methods? cut( ) and paste( )
6. Show how to create a text field that has 32 columns. new JTextField(32)
7. Can a JTextField have its action command set? If so, how? Yes, by calling setActionCommand( ).
8. What Swing component creates a check box? What event is generated when a check box is selected or deselected?
JCheckBox creates a check box. An ItemEvent is generated when a check box is selected or deselected.
9. JRadioButton creates a list of buttons shaped like radios. True or False? False.
10. JList displays a list of items from which the user can select. True or False? True.
11. What event is generated when the user selects or deselects an item in a JList?
ListSelectionEvent
12. What does JScrollPane do?
It scrolls the contents of another component.
13. What method sets the selection mode of a JList? What method obtains the index of the first selected item?
setSelectionMode( ) sets the selection mode. getSelectedIndex( ) obtains the index of the first selected item.
14. To display information in a tabular format, you can use __________. JTable
15. To display information in a tree format, you can use ___________. JTree
16. What is JComboBox?
JComboBox is a combination of a text field and a drop-down list.
Java Programming 1113

1114 appendix c Answers to selected Exercises
ChAPtEr 19: ANswErs to sElECtED EXErCIsEs
1. What are the core Swing menu classes?
The core Swing menu classes are JMenu, JMenuItem, and JMenuBar.
2. What class creates a menu? To create a main menu bar, what class is used? JMenu creates a menu. JMenuBar creates a menu bar.
3. What event is generated when a menu item is selected? An action event is generated when a menu item is selected.
4. Images are not allowed in menus. True or False? False; images are allowed in menus.
5. What method adds a menu bar to a window? To add a menu bar to a window, call setJMenuBar( ).
6. What method adds a mnemonic to a menu item?
The setMnemonic( ) method adds a mnemonic to a menu item.
7. Can an icon be used as a menu item? If so, does it prevent the use of a name? Yes, an icon can be used as a menu item. No, it does not prevent the use of a name.
8. What class creates a radio button menu item? JRadioButtonMenuItem creates a radio button menu item.
9. Although check box menu items are permitted, their use is discouraged be- cause they make a menu look strange. True or False?
False, check box menu items are popular, standard menu options.
10. In the course of this chapter, several changes were suggested to the MenuDemo program that demonstrate additional menu features. Except for the dynamic menu items in Try This 19-1, integrate those changes into the original MenuDemo program. In the process, reorganize the program for clarity by using separate methods to construct the various menus.
// Menu demo program, final version.
import java.awt.*; import java.awt.event.*; import javax.swing.*;
class MenuDemo implements ActionListener {
JLabel jlab; JMenuBar jmb;
MenuDemo() {
// Create a new JFrame container. JFrame jfrm = new JFrame(“Menu Demo”);

// Specify FlowLayout for the layout manager. jfrm.setLayout(new FlowLayout());
// Give the frame an initial size. jfrm.setSize(220, 200);
// Terminate the program when the user closes the application. jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Create a label that will display the menu selection. jlab = new JLabel();
// Create the menu bar. jmb = new JMenuBar();
// Create the File menu. makeFileMenu();
// Create the Options menu. makeOptionsMenu();
// Create the Help menu. makeHelpMenu();
// Add the label to the content pane. jfrm.add(jlab);
// Add the menu bar to the frame. jfrm.setJMenuBar(jmb);
// Display the frame.
jfrm.setVisible(true); }
// Create the File menu with mnemonics and accelerators. void makeFileMenu() {
JMenu jmFile = new JMenu(“File”); jmFile.setMnemonic(KeyEvent.VK_F);
JMenuItem jmiOpen = new JMenuItem(“Open”, KeyEvent.VK_O);
jmiOpen.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_O,
InputEvent.CTRL_DOWN_MASK));
JMenuItem jmiClose = new JMenuItem(“Close”, KeyEvent.VK_C);
jmiClose.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_C,
Java Programming 1115
InputEvent.CTRL_DOWN_MASK));

1116 appendix c
Answers to selected Exercises
JMenuItem jmiSave = new JMenuItem(“Save”, KeyEvent.VK_S);
jmiSave.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_S,
InputEvent.CTRL_DOWN_MASK));
JMenuItem jmiExit = new JMenuItem(“Exit”, KeyEvent.VK_E);
jmiExit.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_E,
InputEvent.CTRL_DOWN_MASK));
jmFile.add(jmiOpen); jmFile.add(jmiClose); jmFile.add(jmiSave); jmFile.addSeparator(); jmFile.add(jmiExit); jmb.add(jmFile);
jmiOpen.addActionListener(this); jmiClose.addActionListener(this); jmiSave.addActionListener(this); jmiExit.addActionListener(this);
}
// Create the Options menu. void makeOptionsMenu() {
// Create the Options menu.
JMenu jmOptions = new JMenu(“Options”);
// Create the Colors submenu.
JMenu jmColors = new JMenu(“Colors”);
// Use check boxes for colors. This allows
// the user to select more than one color.
// Notice that Red is initially selected.
JCheckBoxMenuItem jmiRed = new JCheckBoxMenuItem(“Red”, true); JCheckBoxMenuItem jmiGreen = new JCheckBoxMenuItem(“Green”); JCheckBoxMenuItem jmiBlue = new JCheckBoxMenuItem(“Blue”);
jmColors.add(jmiRed); jmColors.add(jmiGreen); jmColors.add(jmiBlue); jmOptions.add(jmColors);
// Create the Priority submenu.
JMenu jmPriority = new JMenu(“Priority”);
// Use radio buttons for the priority setting.
// This lets the menu show which priority is used

// but also ensures that one and only one priority // can be selected at any one time. Notice that
// the High radio button is initially selected. JRadioButtonMenuItem jmiHigh =
new JRadioButtonMenuItem(“High”, true); JRadioButtonMenuItem jmiLow =
new JRadioButtonMenuItem(“Low”);
jmPriority.add(jmiHigh); jmPriority.add(jmiLow); jmOptions.add(jmPriority);
// Create button group for the radio button menu items. ButtonGroup bg = new ButtonGroup();
bg.add(jmiHigh);
bg.add(jmiLow);
// Create the Reset menu item.
JMenuItem jmiReset = new JMenuItem(“Reset”); jmOptions.addSeparator(); jmOptions.add(jmiReset);
jmiRed.addActionListener(this); jmiGreen.addActionListener(this); jmiBlue.addActionListener(this); jmiHigh.addActionListener(this); jmiLow.addActionListener(this); jmiReset.addActionListener(this);
// Finally, add the entire Options menu to // the menu bar
jmb.add(jmOptions);
}
// Create the Help menu. void makeHelpMenu() {
// Create the Help menu.
JMenu jmHelp = new JMenu(“Help”);
ImageIcon iconAbout = new ImageIcon(“AboutIcon.gif”); JMenuItem jmiAbout = new JMenuItem(“About”, iconAbout); jmiAbout.setToolTipText(“Info about the MenuDemo program.”); jmHelp.add(jmiAbout);
jmb.add(jmHelp);
jmiAbout.addActionListener(this); }
// Handle menu item action events.
public void actionPerformed(ActionEvent ae) {
Java Programming 1117

1118 appendix c
Answers to selected Exercises
// Get the action command from the menu selection. String comStr = ae.getActionCommand();
// If user chooses Exit, then exit the program. if(comStr.equals(“Exit”)) System.exit(0);
// Otherwise, display the selection.
jlab.setText(comStr + ” Selected”); }
public static void main(String[] args) {
// Create the GUI on the event dispatching thread. SwingUtilities.invokeLater(new Runnable() {
public void run() { new MenuDemo();
} });
} }
ChAPtEr 20: ANswErs to sElECtED EXErCIsEs
1. A dialog is a composite of two or more components that prompts the user and waits for a response. True or False?
True.
2. What JOptionPane method creates an input dialog? Which one creates a message dialog?
The showInputDialog( ) method creates an input dialog. The showMessageDialog( ) method creates a message dialog.
3. What JOptionPane method would you normally use to create a dialog that confirms that the user wants to save changes to a document? Show what the call would look like.
The method is showConfirmDialog( ). Here is an example of how to call it: showConfirmDialog(null, “Save Changes?”);
4. When using a confirmation dialog, what return type indicates that the user clicked the Yes button?
The return type YES_OPTION indicates that the user clicked the Yes button.
5. What option type is used to show only the Yes and No buttons in a confirmation
dialog?
YES_NO_OPTION

Java Programming 1119
6. If you want to request a string response from the user, what JOptionPane
method do you call?
To request a string response from the user, call the showInputDialog( ) method.
7. Must the message parameter to any of JOptionPane’s show methods be a
string? Explain.
No. The message parameter to any of JOptionPane’s show methods can be, but does not have to be, a string.
8. JDialog is a top-level container. True or False? True.
9. What are the four steps needed to create and display a JDialog-based dialog? Here are the four steps needed to create and display a JDialog-based dialog.
A. Create a JDialog object.
B. Specify the dialog’s layout manager, size, and default close policy.
C. Add components to the dialog’s content pane.
D. Show the dialog by calling setVisible(true) on it.
10. Can JDialog create a modeless dialog? Yes.
11. Explain the difference between setVisible(false) and dispose( ) as it relates to dialogs.
setVisible(false) removes a dialog from the screen. dispose( ) removes the dialog and also frees its resources.
12. What JFileChooser method creates a Save file chooser? Which one creates a file chooser that uses your own title?
The showSaveDialog( ) method creates a Save file chooser. The showDialog( ) method lets you specify your own title.
13. What two methods must be overridden when implementing a FileFilter for JFileChooser?
The accept( ) and getDescription( ) methods must be overridden when implementing a FileFilter for JFileChooser.
14. Chapter 19 described menus. In that chapter, the examples included a File menu that had an Exit entry. Change that code so that it has the user confirm that terminating the program is actually desired.
Here is the code that uses a dialog to confirm that the user actually wants to exit the program:
// If user chooses Exit, then exit the program. if(comStr.equals(“Exit”)) {
int response = JOptionPane.showConfirmDialog( null,
“Exit Now?”,
“Terminate Program”, JOptionPane.YES_NO_OPTION);

1120 appendix c Answers to selected Exercises
if(response == JOptionPane.YES_OPTION) { System.exit(0);
} }
ChAPtEr 21: ANswErs to sElECtED EXErCIsEs
1. Any code that affects a Swing component must be executed on the _____ ______ thread.
event-dispatching
2. When using javax.swing.Timer, what event is generated when the timer goes off?
An ActionEvent is fired when a javax.swing.Timer goes off.
3. What methods start and stop javax.swing.Timer?
The methods that start and stop javax.swing.Timer are start( ) and stop( ).
4. What is SwingWorker?
SwingWorker creates and manages background threads.
5. What method must an applet use to create its GUI? An applet must use invokeAndWait( ) to create its GUI.
6. Can your program paint directly onto the surface of a component? Yes, your program can paint directly onto the surface of a component.
7. What three paint methods are called when a Swing component must dis- play itself?
The following three paint methods are called when a Swing component must display itself: paintComponent( ), paintBorder( ), and paintChildren( ).
8. What methods obtain the current width and height of a component?
To obtain the current width and height of a component, call getWidth( ) and getHeight( ).
9. Rework the applet in Try This 21-1 so that the direction of scroll reverses at periodic intervals. For example, have the text scroll left for a while, and then right for a while, and so on. The precise timing is up to you, but the answer shown here reverses scroll direction every 20 seconds.
// Answer to question 9.
import javax.swing.*; import java.awt.*; import java.awt.event.*;
/*
This HTML can be used to launch the applet:


*/
public class ScrollText extends JApplet {
JLabel jlab;
String msg = ” Swing makes the GUI move! “;
ActionListener scroller;
Timer stTimer; // This timer controls the scroll rate. int counter; // use to reverse the scroll.
// This value controls when the scroll direction changes. int scrollLimit;
// Initialize the applet. public void init() {
counter = 0; scrollLimit = 100;
try {
SwingUtilities.invokeAndWait(new Runnable () {
public void run() { guiInit();
} });
} catch(Exception exc) {
System.out.println(“Can’t create because of ” + exc);
} }
// Start the timer when the applet is started. public void start() {
stTimer.start(); }
// Stop the timer when the applet is stopped. public void stop() {
stTimer.stop(); }
// Stop the timer when the applet is destroyed. public void destroy() {
stTimer.stop(); }
Java Programming 1121

1122 appendix c
Answers to selected Exercises
// Initialize the timer GUI. private void guiInit() {
// Create the label that will scroll the message. jlab = new JLabel(msg); jlab.setHorizontalAlignment(SwingConstants.CENTER);
// Create the action listener for the timer.
// This version reverse the direction of scroll // every 20 seconds.
scroller = new ActionListener() {
public void actionPerformed(ActionEvent ae) { if(counter < scrollLimit) { // Left-scroll the message one character. char ch = msg.charAt(0); msg = msg.substring(1, msg.length()); msg += ch; } else { // Right-scroll the message one character. char ch = msg.charAt(msg.length()-1); msg = msg.substring(0, msg.length()-1); msg = ch + msg; if(counter == scrollLimit*2) counter = 0; } counter++; jlab.setText(msg); } }; // Create the timer. stTimer = new Timer(200, scroller); // Add the label to the applet content pane. getContentPane().add(jlab); } } ChAPtEr 22 ANswErs to sElECtED EXErCIsEs 1. Write a statement that displays the substring of a string s consisting of all but the last character of s. System.out.println(s.substring(0, s.length( )-1)); 2. Assume s is a string and consider the following statement: boolean b = s.isEmpty(); Find an equivalent statement or set of statements using length( ) instead of isEmpty( ). boolean b = (s.length() == 0); Java Programming 1123 3. What happens if you call charAt( ) and the value you pass in for the index is out of range? An IndexOutOfBoundsException is thrown. 4. Suppose you want to create one string that consists of two lines of text, each on a separate line. You cannot use a statement such as String s = "This is the first line. This is the second line"; because this statement will generate a compiler error. How can you do it? String s = "This is the first line.\nThis is the second line"; 5. What is the value of the expression 2+2+"ME"? Is it "22ME" or "4ME"? "4ME" 6. Suppose you want to test whether a string variable s contains the string "abcdef ". Is it sufficient to call s.startsWith("abc") and s.endsWith("def ") and then see whether both method calls return true? No. Strings other than "abcdef " can start with "abc" and end with "def ". For example, the string "abczdef " has those properties. 7. In the UseTrim example in the chapter that demonstrated how to use the trim( ) method, the if-else-if ladder repeatedly tested the equality of two strings using the equals( ) method. Why didn’t the ladder repeatedly test the equality using = =? The = = operator tests object identity, whereas equals( ) tests whether the contents of the strings are identical. In the UseTrim example, we wanted to know whether the string str contained the same sequence of characters as another string, not whether str was the same object as another string. 8. Explain the difference between startsWith(substring, index) and indexOf(substring, index). Both methods test whether a string is a substring of another string. However, the startsWith( ) method only tests whether the substring starts at the given index and returns true or false. The indexOf( ) method tests whether the substring starts at or after the given index. It returns the index where the substring starts, or -1 if the substring does not appear in the string. ChAPtEr 23 ANswErs to sElECtED EXErCIsEs 1. The classes that are used to encapsulate primitive values so that they can be used where only objects are allowed are called ________________ classes. type wrapper 2. Infinity is not a number. More precisely, for a double d, if isInfinite(d) is true, then isNaN(d) is true. True or False? False. 1124 appendix c Answers to selected Exercises 3. The Double.MIN_VALUE is the smallest positive double value, and Integer.MIN_VALUE is the smallest positive integer value (namely, 1). True or False? The statement is true regarding the Double.MIN_VALUE but not regarding the Integer.MIN_VALUE. Integer.MIN_VALUE is the negative integer value with largest absolute value. 4. Determine the values of the following expressions. The constants are all defined in the Double class: A. MAX_VALUE / MIN_VALUE B. MAX_VALUE * MAX_VALUE C. POSITIVE_INFINITY / POSITIVE_INFINITY D. POSITIVE_INFINITY / NEGATIVE_INFINITY E. POSITIVE_INFINITY – POSITIVE_INFINITY F. POSITIVE_INFINITY – NEGATIVE_INFINITY G. NaN – NaN A. Infinity B. Infinity C. NaN D. NaN E. NaN F. Infinity G. NaN 5. For every character ch, the expression Character.isUpperCase(Character.toUpperCase(ch)) evaluates to true. True or False? False. The expression is true only if ch is a letter. 6. For every double d, the expression Math.ceil(Math.floor(d)) is equal to the expression Math.floor(Math.ceil(d)). True or False? False. For most values of d, they are not equal. For example, for d = 1.5, the first expres- sion has value 2.0, and the second expression has value 1.0. 7. To start another program (another heavyweight process) in a Java program, you call the constructor for the Process class. True or False? False. You create a ProcessBuilder and call its start( ) method, which returns a Process. 8. The nanoTime( ) method in the System class returns the number of nanosec- onds since midnight, January 1, 1970. True or False. False. It returns the number of nanoseconds since some unspecified starting point. 9. The getName( ) method in Class returns just the name of the class without the package it is in. True or False. False. It returns the full name, which includes the package prefix. Java Programming 1125 ChAPtEr 24: ANswErs to sElECtED EXErCIsEs 1. What are the main differences between the javax.swing.Timer class dis- cussed in Chapter 21 and the java.util.Timer class? They both provide the same basic functionality of causing code to execute at regular intervals. The javax.swing.Timer class fires off ActionEvents at a regular interval, and the listeners that receive the events execute in the event-dispatching thread, making this timer useful in Swing applications. The java.util.Timer class is more general in that it executes an arbitrary TimerTask at regular intervals. 2. What is the difference between the value returned by a call to System.currentTimeMillis( ) mentioned in the last chapter and the value returned by a call to Calendar.getInstance( ).getTimeInMillis( ) used in earlier chapters? There is no difference. They both return the number of milliseconds that have elapsed since midnight, January 1, 1970. 3. When a Formatter sees a '%' character in the format string, how does it know whether that character is part of a format specifier or just a regular character that should be inserted in the output string? A '%' character is always part of a format specifier in a format string. To insert the '%' character in the output string, use the format specifier "%%". 4. Assume you have a GregorianCalendar object cal and you want to display, using System.out.printf( ), the date it represents in the form year:month:day: hour:minute:second using the long form of the year, month, and day, and using the 24-hour format. For example, if cal represents noon on March 11, 1984, then the output should be "1984:March:11:12:00:00". What should the argu- ments be for the call to printf( )? Use relative indices where possible. "%tY:% c4 = new ArrayList(c1); c4.removeAll(c2);
c4.removeAll(c3);
8. What will be displayed by the following code segment? Explain.
Collection c = new ArrayList(); c.add(new Object());
c.add(new Object()); System.out.println(c.contains(new Object()));
The code will display “false”. The ArrayList will contain two objects, but neither of them is the object being tested for containment.
ChAPtEr 26: ANswErs to sElECtED EXErCIsE
1. Sockets are designed to send and receive data using the protocol HTTP. True or False?
False. They send and receive data using the TCP protocol.
2. URLConnections are designed to send and receive data using the protocol HTTP. True or False?
False. They can also be used with other protocols such as FTP to communicate with another computer on the web.
3. What two pieces of information does a Socket need to have in order to con- nect to another computer on the network?
A host name and a port number.
4. When you enter a URL using HTTP in your web browser, why aren’t you required to enter a port number?
There is a default port number (80) that is used when you don’t specify one.
5. How does sending data using datagrams differ, with respect to guarantees of arrival, from sending data using a method that uses the protocol TCP?
Datagrams are not guaranteed to arrive at their destination at all. If they do arrive, there is no guarantee they are undamaged or in any special order. Data packets sent using TCP are expected to arrive undamaged and in order.
ChAPtEr 27: ANswErs to sElECtED EXErCIsEs
1. How does a semaphore work?
It issues permits to threads to access a shared resource. A thread calls acquire( ) when it wants a permit and calls release( ) when it is finished with the permit.

1128 appendix c Answers to selected Exercises
2. In the SemDemo example in this chapter, what happens if you add a call to sem.release( ) immediately before both of the calls to sem.acquire( )? Explain.
The program still runs but there is no longer controlled access to the shared resource.
3. In the SemDemo example in this chapter, what happens if you replace each
of the two calls sem.acquire( ) with sem.acquire(2)? Explain.
Both threads will be trying to acquire two permits, but sem has only one permit, so they
will both wait forever.
4. Consider a horse race where the horses and riders need to line up at the gate and wait there until all the horses and riders are ready before the gate opens and the horses can start racing. What Java synchronization tool does this situ- ation remind you of ?
A CyclicBarrier.
5. Suppose you add the statement System.out.println(name); as the last state- ment of the run( ) method of the MyThread class in the BarDemo program. In that case, “Barrier reached” would be displayed before the names “A”, “B”, and “C” are displayed a second time. True or False? Explain.
True. The BarAction thread runs before any of the other threads are allowed to resume.
6. Using an Exchanger, it is possible that a String can be exchanged for an
Integer. True or False?
True. In this case, the Exchanger’s type parameter would have to be Object, and, after
the exchange, the results exchanged would likely need to be cast to the correct type.
7. If a thread attempts to get the value of a Future object before its value has been computed, then an exception is thrown. True or False?
False. The thread requesting the Future’s value waits until the value is available.
8. A Callable object is like a Runnable object except that it represents a thread
that ____________.
returns a value
9. A ForkJoinPool uses an approach called “work-stealing” to execute waiting tasks. What does “work-stealing” mean?
Each thread maintains a queue of waiting tasks. If one thread empties its queue, it steals one or more tasks from another queue.
10. A very appropriate strategy to use with the Fork/Join Framework is “divide and conquer.” How does that strategy work?
A task is recursively broken into two or more subtasks until each subtask is small enough to be executed sequentially by one thread.

INDEX
SYMBOLS
& (ampersand)
bitwise AND operator, 189,
190, 191
logical AND operator, 60,
68
&& (short-circuit AND)
operator, 60, 62, 68 &= (logical AND with
assignment) operator, 65 < > (angle brackets)
<< (bitwise left shift) operator, 194 >> (bitwise right shift) operator, 194
>>> (bitwise unsigned right shift) operator, 194
> (greater than) operator, 29, 60, 61, 68
>= (greater than or equal to) operator, 29, 60, 61, 68
< (less than) operator, 29, 60, 61, 68 <= (less than or equal to) operator, 29, 60, 61, 68 diamond operator, 539 type parameters within, 508 * (asterisk) *= (multiplication and assignment) operator, 65 multiplication operator, 24, 58, 68 @ (at sign), in annotation names, 497 \ (backslash), in escape sequences, 52 ^ (caret) bitwise XOR operator, 189, 190, 192 logical XOR operator, 60, 68 ^= (XOR with assignment) operator, 65, 196 , (comma), in comma- separated lists, 30 { } (curly braces) enclosing class definitions, 20 enclosing code blocks, 32, 33 enclosing method body, 21 = (equal sign) = = (equal to) operator, 29, 60, 61, 184, 827 assignment operator, 64, 68 ! (exclamation mark) ! (logical NOT) operator, 60, 68 != (not equal to) operator, 29, 60, 61, 68 / (forward slash) /* */ enclosing multiline comments, 20 /** */ enclosing documenta- tion comments, 1059 // in single-line comments, 20 /= (division and assign- ment) operator, 65 division operator, 24, 58, 68 − (minus sign) − − (decrement) operator, 32, 58, 59, 68 −= (subtraction and assign- ment) operator, 65 subtraction operator, 24, 58, 68 unary minus, 68 ( ) (parentheses) in expressions, 72 following method names, 126 . (period) separating package names, 329 . . . (three periods), specify- ing varargs, 245 | (pipe symbol) bitwise OR operator, 189, 190, 191 logical OR operator, 60, 68 |= (logical OR with assign- ment) operator, 65 || (short-circuit OR) opera- tor, 60, 62, 68 % (percent sign) %= (modulus and assign- ment) operator, 65 %n and %% specifiers, 897 modulus operator, 58, 68 + (plus sign) += (addition and assign- ment) operator, 65 ++ (increment) operator, 58, 59 addition operator, 24, 58 string concatenation opera- tor, 184, 816 unary plus, 68 ? (question mark) wildcard argument, 517 ?: (ternary) operator, 68, 200 " (quotation marks, double), escaping, 52 ' (quotation marks, single), escaping, 52 1129 1130 Index ; (semicolon) ending enumeration members list, 481 terminating statements, 33 ~ (tilde), bitwise unary NOT operator, 189, 190, 193 _ (underscore), in integer or floating-point literals, 51 A abs( ), 221, 517, 854 abstract classes, 291–295, 296, 309 Abstract Window Toolkit (AWT), 549, 620 Applet inheritance of functionality, 563 importing, 550 Swing and, 621 AbstractButton class, 635, 663, 667 extension by menu items, 712, 715 setDisplayedMnemonicIn- dex( ), 720 setIcon( ), 723 setMnemonic( ), 720 AbstractMap class, 969 accelerators, adding to menu items, 721, 733 accept( ), 419, 768, 769 Access modifiers, 206–211 inheritance and, 260–263 packages and member access, 332 action command, 635, 638, 645, 650, 664 getting/setting for JButton, 665 getting/setting for JRadioButton, 673 for menus, 719 setting for JButton and JTextField, 648 setting for JTextField, 675 ActionEvent class, 635, 637, 638, 645, 664, 673, 675 ActionListener interface, 632, 634, 637, 649, 664, 673, 719, 770, 786 actionPerformed( ) method, 635 anonymous inner class implementing, 655 actionPerformed( ), 635, 637, 638, 640, 645, 651, 652, 655, 673, 681, 719, 767, 786 adapter classes, 632, 634 Adapter pattern, 604–607 add( ), 628, 629, 630, 638 Container, 713, 714 JMenu, 714 JMenuBar, 713 addActionListener( ), 633, 638, 643, 655, 786 addition operator (+), 24, 58, 68 addition and assignment operator (+=), 65 addKeyListener( ) method, 632 addMouseMotionListener( ) method, 632 addresses computer memory, 5 Internet, 986 addSeparator( ), 714 ALT key, accelerator, 721 ambiguity errors with generics, 540 AND operator, 61 & (bitwise), 189, 190, 191 & (Boolean logical), 60, 68 && (short-circuit AND), 60, 62, 68 &= (shorthand assignment) operator, 65 Annotation interface, 497 annotations (metadata), 497–500 built-in, 498–500 creating, 497 anonymous inner classes, 243, 629 using to handle events, 655 append( ), 839 Appendable interface, 872 Applet class, 550, 553, 792 additional methods, 563 APPLET tag, HTML, 551 PARAM attribute, 561 applets, 11, 549–563 additional features, 563 based on AWT or Swing, 549 complete applet skeleton, 553 creating Swing applets, 792 initialization and termina- tion, 554 key aspect of architecture, 554 passing parameters to, 561 requesting repainting, 555 scrolling text in Swing applet, 795–800 simple banner applet, 556–560 simple Swing applet, 793 running, 551 using status window, 560 appletviewer, 551 APPROVE_OPTION, JFileChooser, 764, 765, 767 args parameter, 21 arguments, 126, 132, 133 implicit, 149 passing to methods, 212–215 variable-length (varargs), 244–250 arithmetic operators, 24, 58–60, 68 ArithmeticException, 352, 353, 357, 359, 369 ArrayDeque class, 957–959 ArrayIndexOutOfBounds- Exception, 349, 352, 357, 369 ArrayList class, 945–948 arrays, 21, 155–181 alternate declaration syntax, 166 assigning array references, 166–168 data in JTable, 703, 704 defined, 155 encapsulation as private class member, 207–211 generic, 542 generic method to find minimum in, 870–872 initializing multidimension- al arrays, 164–166 irregular multidimensional arrays, 163 iterating over multidimen- sional arrays, 179 one-dimensional, 156–159 searching, using enhanced for loop, 180 simple stack class demon- stration, 170–176 sorting, 159–161 of strings, 184 of three or more dimen- sions, 164 two-dimensional, 161–163 using length member, 168–170 using for-each style for loop with, 176–179 Arrays class, 980 ASCII character set, 47 assembly language, 14 assert keyword, 565 AssertionError, 565 assignment operators, 64, 68 assignments autoboxing in, 509 bitwise shorthand, 196 declaring reference to generic class and creating instance, 512 new operator in, 145 reference variables and, 124 type conversion in, 65 autoboxing/unboxing, 490–496 in assignments, 509 autoboxing and methods, 493 fundamentals of autobox- ing, 492 occurring in expressions, 494–496 restricting use of type wrappers, 496 type wrappers and boxing, 490–492, 852 AutoCloseable interface, 397, 874 automatic resource manage- ment, 396 automatic type conversions, 65 auxiliary methods, 230 AWT. See Abstract Window Toolkit AWTEvent class, 632 B Background threads, manag- ing with SwingWorker, 790–792 Behavior, similar, 597–599 binary literals, 51 binary data, reading and writ- ing, 399–402 binary number system, 6 binary search, 977, 979–980 binarySearch( ), 976, 979 bits, 6 general-purpose bit display class, 196–199 bitwise operators, 189–199 blocks of code, 32 nested classes in, 242 static blocks, 236 variable scope in, 56 Boolean class, 421, 491, 852 Boolean expressions, 28, 30 boolean type, 48, 61 conversion to other types, 65 for loop condition results, 92 results of conditional con- trolling if statements, 80 Border class, 806 Border paintable area and, 802 setting for a panel, 806 BorderFactory class, 806 BorderLayout, 625, 628, 630, 661 Java Programming 1131 bounded types, 513–516, 530 wildcard arguments, 519–521 boxing, type wrappers and, 490–492 break statements, 84–86, 102–108, 110 exiting loops with, 102–104 using as form of goto, 104–108 BufferedReader class, 408–410, 414, 427 Buttons, 663–668 handling action events in, 664 handling item events in, 664 menu items as, 712 push buttons in Swing, using JButton, 635–638, 650, 651, 665–668 radio buttons, using JRadioButton, 672–674 Toggle buttons, using JToggleButton, 668–670 Byte class, 421, 491, 846–849 Byte streams, 384, 387 byte stream classes, 384 reading and writing files with, 390–394 byte type, 44, 45, 46, 51, 84 application of bitwise operators, 189 conversion to other types, 66, 70 bytecode, 12 Bytes, 6 C C/C++ Java and, 10 variable names and scope, 57 Calendar class, 639, 641, 880, 885–889 Callable and Future interfaces, 1033–1036 call-by-reference, 213, 214 call-by-value, 213, 214 1132 Index CANCEL_OPTION, JFileChooser, 764 case sensitivity in Java, 22, 37 case statements, 84–86 enumerable constants in, 477 Casts, 66–68, 71 instances of a generic class, 522 of Object references, 506 catch keyword, 348 catch clauses, 351, 352, 369. 370 catch clause in try/catch blocks, 349, 350 catching subclass exceptions, 356 multi-catch, 369 in nested try blocks, 357–359 rethrown exceptions, 360 using multiple, 355 try-with-resources statement, 397 ceil( ), 854 Chained exceptions, 368 changeBorderSize( ), 807 char type, 44, 46, 47, 51, 84 application of bitwise operators, 189 arithmetic operations on, 58 conversions to and from other types, 66, 70, 71 input from keyboard, 78 Character class, 421, 491, 849–852 Character escape sequences, 52 Character mapping, 816 Character streams, 384, 407 character stream classes, 385 console input using, 407 file I/O using, 412–414 Characters, 47 strings vs., 53 charAt( ) method, 182, 824, 873 CharSequence interface, 814, 838, 873, 1067 charValue( ), 849 Checkboxes JCheckBox controls, 670–672 JCheckBoxMenuItem, 712, 730–732 Checked exceptions, 367, 369 Class class, 508, 866 .class files, 122, 329 Class invariants, 576 class keyword, 20, 120 Class members controlling access to, 205–211 public or private, 21 static, 232 superclass, accessing with super, 269 Classes, 15, 119–124. See also Inheritance abstract, 291–295 adding constructor to, 144 adding method to, 126–128 adding parameterized method to, 133–135 avoiding duplication in, 583–585 built-in, 38 class cohesion and Expert pattern, 581–583 complete interface for, 585 constructors, 141–145 declaration that inherits a superclass, 260 defining, 20, 121–123 designing with change in mind, 586–589 elegant, 581 final, 296 general form, 120 implementing generic interfaces, 529–531 implementing interfaces, 305–309 implementing multiple interfaces, 311–313 moving to another package, 338–340 naming, 574 nested and inner, 240–244 UML Class diagrams, 591 CLASSPATH environment variable, 329 -classpath option, 329 clone( ), 299, 866 Cloneable interface, 866 CloneNotSupported- Exception, 866 close( ), 391, 392, 395, 396–399 Closeable interface, 397 Code blocks. See Blocks of code Code reuse benefits of inheritance, 594 Collections Framework, 879, 929–984 ArrayDeque class, 957–959 ArrayList class, 945–948 Arrays class, 980 assessing a collection via an iterator, 960–964 choosing a data structure, 933 collection algorithms, 976–979 collection classes, 944 collection interfaces, 935 collection views vs. arrays obtained from collection, 951 Collections class, 976 Collection interface, 936–938 Collections Framework overview, 934 comparators, 974–976 Deque interface, 942–944 for-each alternative to iterators, 964 hash tables, 933 HashMap class, 970 HashSet class, 952–954 legacy classes and interfaces, 981 linked lists, 931 LinkedHashMap class, 973 LinkedHashSet class, 956 LinkedList class, 948–951 List interface, 938, 939 Map interface, 965 map interfaces, 964 Map.Entry interface, 967 maps, 964 NavigableMap interface, 966, 968–969 NavigableSet interface, 940, 941 overview of data structures, 930 PriorityQueue class, 959 Queue interface, 940, 942 Set interface, 938 SortedMap interface, 965 SortedSet interface, 938–940 stacks and queues, 930 TreeMap class, 971–973 trees, 932 TreeSet class, 954–956 Color class, 806 Combo boxes, creating with JComboBox, 696–699 Comma-separated lists, 30 Command-line arguments, 187–189 Command-line tools (JDK), 17 Comments, 20, 578. See also Javadoc Comparable interface, 814, 846, 870, 974 Comparator interface, 974 Comparators, 974–976 compareTo( ), 183, 423, 482–484, 829–831, 846 compareToIgnoreCase( ), 829–831 Compatibility of data types, 65 Compilers, 7 javac, 17 JIT compiler for bytecode, 13 type-checking Java code, 43 Compiling program with javac, 19 Component class, 553, 555, 623, 713, 758 add( ) method, 628 paint( ) method, 800 Compound assignment operators, 65 Concatenating strings, 184, 817 Concurrency utilities, 457, 1009–1058 atomic operations, 1041 Callable and Future, 1033–1036 concurrent collections, 1038 CountDownLatch class, 1013–1017 CyclicBarrier class, 1018–1020 Exchanger class, 1020–1022 java.util.concurrent package, 1010 java.util.concurrent.atomic package, 1011 java.util.concurrent.locks package, 1011, 1038 locks, 1038–1041 parallel programming via Fork/Join Framework, 1042–1055 Phaser class, 1023–1027 Semaphore class, 1012–1015 synchronization objects, 1012 traditional Java approach versus, 1055 TimeUnit enumeration, 1036–1038 using an executor, 1030–1033 Conditional-and operator. See Short-circuit logical operators Conditional-or operator. See Short-circuit logical opera- tors Confirmation dialogs, 738, 744–748 Console class, 406 Console I/O, 21, 384 input using character streams, 407–410 reading console input, 388 output using character streams, 411 System.out, 21 Java Programming 1133 writing console output, 389 Constants, 50 enumeration, 476 final, 297 in interfaces, 319 static final, 343 WindowConstants interface, 628 Constructors, 141–145 adding to a class, 143 for enumerations, 480, 481 generic, 309, 524 and inheritance, 263–265 invoking overloaded con- structors with this( ), 566 numeric type wrappers, 491 overloading, 222–227 parameterized, 142 using super( ) to call superclass constructors, 265–269 Container class, 623, 758 add( ), 713, 714 getContentPane( ), 629 remove( ), 713 Containers, 623 top-level container panes, 623 Content pane, 623, 624 continue statement, 108–110 Control statements, 28–32, 77–117 break statement, 102–108 continue statement, 108–110 do-while loop, 97–99 for loop, 30–32, 90–95 if statement, 28–30, 79–81 if-else-if ladder, 82 nested loops, 113 switch statement, 83–87 while loop, 95–97 Controller, 621 Controls, 659. See also Swing controls and menus as main GUI features, 711 Conversions, data type in assignments, 65 in expressions, 70–72 using a cast, 66–68 1134 Index copy( ), JTextField, 675 copySign( ), 856 count variable, 31 CountDownLatch class, 1013–1017 CPU (Central Processing Unit), 4 CTRL key, mask for, currentThread( ) method, 468 currentTimeMillis( ), 862–864 cut( ), JTextField, 675, 678 CyclicBarrier class, 1018–1020 D Data structures, 929–934. See also Collections Framework choosing a data structure, 933 hash tables, 933 linked lists, 931 overview of data structures, 930 stacks and queues, 930 trees, 932 Data types, 26, 43–58 arguments and parameters of methods, 132 arrays, 21, 155–181 bitwise operators applied to, conversion in assignments, 65 conversion in expressions, 70–72 conversion of overloaded method parameter types, 219–221 conversion using a cast, 66–68 floating-point types, float and double, 25, 46 importance of, 43 literals, 50 primitive, 44–50 reference variable assign- ments, 124 return type of methods, 126 specifying for variables, 24 strings, 52, 181–189 superclass references and subclass objects, 277–282 type wrappers to convert numeric strings, 421–423 Datagrams, 1002–1007 DatagramPacket class, 1003, 1007 DatagramSocket class, 1003, 1007 DataInput interface, 404 DataInputStream class, 400–402 DataOutput interface, 400, 404 DataOutputStream class, 400–402 Date class, 880, 884 Dates and time formatting, 895–897 Deadlock, 463 Decrement operator (- -), 32, 58, 59, 68 Default access, 331, 332 DEFAULT_OPTION dialog, 753 default statement, 84, 85, 88, 101 giving annotation member default value, 498 DefaultMutableTreeNode class, 700 Delegation, 598, 601–603 Delegation event model, 631 delete( ), 839 Demeter’s Law, 589–591 Deprecated, 498 Design patterns, 603–612 Adapter pattern, 604–607 Observer pattern, 607–612 destroy( ), 553, 554, 792, 797, 857, 859 Dialog class, 758 Dialogs, 737–777 creating modeless dialog, 762 file filter, using with JFileChooser, 767–773 file selection with JFileChooser, 763–767 further options supported by JFileChooser, 773 JDialog, 758–762 JOptionPane, 738 showConfirmDialog( ), 739, 744–748 showInputDialog( ), 748–753 showMessageDialog( ), 740–743 showOptionDialog( ), 753–757 Swing classes supporting, 738 Diamond operator (<>), 539 Dictionary class, 981
digit( ), 851
Dimension class, 696 Directories
obtaining directory listing, 417
supporting package hierar- chy, 329
dispose( ), 758, 763 Divide-by-zero error, 62, 353 Division operator (/), 24, 58,
68
Division and assignment
operator (/=), 65 Documentation. See also
Javadoc
external, 578–581 internal, 577
doInBackground( ), 790, 791 Domain name, 986
Domain Name System
(DNS), 986
Dot operator, 121, 127, 128,
135, 233
Double buffering, 560 done( ), 791
Double class, 421, 490, 491,
496, 845
double type, 25, 26, 46, 51,
201
conversions to and from
other types, 66, 67, 70 doubleValue( ), 491, 492, 513 do-while loop, 97–99, 100
continue statement in, 108 drawLine( ), 800, 801 drawOval( ), 801

drawRect( ), 800, 801 drawString( ), 550, 555, 801 DRY principle (Don’t repeat
yourself.), 583 Duplication, avoiding,
583–585
Dynamic initialization, 54 Dynamic method dispatch,
285–287
Dynamically adding/remov-
ing menu items, 724–730
E
else clause, if statements, 79, 83
Enabling/disabling GUI features
controls, 667, 668
icon on menu item, 723 menu items, 715
Encapsulation, 15, 588 endsWith( ), 769, 828 Enhanced for loop, 95
using with arrays, 176–181 Enum class, 482–484, 868 enum keyword, 476 Enumerator interface, 981 Enumeration constants, 476,
478
Enumerations, 84, 475–490
as class types, 479
in computer-controlled traffic light, 484–490
constructors, methods, and instance variables, 480–82
final variables and, 482 inheritance of Enum
superclass, 482–484 values( ) and valueOf( )
methods, 479
equal to (= =) operator, 29,
827
equals( ), 182, 184, 299, 423,
826, 846
versus = =, 827 equalsIgnoreCase( ), 826 Erasure, 509, 540
ambiguity errors from, 540 Error class, 348, 365, 368
ERROR_MESSAGE dialog, 742, 747, 751, 753
Error messages, retrieving, 361
ERROR_OPTION, JFileChooser, 764
Errors
common program errors,
348
file input, 391
handling syntax errors, 22 runtime errors from raw
types, 537
Escape sequences, 52 Event-dispatching thread in
Swing programs, 628, 638,
780, 785 Event handling
in Swing programs, 631–634
using anonymous inner classes, 655
Event listeners, 632 adapter classes for, 632,
634
EventObject class, 631, 632,
664 Events, 631
button controls in Swing, 635–638, 663–665
event classes and listener interfaces, 632, 633
event sources, 631
list controls, JList, 692 Swing programs, 628 tree controls, JTree, 699
Exception class, 348, 356, 368
creating subclasses, 370–372
Exception classes, generic, inability to create, 543
Exception handling, 347–381 adding exceptions to stack
classes, 373–377 consequences of uncaught
exception, 352 creating subclasses of Exception, 370–372
exception class hierarchy, 348
Java Programming 1135 enabling graceful response
to errors, 353
exception handler, 347 Java’s built-in exceptions,
366–368
keywords in exception
handling, 348
nested try blocks, 357–359 new features in JDK 7,
369
rethrowing exceptions, 360 simple example, 349–351 Throwable class, 361–363 throwing exceptions, 359 using finally blocks,
363–365
using multiple catch claus-
es, 355–357
using throws, 365
using try and catch, 349 using, versus creating
custom exception classes,
372
Exchanger class, 1020–1022 Exclusive OR (XOR) opera-
tor
^ (bitwise XOR), 189, 190,
192
^ (logical XOR), 60, 61
Exclusive OR with assign- ment operator (^=), 65, 196
execute( ), 790 Executors, 1030–1033
Executor interface, 1031 ExecutorService interface,
1031
ForkJoinPool, 1031 ScheduledExecutorService,
1031 ScheduledThreadPool-
Executor, 1031 ThreadPoolExecutor, 1031
exit( ), 719 exitValue( ), 857 exp( ), 856
Expert pattern, 582 Expressions, 70
spacing and parentheses. 72
type conversions in, 70–72 Extending a class, 270–273 Extending an interface, 321

1136
Index
extends keyword, 257, 258 bound type for type argu-
ments, 514, 515 bound wildcards, 521
F
Factorial of a number, recur- sive method returning, 230–232
false/true values (boolean type), 48
File class, 415, 765 methods to obtain File
properties, 413–416 listFiles( ) method, 419 obtaining a directory
listing, 417
toPath( ) method, 420 utility methods, 419–421
File comparison utility console-based, 402–404 Swing-based, 678–685
File filter, using with JFileChooser, 767–773
File I/O, 384
automatically closing file,
396 random-access files,
404–406
reading/writing binary data,
399–402 reading/writing files using
byte streams, 390–394 using character streams,
412–414
writing to a file, 394–396
File menu
adding accelerators and
mnemonics, 722 creating, 719
File selection with JFileChooser, 763–767
FileChooser class, 768, 769 FileFilter class, 419, 768,
769
FileInputStream class, 390,
391, 397, 398, 401 FileNameFilter interface,
418, 419
FileNotFoundException, 391, 394, 413, 863
FileOutputStream class, 390, 394, 397, 400
FileReader class, 412, 413 FileWriter class, 412 fillOval( ), 801
fillRect( ), 801
final keyword, 296–298, 319, 343
enumerations and final vari- ables, 482
multi-catch parameters, 369 resources in try-with-
resources, 398 rethrow feature, 370
finalize( ), 146, 299 finally keyword, 348 finally blocks, 363–365,
392–394, 396, 397, 399 findInLine( ), 916 findWithinHorizon( ), 916 First-in, first-out (FIFO), 930 Float class, 421, 490, 845 float type, 25, 26, 46
conversion to and from other types, 65, 70 Floating-point values, 26
double and float types, 25, 46
strictfp, 564
floatValue( ) method, 491 floor( ), 854
FlowLayout class, 625, 637 for loops, 30–32, 35, 90–95,
100
declaring loop control vari-
ables in for statement, 94 enhanced, 95, 176–181 with empty body, 93 infinite loop, 93
leaving parts of definition empty, 92
variations on, 91
forDigit( ), 851, 852 for-each alternative to itera-
tors, 964
for-each style for loops, 95,
176–181
Fork/Join Framework, 457,
1042–1055
Divide-and-conquer strat- egy, 1046
example using RecursiveTask, 1052–1054
executing task asynchro- nously, 1054
ForkJoinPool, 1031, 1045 ForkJoinTask class,
1043
impact of level of parallel-
ism, 1049–1052 main classes, 1043 RecursiveAction class,
1044, 1047 RecursiveTask, 1044 simple first example,
1047–1049
format( ) method, 390 Formatter class, 880, 890–
908
%n and %% specifiers,
897
# flag, 901
closing a Formatter, 904 comma flag, 901 constructors, 890
format specifiers, 893 formatting dates and time,
895–897
formatting for different
locale, 903
formatting numbers, 894 formatting and printf( )
method, 907 formatting strings and
characters, 894 formatting table of cities
and populations, 905–907 justifying output, 900 methods, 892
precision specifier, 898 specifying minimum field
width, 897 uppercase option, 902 using argument index,
902
using format flags, 899
FORTRAN, 14 freeMemory( ), 860
Future interface, 1033–1036

G
Gallons to liters conversion, sample program, 27 improved, 35
Garbage collection, 145–151 demonstration of, 147–151 finalize( ) method, 146
Generics, 299, 505–547 ambiguity errors, 540 bounded types, 513–516 bounded wildcards, 519–
521
casts of instances of generic
class, 522
class hierarchies, 525–528 class with two type param-
eters, 510–512 constructors, 524 creating simple generic
stack, 531–535
erasure of type information,
540
general form of a class, 512 JComboBox, 696–699 JList, 692–696
methods, 522–524
raw types for legacy code,
535–538
restrictions on, 541–543 simple example, 506–510 support by other languages,
512 SwingWorker class,
790–792
type inference with dia-
mond operator, 538 type safety from, 506 types differing based on
type arguments, 510 using wildcard arguments,
516–519
working only with objects,
510 get( ), 791
getActionCommand( ), 633, 638, 664, 665, 673
getCause( ), 368 getChars( ), 824 getClass( ), 299, 508
getContentPane( ), 629 getDescription( ), 768 getFreeSpace( ), 419 getGraphics( ), 556 getHeight( ), 802 getInsets( ), 802 getInstance( ), 641 getItem( ), 664, 668, 670 getKeyStroke( ), 721 getLastPathComponent( ),
700 getMenuComponentCount( ),
714
getMenuComponents( ), 714 getMenuCount( ), 713 getName( ), 440, 443, 508,
765
getParameter( ), 561 getPath( ), 700 getPriority( ) method, 451 getRuntime( ), 859 getSelectedFile( ), 765 getSelectedFiles( ), 774 getSelectedIndex( ), 693 getSelectedItem, 697 getSelectedText( ), 675,
678
getSelectedValue( ), 693 getSource( ) method, 664,
673
getStateChange( ) method,
665
getSuppressed( ) method, 399 getText( ) method, 643, 645,
675, 678 getTimeInMillis( ) method,
641
getWidth( ), 802
Glass pane, 623, 624
Global scope, 55
goto statement, break as form
of, 104–108
graphical user interfaces
(GUIs), 619
controls and menus as main
features, 711
Graphics class, 550, 801 Graphics context, 550, 556,
801
Greater than (>) operator, 29,
60, 61, 68
Java Programming 1137 Greater than or equal to (>=)
operator, 29, 60, 61, 68 GregorianCalendar class,
880, 885–889 GridLayout, 688, 696 guiInit( ), 797
H
Hardware components of computers, 4
Hash tables, 933
hashCode( ), 299, 866 HashMap class, 970 HashSet class, 952–954 Hashtable class, 981 hasNext methods (Scanner),
429, 910, 911, 916 HeadlessException, 740, 742,
747, 748
Heavyweight components,
620
Hexadecimal literals, 51 Hierarchy of classes, creat-
ing, 273–282 High-level languages, 8 HTML, using in Swing
labels, 662 HttpURLConnection class,
1000–1002
HTTP (Hypertext Transfer
Protocol), 986 hypot( ), 854
I
Identifiers, 37
IDEs. See integrated develop-
ment environments
if statements, 28–30, 35,
79–83
else clause, 79
if-else-if ladder, 82, 89 nested, 81
string-based switch vs. if/
else, 187
ImageIcon class, 660–663,
723

1138 Index Images
adding to menu items, 723, 732
image file formats, 660 passing icons to show-
OptionsDialog( ), 754 implements clause, 305,
531
import statements, 336,
550
static import, 341–343 in, out, and err stream
variables, 386
Increment operator (++), 58,
59, 68
Indentation of code, 34 indexOf( ) method, 183, 831,
833
InetAddress class, 987–989 Infinite loop, 93
Information hiding, 588 INFORMATION_MESSAGE
dialog, 742, 747, 751, 753 InheritableLocalThread class,
869
Inheritance, 257–301,
591–603
abstract classes, 291–295 accessing superclass mem-
bers with super, 269 calling superclass
constructors using
super( ), 265–269 creating multilevel class
hierarchy, 273–276 constructors and, 263–265 costs of, 608
enumerations and, 482 execution of constructors in
class hierarchy, 276 extending a class, 270–273 importance of overridden
methods, 287 interfaces, 321 member access and,
260–263
method overriding, 282–285 method overriding, apply-
ing, 287–291
Object class, superclass of
all other classes, 298
polymorphism support by overridden methods, 285–287
preventing using final keyword, 296–298
superclass references and subclass objects, 277–282
init( ), 553, 554, 792, 793, 797
initCause( ), 368 Initialization of variables, 54 Inner classes, 241–244
Input dialogs, 738, 748–753 Input sequence, 1067 InputEvent class, 721 InputMismatchException,
430
Input/output (I/O), 383–434
byte stream classes, 384 byte streams and character
streams, 384
character stream classes,
385
closing file automatically,
396–399
Console class, 406 console output, System.
out, 21
creating disk-based Help
system, 423–429 File class, 415–417,
419–421
file comparison utility,
402–404
file I/O using character
streams, 412–414 FilenameFilter, 418
input characters from key-
board, 78 java.io.IOException, 79 predefined streams, 386 random-access files,
404–406
reading/writing binary data,
399–402 reading/writing files using
byte streams, 390–396 redirecting standard I/O
streams, 864–866 Scanner class, 429 streams, 394
using byte streams, 387–390
using character streams, 407–412
using type wrappers, 421–423
Input/output (I/O) devices, 5 InputStream class, 386, 387,
388, 400, 408 methods, 387
read( ) method, 388
InputStreamReader class, 408, 413
insert( ), 714, 838
Insets class, 802
Instance variables, 15, 120,
121, 236
accessing, 121, 135
copies contained in objects,
122
defined by enumerations,
480, 481
direct use of, in methods,
128
intial values set by
constructors, 141 involved in class invariants,
577
making private, 263, 588 static variables versus,
233–235
instanceof operator, 68, 564 Instances, 15
int keyword, 24
int type, 24, 25, 44, 45, 46,
84
application of bitwise
operators to, 189 conversion in assignments,
65
integer literals as, 51 promotion of other types
to, 70
Integer class, 421, 490, 491,
492, 496, 846–849 Integer literals, 51 Integers, 26
data types, 44–46, 51 Integrated development
environments (IDEs), 17 interface keyword, 303, 304

Interfaces, 303–325
class implementing multiple
interfaces, 311–313 constants in, 319 creating, 304, 313–319 declaring, 304 extending, 321 generic, 528–531
in java.lang package, 869–874
implementing, 305–309 naming, 574
nested, 322
using interface references,
309–311
Internet programming, Java
and, 10
Internet Protocol (IP),
986
IPv4 and IPv6, 986, 987 Interpreter, 8
Interpreting, 8 InterruptedException, 439,
791
intValue( ), 491, 492, 513 invokeAndWait( ), 629, 780,
786, 793
invokeLater( ), 629, 655, 780,
781, 784, 785, 786, 793 IOException, 79, 365, 366,
388, 393, 400, 409
Is-a relationship, 594–597 isAlive( ), 447, 448 isDigit( ), 849 isDirectory( ), 417, 765 isEventDispatchThread( ),
785
isFile( ), 765
isInfinite( ), 846 isLetterorDigit( ), 849 isNaN( ), 846
isSelected( ), 668, 669, 670,
673
isSpaceChar( ), 849, 851 isWhitespace( ), 851 ItemEvent class, 664, 665,
670, 697
ItemListener interface, 664,
668, 670 itemStateChanged( ) method,
664, 668, 670
Iterable interface, 873 Iterators, using, 960–964
J
JApplet, 623, 792
java package, 337
java program (application
launcher), 17 invocation of main( )
method, 21
running a program, 19
Java
applets, 11
bytecode, 13
contribution to the Internet,
11
evolution of, 13 C++ and, 10 origins of, 9 portability, 12 security, 11
Java API library, 337
Java Development Kit (JDK),
13, 17
current version (JDK 7), 13 downloading and
installing, 17
.java files, 767
Java Runtime Environment
(JRE), 13
Java SE 7, 13
Java Virtual Machine (JVM),
12
exception handling, 352 javac, 17
java.applet package, 338, 550 java.awt package, 338, 637 java.awt.event package, 631,
632, 637, 733
sampling of event classes,
633 java.awt.event.KeyEvent, 720 java.awt.event.InputEvent,
721
Javadoc, 580, 1059–1065
example using documenta- tion comments, 1064
general form of documenta- tion comment, 1063–
Java Programming 1139 stand-alone tags, 1060–
1063 tags, 1059
java.io package, 338, 366, 397, 811
java.lang package, 338, 366, 386, 397, 811–841, 843–877
java.lang.annotation package, 497
java.net package, 338, 985–1008
java.nio package, 421 java.util package, 338, 639,
811, 879–927, 929 java.util.EventObject class,
631
java.util.concurrent package,
457, 929, 1010 java.util.concurrent.atomic
package, 1011, 1041 java.util.concurrent.locks
package, 1011, 1038–1041 javax.swing package, 627,
637
javax.swing.event package,
631, 632, 692
sampling of event classes,
633
javax.swing.table package,
703
javax.swing.Timer, 786–790 javax.swing.tree package, 699 JButton, 635–638, 648,
665–668
anonymous inner class as
action listener, 655 disabling a button, 667
JCheckBox, 670–672 JCheckBoxMenuItem, 712,
730–733
JComboBox, 696–699 JComponent, 623, 660, 663,
696, 764, 800
setToolTipText( ), 723 JDialog, 623, 739, 758–762
AWT classes inherited, 758 creating a modal dialog,
758–762
creating a modeless dialog,
762

1140 Index JFileChooser
other options supported by, 773
selecting files with, 763–767
using file filter with JFileChooser, 767–773
JFrame, 623, 625
creating, 627 getContentPane( ), 629 setJMenuBar( ), 713, 715
JLabel, 625, 628, 637, 643, 649, 780
scrolling text in, 795, 798 setText( ) method, 638 using with ImageIcon,
660–663 JList, 692–696 JMenu, 712, 714
adding mnemonics, 720 creating and adding
JMenuItems to it, 715 JMenuBar, 712, 713, 715 JMenuItem, 712, 715
adding accelerators, 721 adding icons and tooltips,
723
adding mnemonics, 720
join( ) method, 448, 450 JOptionPane, 738
show methods, categories of, 739
showConfirmDialog( ), 744–748
showInputDialog( ), 748–753
showMessageDialog( ), 739, 740–743
showOptionDialog( ), 753–757
types of dialogs supported, 738
JPanel, 623
scrolling, using JScrollPane,
687–692
JPopupMenu, 733 JRadioButton, 672–674 JRadioButtonMenuItem, 712,
730–733
JRE. See Java Runtime
Environment
JRootPane, 623 JScrollPane, 685–692, 700,
703
JTable, 703–705 JTextField, 643–648, 649,
675–678
JToggleButton, 668–670 JTree, 699–703 Just-in-time (JIT) compiler
for bytecode, 13 JVM. See Java Virtual
Machine JWindow, 623
K
Key stroke events, listener for, 632
Keyboard input, 78, 429 KeyEvent class, 720, 721 KeyStroke class, 721 Keywords, 8, 36, 563–567
L
Labels. See also JLabel break statement with, 104 continue statement with,
108
label displaying multiple
lines of text, 662
Last-in, first-out (LIFO), 930 lastIndexOf( ) method, 183,
831
Layered pane, 623, 624 Layout managers, 624, 630,
637, 661
and setting size for
components, 696 length( ) method, 182, 823,
825, 873
length property, arrays,
168–170
Less than operator (<), 29, 60, 61, 68 Less than or equal to operator (<=), 29, 60, 61, 68 Lifetime of variables, 56 Lightweight components, 620 Line buffered console input, 79 Linked lists, 931 LinkedHashMap class, 973 LinkedHashSet class, 956 LinkedList class, 948–951 List class, 791 List controls, creating with JList, 692–696 list( ), 417, 419 List interface, 938, 939 listFiles( ) method, 419 ListSelectionEvent, 692, 693 ListSelectionListener, 692, 693 ListSelectionModel, 693 Literals, 50 character escapes, 52 hexadecimal, octal, and binary, 51 string, 52 Local scope, 55 Locale class, 837, 880, 881–884 Locks, 1038–1041 Lock interface, 1038 ReentrantLock class, 1038, 1041 ReadWriteLock interface, 1041 ReentrantReadWriteLock class, 1041 Shared.count, 1039 log( ), 854 log10( ), 854 Logical operators, 60–64 displaying truth table for, 69 operands of type Boolean, 61 precedence of, 68 short-circuit, 62 Logical shorthand assignment operators, 65 Long class, 421, 490, 846–849 long type, 44, 45, 46, 51 application of bitwise operators to, 189 conversion to and from other types, 66, 67, 70 Loops, 30, 100. See also control statements continue statement in while and do-while loops, 108 do-while, 97–99 exiting with break statement, 102–104 for, 30–32, 90–95 nested, 113 while, 95–97 low-level languages, 8 M Machine instructions or machine code, 5 main( ) method, 20, 79, 100, 126 applets and, 551 catching exceptions in, 351, 361 command-line arguments in String array, 187 declared public, 21 ensuring main( ) finishes after thread, 440 final constants in, 297 interface reference in, 310 nested class in block scope, 243 Thread object in, 439 throws clause in, 365 Main thread, 468 Maps, 964 HashMap class, 970 LinkedHashMap class, 973 map classes, 969 Map interface, 965 map interfaces, 964 Map.Entry interface, 967 NavigableMap interface, 966, 968–969 TreeMap class, 971–973 Matcher class, 1067, 1068 replaceAll( ) method, 1073 matches( ), 1074 Math class, 341, 853–856 abs( ) method, 221, 517 E and PI constants, 855 sqrt( ) method, 46, 47 static methods, 236 Member interface, 322 Member variables, 15 final, 297, 298 Members, class, 15 Members, interface, 320 Memory, 5, 860 Menus, 711–735 adding images and tooltips to menu items, 723 adding mnemonics and accelerators to items, 720–722 classes in Swing menu system, 711 creating main menu, 715–720 dynamically adding/remov- ing menu items, 724–730 JMenu class, 714 JMenuBar class, 713 JMenuItem class, 715 menu items as buttons, 712 popup menus activated by right click, 733 using JRadioButtonMenuItem and JCheckBoxMenuItem, 730–733 Message dialogs, 738, 740–743 Metadata. See Annotations Methods, 20, 126–141 abstract, 292–295, 303 access by dot operator, 121 accessing, 135 adding to a class, 126–128 adding parameterized meth- od to a class, 133–135 autoboxing and, 493 cohesive, 574–576 constructor, 141–145 elegant, 575 of enumerations, 480, 481 final, preventing overriding, 296 generic, 522–524, 539 interface, 306 naming, 573 overloading, 217–222 Java Programming 1141 overloading varargs methods, 247–250 overridden, importance of, 287 overriding, 282–285, 287–291 overriding generic method in generic class hierarchy, 527 parameters of, 21, 131–133 passing objects to, 211–215 polymorphism support by overridden methods, 285–287 recursive, 228–232 returning from, 128 returning objects, 215–217 returning a value, 129–131 signature, 222 static, 235 synchronized, 452–455 varargs, 244–247 Mnemonics, adding to menu items, 720, 733 Modal dialogs, 738, 740, 758 Model-Delegate architecture, 621, 706 Modeless dialogs, 739, 758 Model-View-Controller (MVC) architecture, 621 Models used by Swing controls, 693, 706 Modulus operator (%), 58, 68 Modulus and assignment operator (%=), 65 Monitor, 452 Mouse motion listener, 632 mouseDragged( ) method, 634 MouseEvent class, 733 MouseListener interface, 733 MouseMotionAdapter class, 634 MouseMotionListener class, 634 mouseMoved( ), 634 Multiline comments, 20 Multiplication operator (*), 24, 58 Multiplication and assign- ment operator (*=), 65 1142 Index Multiprocessor and multicore systems, 436 Multithreaded programming. See threads MutableTreeNode interface, 700 N \n (newline), 53 Namespace, 327 Naming conventions, 573 Narrowing conversions, 67 native keyword, 565 Native windows or peers, 620 NavigableMap interface, 966, 968–969 NavigableSet interface, 940, 941 Nested and inner classes, 240–244 Nested interfaces, 322 Nested loops, 113 Nested statements if statement, 81 switch statement, 86 Nested scopes, 55 Networking, 985–1008 classes and interfaces, 987 User Datagram Protocol (UDP), 986 new operator, 124, 145, 156, 159, 360, 539 next methods (Scanner), 429, 910, 911 nextInt( ), 807 NIO package, 414 NOT operator ~ (bitwise unary), 189, 190, 193 ! (Boolean logical unary), 60, 61 not equal to (!=) operator, 29, 60, 61 notify( ) method, 299, 458–463, 486, 487 notifyAll( ) method, 299, 458 notifyObservers( ), 919, 920 null value for instance vari- ables, 143 Number class, 490, 513, 844 bounded types and, 514 methods, 491 NumberFormatException, 491, 847 Numbers, formatting, 894 Numeric wrapper classes, 490, 844–853 bounded types and, 514 converting numeric strings, 421–423 Number as superclass, 513 O Object class, 298, 866–868 methods, 299, 867 references of type Object, 506 wait( ), notify( ), and notifyAll( ), 458 Object code, 7 Object-oriented design, 569–616 avoiding duplication, 583–585 class cohesion and Expert pattern, 581–583 complete interface for classes, 585 Demeter’s Law, 589–591 design patterns, 603–612 designing with change in mind, 586–589 elegant classes, 581 elegant methods, 573 elegant software and its importance, 570 external documentation, 579–581 inheritance versus delegation, 591–603 internal documentation, 577 learning about design prin- ciples and patterns, 572 method cohesion, 574–576 naming conventions, 573 properties of elegant software, 571 well-formed objects, 578 Object-oriented programming (OOP), 14–17 encapsulation, 15 inheritance, 16 internal documentation, 577 polymorphism, 16 Objects, 15, 120 creating, 121, 124 instance variable content, 122 passing to methods, 211–215 returned by methods, 215–217 this refererence to, 149–152 well-formed, 576 Objects class, 924, 925 Observable class, 880, 918–921 methods, 919 Observer class, 880, 918–921 Observer pattern, 607–612 Octal literals, 51 OK_CANCEL_OPTION dialog, 747, 753 onAdvance( ) method, 1027–1030 Open-Closed Principle, 587 DatagramPacket class, datagrams, 1002–1007 DatagramSocket class, Domain Name System (DNS), 986 downloading file from 1003 1003 Internet, 998–1000 HTTP (Hypertext Transfer Protocol), 986 HttpURLConnection class, 1000–1002 InetAddress class, 987–989 Internet Protocol (IP), 986 Socket class, 989–993 sockets, 985 Transmission Control Protocol (TCP), 986 URL class, 993–995 URLConnection class, 995–998 Operating systems, 6 multitasking and thread CPU time, 451 Operators, 8, 58–70 arithmetic, 24, 58–60 assignment, 64 bitwise, 189–199 compound (shorthand) assignment, 64 precedence of, 49, 68, 72 logical, 60–64 relational, 29, 49, 60–62 short-circuit logical opera- tors, 62 ternary (?:) operator, 68, 200 Option dialogs, 738, 753–757 OR operator | (bitwise OR) operator, 189, 190, 191 | (logical OR) operator, 60, 61, 68 || (short-circuit OR) opera- tor, 60, 61, 62, 68 |= (shorthand assignment) operator, 65 ^ (XOR (exclusive OR) operator, 60, 61 ^= (shorthand assignment) operator, 65 ordinal( ), 482–484 OutputStream class, 387 methods, 388 OutputStreamWriter class, 412 Overloading constructors, 222–227 Overloading methods, 217–222 varargs methods, 247–250 Overriding methods, 282– 285, 287–291 generic method in generic class hierarchy, 427 importance of, 287 overridden methods’ sup- port of polymorphism, 285–287 preventing with final, 296 P Package statement, 328, 337 Packages, 327–346 defining, 328 finding, 329 importing, 336 importing Java’s standard packages, 337 moving class to another package, 338–340 member access, 331–334 static import, 341–343 paint( ), 550, 553, 554, 555, 557, 558, 800, 802 paintBorder( ), 800, 802 paintChildren( ), 800, 802 paintComponent( ), 800, 801, 802, 806 Painting, 800–807 computing paintable area, 802 example, PaintPanel, 802–807 graphics context, 801 requesting painting, 802 Panes, 623 Parallel programming. See Fork/Join Framework Parameters, 126, 131–133 adding to constructors, 142 adding parameterized meth- od to a class, 133–135 final, 298 of overloaded methods, automatic type conver- sions, 219–222 passing to applets, 561 primitive type values passed to, 213 variable-length (varargs) and normal, 246 Parentheses in expressions, 72 after method names, 126 parseBoolean( ), 852 parseByte( ), 847 parseDouble( ) method, 422, 846 parseFloat( ), 846 Java Programming 1143 parseInt( ), 422, 847 parseLong( ), 847 parseShort( ), 847 paste( ), JTextField, 675, 676, 678 Path interface, 420 Pattern class, 1067 Peers, 620 Phaser class, 1023–1027 Demonstrating on- Advance( ) method, 1027–1030 PLAIN_MESSAGE dialog, 742, 747, 751, 753 Platform-independence, 10 Pluggable look and feel, 620 Polymorphism, 16, 600 interface references and, 310 in method overloading, 221 support by overridden methods, 285–287 Popup menus activated by right click, 733 Portability, 10, 12 Postconditions, 579 pow( ), 341, 854, 856 Precedence, operator, 49, 68, 72 Preconditions, 579 Primitive types, 44–50 assignment of reference variables, 124 boolean, 48 byte, short, int, and long, 44–46 char, 47 float and double, 46 methods to read/write, 404 passing to methods, 213, 215 reading/writing binary val- ues of, 399–402, 404–406 variables of, new operator and, 145 wrapper classes for, 215, 421–423, 490–496, 844–853 Principle of least astonish- ment, 596 print( ) method, 25, 389, 411 1144 Index printf( ) method, 390, 406, 907 println( ) method, 21, 25, 389, 411 exceptions, 361 printing blank line, 26 String object as argument, 182 printStackTrace( ) methods, 361, 362 PrintStream class, 386, 389, 865, 907, 908 PrintWriter class, 411, 907, 908 Priorities of threads, 457 PriorityQueue class, 959 Private access modifier, 205–211, 225, 260–263, 331 private keyword, 21 Process class, 857–859 process( ), 791 Process-based multitasking environment, 436 ProcessBuilder class, 857–859 programming languages, 8 programs, 7 compiling, 19 entering, 18 first simple program, 18 line-by-line analysis of, 19–22 sample program, converting gallons to liters, 27 second simple program, 23 Properties class, 982 Property values, obtaining, 864 protected access modifier, 206, 331, 332 package access and, 334–336 protected keyword, 146 public access modifier, 205–211, 260–263, 306, 319, 331 public keyword, 20 publish( ), 791 Publishers and subscribers, 609 Punctuation, 8 Push button controls. See Buttons Q QUESTION_MESSAGE dia- log, 742, 747, 751, 753 Queue interface, 940, 942 Queues, 930 pure queue, implemented using delegation, 601–603 PriorityQueue class, 959 Quotation marks, escaping, 52 R Race condition, 464 Radio buttons JRadioButton controls, 672–674 JRadioButtonMenuItem, 712, 730–733 RAM (Random Access Memory), 5 Random class, 806, 880, 917 random( ), 855 Random-access files, 404–406 Raw types, 535–538 read( ), 388, 391, 396, 404, 409 Readable interface, 873 Reader class, 385, 406, 412, 413 methods defined by, 407 readInt( ), 404 readLine( ), 406, 410, 414, 422 readPassword( ), 406 ReadWriteLock interface, 1041 Recursion, 228–232, 238–240 RecursiveAction class, 1044, 1047 RecursiveTask class,
1044, 1052–1054 ReentrantLock class, 1038
ReentrantReadWriteLock class, 1041
Reference variables assignment and, 124 assigning array references,
166–168
interface references,
309–311
superclass references and
subclass objects, 277–282 regionMatches( ), 828 Regular expressions,
1067–1074
classes of characters,
1073
demonstrating pattern
matching, 1069–1071 Matcher class, 1068 Pattern class, 1067 String class and, 1074 syntax, 1068
using replaceAll( ) of Matcher, 1073
wildcard character and quantifiers, 1071–1073
Relational operators, 29, 60–62
boolean type of output, 49
precedence of, 68 remove( ), 713, 714 removeActionListener( ),
633, 643
Removing event listeners,
632
repaint( ), 555, 557, 802,
807
replace( ), 834 replaceAll( ), 976, 1073 Resource-specification
statement, 397
Rethrowing exceptions, 360,
370
return statements, 128–131 Return types, 126
reverse( ), 976
rotate( ), 976
rotateLeft( ), 848 rotateRight( ), 848
run( ), 437, 438, 439, 440, 443, 485, 557, 780, 784

called by event-dispatching thread in Swing, 629
suspending, resuming, and stopping threads, 464–467 Runnable interface, 436, 437,
438, 439, 447, 485, 587,
629, 780, 784, 793, 869 Runtime class, 859–861 RuntimeException class, 348,
365, 366, 368
S
Scanner class, 429, 880, 909–916
constructors, 909 examples, 911–916 hasNext methods, 911 next methods, 911 other features, 916
ScheduledExecutorService, 1031
ScheduledThreadPool- Executor, 1031
Scope of variables, 55–57 Scrolling
components with JScroll- Pane, 685–687
scrolling a JPanel using JScrollPane, 687–692
scrolling text in an applet, 795–800
Security, applets and, 11 seek( ) method, 404 Segment class, 873 Self-typed enumeration
constants, 476
Semaphore class, 1012–1015 Separable Model architecture,
621
Sequential search, 931, 979 Serializable interface, 814 Servlets, 13
Set interface, 938 setActionCommand( ), 645,
648, 665, 673, 675 setBorder( ), 806 setChanged( ), 919 setCharAt( ) method, 185,
839
setDefaultCloseOperation( ), 627
setDisabled( ), 667 setDisabledIcon( ), 723 setDisplayedMnemonic-
Index( ), 720
setEnabled( ), 667, 715 setFileFilter( ), 768, 770 setFileHidingEnabled( ), 774 setFileSelectionMode( ), 773 setIcon( ), 662, 723 setJMenuBar( ), 713, 715 setMaximumSize( ), 696 setMinimumSize( ), 696 setMnemonic( ), 720 setMultiSelectionEnabled( ),
773
setName( ), 440 setPreferredSize( ), 693, 696 setPressedIcon( ), 667 setPriority( ), 451, 457 setRepeats( ), 787 setRolloverIcon( ), 667 setSelectedIndex( ), 695 setSize( ), 627
setText( ), 638, 641, 675 setToolTipText( ), 723 setVisible( ), 628, 758, 762 Shared.count, 1039
SHIFT key, accelerator, 721 Shift operators, 194–196 Short class, 421, 490,
846–849
short type, 44, 45, 46, 51, 84
bitwise operators and, 189 conversions to and from
other types, 67, 70 Short-circuit logical
operators, 60, 62 Shorthand assignment
operators, 64 showConfirmDialog( ), 739,
744–748
showDialog( ), 764 showInputDialog( ), 739,
748–753 showMessageDialog( ), 739,
740–743
showOpenDialog( ), 764, 767 showOptionDialog( ), 739,
753–757
Java Programming 1145 showSaveDialog( ), 764, 767
showStatus( ), 560 showType( ), 508
Signature, 222
Single-core systems, 436 Single-line comments, 20 Size of JList control, setting,
693
skip( ), 916 sleep( ), 439, 440 Sockets, 985
Socket class, 989–993 sort( ), 977
Sorting
bubble sort method, 159–161
quicksort method, 238–240 SortedMap interface, 965 SortedSet interface, 938–940 Source code, 7
sqrt( ) method, 46, 47, 129, 341
Stack trace, 352
Stack class, 981
Stacks, 930
start( ), 438, 439, 553, 554,
557, 786, 792, 797, 857 startsWith( ), 828 Statements
indentation of, 34 termination by semicolon
(;), 33
static modifier, 232–237, 319
abstract modifier and, 292 blocks of code, 236
final member variables,
298, 343
generic method, 522 methods, 235
nested classes, 241, 244 restrictions on generic static
members, 542
static import, 341–343 variables, 233
Status window, applets, 560 stop( ), 553, 554, 557, 786,
792, 797 Stopwatch program
improved version, 781–785 simple stopwatch, 639–643 using Timer, 787–790

1146 Index Streams, 384
byte and character streams, 384
byte stream classes, 384 character stream classes,
385
predefined streams, 386
strictfp keyword, 564
String literals, 52, 817 StringBuffer class, 185, 814,
839, 873
StringBuilder class, 814, 839,
873
Strings, 52, 181–189,
813–841
arrays of, 184
changing case of characters
in, 836
characters vs., 53
charAt( ) method, 824 comparing, 826–831 concatenating, 817 constructing, 152 constructors, 814–816 empty, 814, 819 immutability of, 185, 814 length( ) method, 823 matches( ) method of
String, 1074
obtaining modified string,
833–836
operating on, 182–184 other methods of String,
838
overriding toString( ), 818 searching using indexOf( )
and lastIndexOf( ), 831 String class, 181, 813, 814,
873
String objects, 21, 813 toCharArray( ), 825 toString( ) method, 299 using to control switch
statement, 186
Strongly typed languages, 43 Structured programming, 14 Subclass, 257, 295. See also
Inheritance bounded types, 514 catching subclass
exceptions, 356
superclass references and subclass objects, 277–282
Submenus, 712 Subscribers, 609 subSequence( ), 873 substring( ), 186, 833 Subtraction operator (-), 24,
58
Subtraction and assignment
operator (-=), 65
Sun Microsystems, 9, 13 super( ), 265–269
using to call superclass constructors, 265–269
super
accessing superclass
members, 269
accessing superclass version
of overridden method,
283–285, 294
calling paintComponent( ),
801, 806
calling Thread constructor,
443
superclass, 257. See also
inheritance
bounded types, 524 creating and extending,
258–260
Superclass references and
subclass objects, 277–282 Suppressed exceptions,
399
Swing, 550, 619–658
applets based on, 549, 792–800
components and containers, 622–624
creating simple code machine, 648–655
creating simple stopwatch, 639–643
events and event handling, 631–634
first simple program, 625–629
JTextField, 643–648 origins and design
philosophy, 620–622 painting in, 800–807 using anonymous inner
classes to handle events,
655
using push button, 635–638
Swing controls, 659–709 buttons and events,
663–665
buttons, using JButton,
665–668
check boxes, using
JCheckBox, 670–672 combo box, creating with JComboBox, 696–699
component classes, 659
labels, using JLabel and ImageIcon, 660–663 list, creating with JList,
692–696
models used by, 706 other types offered by
Swing, 706
radio buttons, using
JRadioButton, 672–674 scrolling components with JScrollPane, 685–687
scrolling a JPanel using JScrollPane, 687–692
tables, using JTable, 703–705
text fields, using JTextField, 675–678
toggle buttons, using JToggleButton, 668–670
trees, using JTree, 699–703 using in file comparison
utility, 678–685 SwingUtilities class, 780,
785
SwingWorker class, 790–792 switch statements, 83–87, 88,
89, 100, 101, 110 enumeration used to con-
trol, 477, 486
Integer object controlling,
495
nested, 86
response variable control-
ling, in confirmation
dialog, 746
using strings to control, 186
Synchronization, 436, 451

Synchronization objects, 1012. See also Concurrency utilities
synchronized keyword, 452, 455, 457, 461
synchronized statement, 455–457
Syntax errors, handling, 22 Syntax rules, 8
System class, 386, 861–866 System.console( ), 406 System.err, 386 System.exit( ), 719 System.in, 386, 388, 408,
409, 427
System.in.read( ), 78, 88 System.out, 21, 78, 343, 386,
389, 411, 412, 907
T
Tables, creating with JTable, 703–705
TCP (Transmission Control Protocol), 986
TCP/IP, 986
TCP/IP sockets, 989 Text fields, JTextField,
643–648, 675–678
Text, scrolling in an applet,
795–800
Text-based console I/O, 384 this (keyword), 149–152 this( ), 566
Thread class, 436, 437, 869,
1030
currentThread( ) method,
468
extending, 442–444, 447 getName( ) and setName( ),
440
getPriority( ) method,
451
isAlive( ) method, 447, 448 join( ) method, 448, 450 notify( ) method, 458–463 notifyAll( ) method, 458 setPriority( ) method, 451,
457
sleep( ) method, 439
start( ) method, 438, 557
wait( ) method, 458–463 ThreadGroup class, 869 Threading, 435–473, 557,
779–792
communication using noti-
fy( ), wait( ), and
notifyAll( ), 458–463 in computer-controlled traffic light, 484–490
creating multiple threads, 445–447
creating a thread, 437–442, 447
deadlock and race conditions, 463
determining when thread ends, 447–450
event-dispatching, Swing programs, 628
extending Thread, 442–444 improved version of stop-
watch, 781–785 multithreading fundamen-
tals, 435 multithreading in Swing,
779–785
priority settings, 450 suspending, resuming, and
stopping, 464–467 synchronization of threads,
451
Thread class and Runnable
interface, 436 Thread-related classes and
Runnable interface, 868 using synchronized meth-
ods, 452–455 SwingWorker class,
790–792 synchronized statement,
455–457
using the main thread,
468
using multithreading
effectively, 467 using Timer, 786–790
ThreadLocal class, 869 ThreadPoolExecutor, 1031 throw keyword, 348
throw statement, 359, 360
Java Programming 1147 Throwable class, 348, 359,
361–363, 368, 370, 399,
543
throws clause, 365, 368, 369 throws keyword, 348
Timer class, 786–790
using in applet text-scrolling program, 795–800
Timer class (java.util), 880, 922–924
TimerTask class, 880, 922–924
TimeUnit enumeration, 1036–1038
toBinaryString( ), 848 toDegrees( ), 854 Toggle buttons,
JToggleButton, 668–670 toHexString( ), 848 toLowerCase( ), 836 toOctalString( ), 848 Tooltips
adding to controls, 724
adding to menu items, 723 toPath( ) method, 420 top-level container panes, 623 toRadians( ), 854
toString( ), 299, 361, 371, 411, 491
adding to GenSimpleStack
class (example), 820–823 Boolean class, 852
defined by Byte, Short,
Integer, or Long, 848 overriding, 818
totalMemory( ), 859 toUpperCase( ), 836 transient modifier, 564 Tree controls, using JTree,
699–703
TreeMap class, 971–973 TreeNode interface, 700 TreePath class, 700
trees, 932 TreeSelectionEvent, 699 TreeSelectionListener, 699,
701
TreeSet class, 954–956 trim( ), 835
true/false values (boolean
type), 48

1148
Index
try keyword, 348
nesting try blocks, 357–359 try block with no catch
clause, 350
try/catch exception handling
block, 349, 391 try/catch/finally blocks,
363–365 try-with-resources statement,
369, 396–399
Type arguments passed to
type parameters, 509, 510 generic class with two type
parameters, 511
Type checking by generics,
509
Type inference with diamond
operator, 538
Type parameters, 506, 508
bounded, 513–516
bounded wildcards, 519–521 erasure and, 540
generic class with two,
510–512
for generic constructors,
524
for generic interfaces, 530 for generic methods,
522–524
for generic objects, 508 inability to instantiate, 541 specifying return type of
method, 508
type arguments passed to,
509
wildcard arguments,
516–519
Type promotion rules, 70 Type safety
ensured by generics, 509
Object references and, 506 Types. See Data types
U
UI delegate, 621 Unchecked exceptions, 367,
369
UML diagrams, 591–593 Unicode, 47, 48
update( ), 919, 920 updateTime( ), 785,
789
URL class, 993–995 URLConnection class,
995–1000 useDelimiter( ), 916 User Datagram Protocol
(UDP), 986
V
val( ) method, 498
value( ) method, 498 valueChanged( ), 692, 699,
701
valueOf( ), 479, 480, 838,
868
values( ), 479, 480 Varargs (variable-length
arguments), 244–250 ambiguity in overloaded
methods, 249 overloading varargs meth-
ods, 247–249 Variables, 23–25, 53–57
W
wait( ), 299, 458–463, 487 waitFor( ), 857, 858 WARNING_MESSAGE
dialog, 742, 747, 751, 753 while loops, 95–97, 100
continue statement in, 108 Widening conversions, 66 Wildcard arguments, 517–
519
bounded, 519–521 Wildcard characters in regu-
lar expressions, 1071–1073 Window class, 758 WindowConstants interface,
628
World Wide Web, emergence
of, 10
Wrapper classes for primi-
tive types, 215, 421–423, 844–853
and autoboxing/unboxing,
490–496, 852
write( ), 389, 393, 404 writeDouble( ), 404
Writer class, 385, 406, 407,
412
methods defined by, 408
declaring, 24
dynamic initialization, 54
final, 298 X initializing, 54
interface, 319
loop control, 30, 31
naming, 37, 38, 574
scope and lifetime of,
55–57
specifying type, 24, 25 static, 233–235
Vector class, 981
View, 621
Virtual machine, 7 Visibility of a window, 628,
758, 762
void return type, 126,
128–129, 230 volatile modifier, 564
192
^ (logical OR), 60, 61
XOR (exclusive OR) with assignment operator (^=), 65, 196
Y
YES_NO_CANCEL_ OPTION dialog, 747, 753 YES_NO_OPTION dialog,
747, 753
XOR (exclusive OR) operator ^ (bitwise OR), 189, 190,

The Java Keywords
abstract
assert
boolean
break
byte
case
catch
char
class
const
continue
default
do
double
else
enum
extends
final
finally
float
for
goto
if
implements
import
instanceof
int
interface
long
native
new
package
private
protected
public
return
short
static
strictfp
super
switch
synchronized
this
throw
throws
transient
try
void
volatile
while
The Precedence of the Java Operators
Highest
++ (postfix)
– – (postfix)
++ (prefix)
– – (prefix)
~
!
+ (unary)
– (unary)
(type-cast)
*
/
%
+

>>
>>>
<< >
>=
< <= instanceof == != & ^ | && || ?: = op= Lowest Class Member Access Private Member Default Member Protected Member Public Member Visible within same class Yes Yes Yes Yes Visible within same package by subclass No Yes Yes Yes Visible within same package by non-subclass No Yes Yes Yes Visible within different package by subclass No No Yes Yes Visible within different package by non-subclass No No No Yes Character Escape Sequences Escape Sequence Description \' Single quote \" Double quote \\ Backslash \r Carriage return \n Newline \f Form feed \t Horizontal tab \b Backspace \ddd Octal constant (where ddd is an octal constant) \uxxxx Hexadecimal constant (where xxxx is a hexadecimal constant)