Chapter 5: Enhancing Classes

Similar documents
References. Chapter 5: Enhancing Classes. Enhancing Classes. The null Reference. Java Software Solutions for AP* Computer Science A 2nd Edition

&KDSWHU(QKDQFLQJ&ODVVHV

Learning objectives: Enhancing Classes. CSI1102: Introduction to Software Design. More about References. The null Reference. The this reference

CSI Introduction to Software Design. Prof. Dr.-Ing. Abdulmotaleb El Saddik University of Ottawa (SITE 5-037) (613) x 6277

Interfaces. Quick Review of Last Lecture. November 6, Objects instances of classes. Static Class Members. Static Class Members

ECE 122. Engineering Problem Solving with Java

Graphical Applications

CS1004: Intro to CS in Java, Spring 2005

11/19/2014. Inheritance. Chapter 7: Inheritance. Inheritance. Inheritance. Java Software Solutions for AP* Computer Science A 2nd Edition

11/19/2014. Objects. Chapter 4: Writing Classes. Classes. Writing Classes. Java Software Solutions for AP* Computer Science A 2nd Edition

Chapter 6: Arrays. Presentation slides for. Java Software Solutions. for AP* Computer Science 3rd Edition

Chapter 3: Program Statements

11/19/2014. Arrays. Chapter 6: Arrays. Arrays. Arrays. Java Software Solutions for AP* Computer Science A 2nd Edition

ECE 122. Engineering Problem Solving with Java

Program Development. Chapter 3: Program Statements. Program Statements. Requirements. Java Software Solutions for AP* Computer Science A 2nd Edition

Objects and Classes -- Introduction

CS180 Recitation. More about Objects and Methods

Anatomy of a Class Encapsulation Anatomy of a Method

&KDSWHU$UUD\VDQG9HFWRUV

COSC 121: Computer Programming II. Dr. Bowen Hui University of Bri?sh Columbia Okanagan

Recursive Thinking. Chapter 8: Recursion. Recursive Definitions. Recursion. Java Software Solutions for AP* Computer Science A 2nd Edition

Control Flow: Overview CSE3461. An Example of Sequential Control. Control Flow: Revisited. Control Flow Paradigms: Reacting to the User

DEMYSTIFYING PROGRAMMING: CHAPTER FOUR

Inheritance. Quick Review of Last Lecture. November 12, Passing Arguments. Passing Arguments. Variable Assignment Revisited

COMP 202. More on OO. CONTENTS: static revisited this reference class dependencies method parameters variable scope method overloading

BASICS OF GRAPHICAL APPS

ECE 122. Engineering Problem Solving with Java

Command-Line Applications. GUI Libraries GUI-related classes are defined primarily in the java.awt and the javax.swing packages.

Exceptions (part 2) An exception is an object that describes an unusual or erroneous situation. Quick Review of Last Lecture.

Conditionals and Loops

Exceptions Chapter 10. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

COMP 202. More on OO. CONTENTS: static revisited this reference class dependencies method parameters variable scope method overloading

DEMYSTIFYING PROGRAMMING: CHAPTER SIX METHODS (TOC DETAILED) CHAPTER SIX: METHODS 1

Interfaces, Testing, and Layout Managers

Advanced Flow of Control -- Introduction

Defining Classes and Methods

Java Review. Java Program Structure // comments about the class public class MyProgram { Variables

Chapter 6 Introduction to Defining Classes

Introduction to Software Design

COMP-202. Exceptions. COMP Exceptions, 2011 Jörg Kienzle and others

Chapter 4: Writing Classes

Array. Prepared By - Rifat Shahriyar

Name: Checked: Learn about listeners, events, and simple animation for interactive graphical user interfaces.

Using Classes and Objects. Chapter

Recitation 02/02/07 Defining Classes and Methods. Chapter 4

More About Objects and Methods

FRAC: Language Reference Manual

Java Applets. Last Time. Java Applets. Java Applets. First Java Applet. Java Applets. v We created our first Java application

Casting -Allows a narrowing assignment by asking the Java compiler to "trust us"

COMP-202. Objects, Part III. COMP Objects Part III, 2013 Jörg Kienzle and others

Outline. Object Oriented Programming. Course goals. Staff. Course resources. Assignments. Course organization Introduction Java overview Autumn 2003

More About Objects and Methods

Object Class. EX: LightSwitch Class. Basic Class Concepts: Parts. CS257 Computer Science II Kevin Sahr, PhD. Lecture 5: Writing Object Classes

Comp 249 Programming Methodology Chapter 9 Exception Handling

Weiss Chapter 1 terminology (parenthesized numbers are page numbers)

Virtualians.ning.pk. 2 - Java program code is compiled into form called 1. Machine code 2. native Code 3. Byte Code (From Lectuer # 2) 4.

Frames, GUI and events. Introduction to Swing Structure of Frame based applications Graphical User Interface (GUI) Events and event handling

Pace University. Fundamental Concepts of CS121 1

AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS

CS Exam 1 Review Suggestions

Encapsulation. You can take one of two views of an object: internal - the structure of its data, the algorithms used by its methods

Chapter 14. Exception Handling and Event Handling ISBN

CS506 Web Programming and Development Solved Subjective Questions With Reference For Final Term Lecture No 1

Full file at

Review Chapters 1 to 4. Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013

Introduction. Introduction

Selection. Chapter 7

Packages & Random and Math Classes

Chapter. Focus of the Course. Object-Oriented Software Development. program design, implementation, and testing

Program Correctness and Efficiency. Chapter 2

PROGRAMMING DESIGN USING JAVA (ITT 303) Unit 7

Agenda CS121/IS223. Reminder. Object Declaration, Creation, Assignment. What is Going On? Variables in Java

CONTENTS: Array Usage Multi-Dimensional Arrays Reference Types. COMP-202 Unit 6: Arrays

CS 180 Final Exam Review 12/(11, 12)/08

CS 209 Programming in Java #10 Exception Handling

Using Classes and Objects Chapters 3 Creating Objects Section 3.1 The String Class Section 3.2 The Scanner Class Section 2.6

Objectives for this class meeting. 1. Conduct review of core concepts concerning contracts and pre/post conditions

Object Oriented Methods : Deeper Look Lecture Three

Come & Join Us at VUSTUDENTS.net

AP CS Unit 11: Graphics and Events

STUDENT LESSON A12 Iterations

CS121/IS223. Object Reference Variables. Dr Olly Gotel

Exceptions. COMP 202 Exceptions. Exceptions. Exceptions. An exception is an object that describes an unusual or erroneous situation

Functions. Lab 4. Introduction: A function : is a collection of statements that are grouped together to perform an operation.

CONTENTS. PART 1 Structured Programming 1. 1 Getting started 3. 2 Basic programming elements 17

Arrays. Outline 1/7/2011. Arrays. Arrays are objects that help us organize large amounts of information. Chapter 7 focuses on:

CS56 final (E03) W15, Phill Conrad, UC Santa Barbara Wednesday, 03/18/2015. Name: Umail umail.ucsb.edu. Circle one: 4pm 5pm 6pm

Graphical User Interfaces. Comp 152

CS-140 Fall 2017 Test 2 Version A Nov. 29, 2017

DOWNLOAD PDF CORE JAVA APTITUDE QUESTIONS AND ANSWERS

Interfaces & Polymorphism part 2: Collections, Comparators, and More fun with Java graphics

Lecture 28. Exceptions and Inner Classes. Goals. We are going to talk in more detail about two advanced Java features:

GUI DYNAMICS Lecture July 26 CS2110 Summer 2011

The JFrame Class Frame Windows GRAPHICAL USER INTERFACES. Five steps to displaying a frame: 1) Construct an object of the JFrame class

An Activation Record for Simple Subprograms. Activation Record for a Language with Stack-Dynamic Local Variables

Method OverLoading printf method Arrays Declaring and Using Arrays Arrays of Objects Array as Parameters

G51PGP Programming Paradigms. Lecture 009 Concurrency, exceptions

Chapter 4 Introduction to Control Statements

Exceptions, Case Study-Exception handling in C++.

Object oriented programming. Instructor: Masoud Asghari Web page: Ch: 3

Transcription:

Chapter 5: Enhancing Classes Presentation slides for Java Software Solutions for AP* Computer Science 3rd Edition by John Lewis, William Loftus, and Cara Cocking Java Software Solutions is published by Addison-Wesley Presentation slides are copyright 2006 by John Lewis, William Loftus, and Cara Cocking. All rights reserved. Instructors using the textbook may use and modify these slides for pedagogical purposes. *AP is a registered trademark of The College Entrance Examination Board which was not involved in the production of, and does not endorse, this product.

Enhancing Classes Ø Now we can explore various aspects of classes and objects in more detail Ø Chapter 5 focuses on: object references and aliases passing objects references as parameters the static modifier exceptions interfaces nested classes and inner classes dialog boxes GUI components, events, and listeners 2

References Ø Recall from Chapter 2 that an object reference variable holds the memory address of an object Ø Rather than dealing with arbitrary addresses, we often depict a reference graphically as a pointer to an object ChessPiece bishop1 = new ChessPiece(); bishop1 3

The null Reference Ø An object reference variable that does not currently point to an object is called a null reference Ø The reserved word null can be used to explicitly set a null reference: name = null; or to check to see if a reference is currently null: if (name == null) System.out.println ("Invalid"); 4

The null Reference Ø An object reference variable declared at the class level (an instance variable) is automatically initialized to null Ø The programmer must carefully ensure that an object reference variable refers to a valid object before it is used Ø Attempting to follow a null reference causes a NullPointerException to be thrown Ø Usually a compiler will check to see if a local variable is being used without being initialized 5

The this Reference Ø The this reference allows an object to refer to itself Ø That is, the this reference, used inside a method, refers to the object through which the method is being executed Ø Suppose the this reference is used in a method called tryme Ø If tryme is invoked as follows, the this reference refers to obj1: obj1.tryme(); Ø But in this case, the this reference refers to obj2: obj2.tryme(); 6

Assignment Revisited Ø The act of assignment takes a copy of a value and stores it in a variable Ø For primitive types: num2 = num1; Before After num1 num2 num1 num2 5 12 5 5 7

Reference Assignment Ø For object references, assignment copies the memory location: bishop2 = bishop1; Before After bishop1 bishop2 bishop1 bishop2 8

Aliases Ø Two or more references that refer to the same object are called aliases of each other Ø One object (and its data) can be accessed using different reference variables Ø Aliases can be useful, but should be managed carefully Ø Changing the object s state (its variables) through one reference changes it for all of its aliases 9

Testing Objects for Equality Ø The == operator compares object references for equality, returning true if the references are aliases of each other bishop1 == bishop2 Ø A method called equals is defined for all objects, but unless we redefine it when we write a class, it has the same semantics as the == operator bishop1.equals(bishop2) Ø We can redefine the equals method to return true under whatever conditions we think are appropriate 10

Objects as Parameters Ø Parameters in a Java method are passed by value Ø This means that a copy of the actual parameter (the value passed in) is stored into the formal parameter (in the method header) Ø Passing parameters is therefore similar to an assignment statement Ø When an object is passed to a method, the actual parameter and the formal parameter become aliases of each other 11

Passing Objects to Methods Ø What you do with a parameter inside a method may or may not have a permanent effect (outside the method) Ø See ParameterPassing.java (page 269) Ø See ParameterTester.java (page 270) Ø See Num.java (page 266) Ø Note the difference between changing the reference and changing the object that the reference points to 12

The static Modifier Ø In Chapter 2 we discussed static methods (also called class methods) that can be invoked through the class name rather than through a particular object Ø For example, the methods of the Math class are static: Math.sqrt (25) Ø To write a static method, we apply the static modifier to the method definition Ø The static modifier can be applied to variables as well Ø It associates a variable or method with the class rather than with an object 13

Static Variables Ø Static variables are also called class variables Ø Normally, each object has its own data space, but if a variable is declared as static, only one copy of the variable exists private static float price; Ø Memory space for a static variable is created when the class in which it is declared is loaded Ø All objects created from the class share static variables Ø The most common use of static variables is for constants 14

Static Methods class Helper public static int triple (int num) { int result; result = num * 3; return result; } Because it is static, the method can be invoked as: value = Helper.triple (5); 15

Static Methods Ø The order of the modifiers can be interchanged, but by convention visibility modifiers come first Ø Recall that the main method is static; it is invoked by the system without creating an object Ø Static methods cannot reference instance variables, because instance variables don't exist until an object exists Ø However, a static method can reference static variables or local variables 16

The static Modifier Ø Static methods and static variables often work together Ø See CountInstances.java (page 273) Ø See Slogan.java (page 275) 17

Exceptions Ø An exception is an object that describes an unusual or erroneous situation Ø Exceptions are thrown by a program, and may be caught and handled by another part of the program Ø A program can be separated into a normal execution flow and an exception execution flow Ø An error is also represented as an object in Java, but usually represents a unrecoverable situation and should not be caught 18

Exception Handling Ø Java has a predefined set of exceptions and errors that can occur during execution Ø A program can deal with an exception in one of three ways: ignore it handle it where it occurs handle it an another place in the program 19

Exception Handling Ø If an exception is ignored by the program, the program will terminate abnormally and produce an appropriate message Ø The message includes a call stack trace that indicates the line on which the exception occurred Ø The call stack trace also shows the method call trail that lead to the attempted execution of the offending line Ø See Zero.java (page 277) 20

The throw Statement Ø Exceptions are thrown using the throw statement Ø Usually a throw statement is nested inside an if statement that evaluates the condition to see if the exception should be thrown Ø The following statement throws a NoSuchElementException: throw new NoSuchElementException(); Ø See Throwing.java (page 278) 21

Interfaces Ø A Java interface is a collection of abstract methods and constants Ø An abstract method is a method header without a method body Ø An abstract method can be declared using the modifier abstract, but because all methods in an interface are abstract, usually it is left off Ø An interface is used to establish, as a formal contract, a set of methods that a class will implement 22

Interfaces public interface Doable { public void dothis(); public int dothat(); } interface is a reserved word None of the methods in an interface are given a definition (body) public void dothis2 (double value, char ch); public boolean dotheother (int num); A semicolon immediately follows each method header 23

Interfaces Ø An interface cannot be instantiated Ø Methods in an interface have public visibility by default Ø A class formally implements an interface by stating so in the class header providing implementations for each abstract method in the interface Ø If a class asserts that it implements an interface, it must define all methods in the interface 24

Interfaces public class CanDo implements Doable { public void dothis () { // whatever } implements is a reserved word public void dothat () { // whatever } Each method listed in Doable is given a definition } // etc. 25

Interfaces Ø A class that implements an interface can implement other methods as well Ø See Complexity.java (page 279) Ø See Question.java (page 281) Ø See MiniQuiz.java (page 282) Ø In addition to (or instead of) abstract methods, an interface can contain constants Ø When a class implements an interface, it gains access to all its constants 26

Interfaces Ø A class can implement multiple interfaces Ø The interfaces are listed in the implements clause Ø The class must implement all methods in all interfaces listed in the header class ManyThings implements interface1, interface2 { // all methods of both interfaces } 27

Interfaces Ø The Java standard class library contains many helpful interfaces Ø The Comparable interface contains an abstract method called compareto, which is used to compare two objects Ø The String class implements Comparable, giving us the ability to put strings in lexicographic order Ø The List interface is implemented by classes that represent an ordered collection of elements. Ø The Iterator interface contains methods that allow the user to move easily through a collection of objects 28

The Comparable Interface Ø The Comparable interface provides a common mechanism for comparing one object to another if (obj1.compareto(obj2) < 0) System.out.println ( obj1 is less than obj2 ); Ø The result is negative is obj1 is less that obj2, 0 if they are equal, and positive if obj1 is greater than obj2 Ø When a programmer writes a class that implements the Comparable interface, it should follow this intent Ø It's up to the programmer to determine what makes one object less than another 29

The List Interface Ø The List interface represents an ordered collection of elements Ø The size method returns the number of elements in the list Ø The add method adds an element to the list Ø The iterator and listiterator methods return iterators of the elements in the list 30

Iterator and ListIterator Interfaces Ø The Iterator and ListIterator interfaces provide a means of moving through a collection of objects, one at a time Ø The hasnext method returns a boolean result (true if there are items left to process) Ø The next method returns the next object in the iteration Ø The remove method removes the object most recently returned by the next method Ø The ListIterator interface has additional methods (add and set) that insert or replace an element in the list 31

Identifying Classes and Objects Ø During the design stage, classes and objects need to be identified Ø As a start, examine the program requirements Ø Objects are generally nouns Ø A class represents a group of objects with similar behavior Ø For example, to represent products, we may need a class called Product Ø Strike a good balance between classes that are too general and those that are too specific 32

Designing Classes Ø When designing a class, there are two pieces of information to think about: State (how an object is represented) Behavior (what an object does) Ø The state becomes the instance variables of an object Ø The behavior becomes the methods Ø When thinking about behavior, you should think about how others might want to use the object 33

Nested Classes Ø In addition to containing data and methods, a class can contain other classes Ø A class declared within another class is called a nested class Enclosing Class Nested Class 34

Nested Classes Ø A nested class has access to the variables and methods of the enclosing class, even if they are declared private Ø In certain situations this makes the implementation of the classes easier because they can share information easily Ø Furthermore, the nested class can be protected by the enclosing class from external use Ø This is a special relationship and should be used with care 35

Nested Classes Ø A nested class produces a separate bytecode file Ø If a nested class called Inside is declared in an outer class called Outside, two bytecode files are produced: Outside.class Outside$Inside.class Ø Nested classes can be declared as static, in which case they cannot refer to instance variables or methods 36

Inner Classes Ø A nonstatic nested class is called an inner class Ø An inner class is associated with each instance of the enclosing class Ø An instance of an inner class can exist only within an instance of an enclosing class 37

Dialog Boxes Ø A dialog box is a graphical window that pops up on top of any currently active window for the user Ø The Swing API contains a class called JOptionPane that simplifies the creation and use of basic dialog boxes Ø There are three categories of JOptionPane dialog boxes A message dialog displays an output string An input dialog presents a prompt and a single input text field A confirm dialog presents the user with a simple yes-or-no question Ø See EvenOdd.java (page 294) 38

The EvenOdd Program 39

Graphical User Interfaces Ø A Graphical User Interface (GUI) is created with at least three kinds of objects components events listeners Ø A GUI component defines a screen element to display information or allow the user to interact with the program buttons, text fields, labels, menus, etc. Ø A container is a special component that holds and organizes other components dialog boxes, applets, frames, panels, etc. 40

Events Ø An event is an object that represents some activity to which we may want to respond Ø For example, we may want our program to perform some action when the following occurs: the mouse is moved a mouse button is clicked the mouse is dragged a graphical button is clicked a keyboard key is pressed a timer expires Ø Events often correspond to user actions, but not always 41

Events and Listeners Ø The Java standard class library contains several classes that represent typical events Ø Components, such as an applet or a graphical button, generate (fire) an event when it occurs Ø Other objects, called listeners, wait for events to occur Ø We can write listener objects to do whatever we want when an event occurs Ø A listener object is often defined using an inner class 42

Events and Listeners Event Component Listener This object may generate an event This object waits for and responds to an event When an event occurs, the generator calls the appropriate method of the listener, passing an object that describes the event 43

Listener Interfaces Ø We can create a listener object by writing a class that implements a particular listener interface Ø The Java standard class library contains several interfaces that correspond to particular event categories Ø For example, the MouseListener interface contains methods that correspond to mouse events Ø After creating the listener, we add the listener to the component that might generate the event to set up a formal relationship between the generator and listener 44

Creating GUIs Ø To create a program with a GUI: define and set up the components create listener objects set up the relationships between the listeners and the components which generate events of interest define what happens in response to each event Ø A push button is a component that allows the user to initiate an action with the press of the mouse button defined by the JButton class generates an action event Ø A label is a component that displays a line of text (or an image, or both) defined by the JLabel class 45

Creating GUIs Ø The init method of an applet can be used to set up the GUI and add each component to the applet container Ø The Swing version of the Applet class is called JApplet Ø In a JApplet, components are added to the applet's content pane Ø The content pane is retrieved using the getcontentpane method Ø A JButton generates an action event Ø See PushCounter.java (page 297) 46

The PushCounter Program 47

Action Listeners Ø The interface corresponding to an action event is called ActionListener, which defines only one method, called actionperformed Ø The ButtonListener inner class implements the ActionListener interface in the PushButton program Ø When the button is pushed, the JButton object invokes the actionperformed method, passing it an ActionEvent Ø The listener method may or may not make use of the event object passed to it 48

GUI Applications Ø A frame is a container component used for standalone GUI-based applications Ø A panel is a container, but unlike a frame, it cannot be displayed on its own it must be added to another container it helps organize the components in a GUI Ø See Fahrenheit.java (page 300) Ø See FahrenheitGUI.java (page 302) 49

The Fahrenheit Program 50

Summary Ø Chapter 5 has focused on: object references and aliases passing objects references as parameters the static modifier exceptions interfaces nested classes and inner classes dialog boxes GUI components, events, and listeners 51