Chapter 8: User-Defined Classes and ADTs

Slides:



Advertisements
Similar presentations
Data Structures Using Java1 Chapter 1 Software Engineering Principles and Java Classes.
Advertisements

©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter Four Defining Your Own Classes.
Based on Java Software Development, 5th Ed. By Lewis &Loftus
C++ Programming: Program Design Including Data Structures, Third Edition Chapter 7: User-Defined Functions II.
Chapter 12: Classes and Data Abstraction
Road Map Introduction to object oriented programming. Classes
C++ Programming: Program Design Including Data Structures, Third Edition Chapter 11: Classes and Data Abstraction.
Chapter 8 User-Defined Classes and ADTs. Chapter Objectives Learn about classes Learn about private, protected, public, and static members of a class.
C# Programming: From Problem Analysis to Program Design1 Creating Your Own Classes C# Programming: From Problem Analysis to Program Design 3rd Edition.
Chapter 11: Classes and Data Abstraction
Software Engineering Principles and C++ Classes
Chapter 8: User-Defined Classes and ADTs J ava P rogramming: From Problem Analysis to Program Design, From Problem Analysis to Program Design, Second Edition.
Data Structures Using C++1 Chapter 1 Software Engineering Principles and C++ Classes.
Chapter 11: Inheritance and Polymorphism Java Programming: Program Design Including Data Structures Program Design Including Data Structures.
Chapter 6 Graphical User Interface (GUI) and Object-Oriented Design (OOD)
The Clock Example. 1. The Clock Example 2 3 public class Clock { // instance variables private int hr; private int min; private int sec; // constructors:
Chapter 6: Graphical User Interface (GUI) and Object-Oriented Design (OOD) J ava P rogramming: Program Design Including Data Structures Program Design.
CSM-Java Programming-I Spring,2005 Introduction to Objects and Classes Lesson - 1.
CLASSES AND DATA ABSTRACTION
Chapter 11 Inheritance and Composition. Chapter Objectives Learn about inheritance Learn about subclasses and superclasses Explore how to override the.
COP INTERMEDIATE JAVA Designing Classes. Class Template or blueprint for creating objects. Their definition includes the list of properties (fields)
Programming in Java Unit 2. Class and variable declaration A class is best thought of as a template from which objects are created. You can create many.
Chapter 11: Classes and Data Abstraction. C++ Programming: Program Design Including Data Structures, Fourth Edition2 Objectives In this chapter, you will:
CHAPTER 13 CLASSES AND DATA ABSTRACTION. In this chapter, you will:  Learn about classes  Learn about private, protected, and public members of a class.
Data Structures Using C++1 Chapter 1 -Software Engineering Principles -ADT and Classes.
Chapter 8: User-Defined Classes and ADTs
Data Structures Using C++1 Chapter 1 Software Engineering Principles and C++ Classes.
An Object-Oriented Approach to Programming Logic and Design Chapter 3 Using Methods and Parameters.
 Classes in c++ Presentation Topic  A collection of objects with same properties and functions is known as class. A class is used to define the characteristics.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 26 - Java Object-Based Programming Outline 26.1Introduction.
COP INTERMEDIATE JAVA Designing Classes. Class Template or blueprint for creating objects. Their definition includes the list of properties (fields)
Java Programming: From Problem Analysis to Program Design, 3e Chapter 6 Graphical User Interface (GUI) and Object-Oriented Design (OOD)
Chapter 3 Introduction to Classes and Objects Definitions Examples.
Chapter 8: User-Defined Classes and ADTs J ava P rogramming: From Problem Analysis to Program Design, From Problem Analysis to Program Design, Second Edition.
C++ Programming: From Problem Analysis to Program Design, Third Edition Chapter 12: Classes and Data Abstraction.
Chapter 10: Classes and Data Abstraction. Objectives In this chapter, you will: Learn about classes Learn about private, protected, and public members.
EGR 2261 Unit 11 Classes and Data Abstraction  Read Malik, Chapter 10.  Homework #11 and Lab #11 due next week.  Quiz next week.
Java Programming: From Problem Analysis to Program Design, Second Edition1 Lecture 5 Objectives  Learn about basic GUI components.  Explore how the GUI.
C++ Programming: From Problem Analysis to Program Design, Third Edition Chapter 15: Overloading and Templates.
Chapter 5 Classes and Methods II Lecture Slides to Accompany An Introduction to Computer Science Using Java (2nd Edition) by S.N. Kamin, D. Mickunas, E.
C++ Programming: Program Design Including Data Structures, Third Edition Chapter 11: Classes and Data Abstraction.
C++ Programming: From Problem Analysis to Program Design, Fourth Edition Chapter 12: Classes and Data Abstraction.
C++ Programming: Program Design Including Data Structures, Fourth Edition Chapter 11: Classes and Data Abstraction.
C++ Programming: From Problem Analysis to Program Design, Fifth Edition Chapter 05: Classes and Data Abstraction.
Chapter 10: Classes and Data Abstraction. Classes Object-oriented design (OOD): a problem solving methodology Objects: components of a solution Class:
Data Structures Using Java1 Chapter 1 Software Engineering Principles and Java Classes.
Chapter 6 Graphical User Interface (GUI) and Object-Oriented Design (OOD)
C++ Programming: Program Design Including Data Structures, Fourth Edition Chapter 11: Classes and Data Abstraction.
1 CS 132 Spring 2008 Chapter 1 Software Engineering Principles and C++ Classes.
C# Programming: From Problem Analysis to Program Design1 Creating Your Own Classes C# Programming: From Problem Analysis to Program Design 4th Edition.
Classes CS 162 (Summer 2009). Parts of a Class Instance Fields Methods.
Java Programming: Guided Learning with Early Objects Chapter 9 Inheritance and Polymorphism.
Copyright © 2012 Pearson Education, Inc. Chapter 4 Writing Classes : Review Java Software Solutions Foundations of Program Design Seventh Edition John.
Creating Your Own Classes
Chapter 7: User-Defined Functions II
Java Programming: Guided Learning with Early Objects
Chapter 11: Inheritance and Polymorphism
Chapter 3: Using Methods, Classes, and Objects
About the Presentations
Java Programming: From Problem Analysis to Program Design,
Chapter 15: Overloading and Templates
UML Class Diagram: class Rectangle
User-Defined Classes and ADTs
Defining Your Own Classes
User-Defined Classes and ADTs
Defining Classes and Methods
Chapter 8 Classes User-Defined Classes and ADTs
Chapter 12: Classes and Data Abstraction
Presentation transcript:

Chapter 8: User-Defined Classes and ADTs Java Programming: From Problem Analysis to Program Design, Second Edition

Chapter Objectives Learn about classes. Learn about private, protected, public, and static members of a class. Explore how classes are implemented. Learn about the various operations on classes. Java Programming: From Problem Analysis to Program Design, Second Edition

Chapter Objectives Examine constructors and finalizers. Examine the method toString. Learn about the abstract data type (ADT). Java Programming: From Problem Analysis to Program Design, Second Edition

Classes class: A reserved word; a collection of a fixed number of components. Components: Members of a class. Members are accessed by name. Class categories/modifiers: private protected public Java Programming: From Problem Analysis to Program Design, Second Edition

Classes Private: Members of class are not accessible outside class. Public: Members of class are accessible outside class. Class members: Can be methods or variables. Variable members are declared like any other variables. Java Programming: From Problem Analysis to Program Design, Second Edition

Syntax The general syntax for defining a class is: If a member of a class is a named constant, you declare it just like any other named constant. If a member of a class is a variable, you declare it just like any other variable. If a member of a class is a method, you define it just like any other method. If a member of a class is a method, it can (directly) access any member of the class—data members and methods. Therefore, when you write the definition of a method (of the class), you can directly access any data member of the class (without passing it as a parameter). Java Programming: From Problem Analysis to Program Design, Second Edition

Syntax class Clock: Data Members (Instance Variables): private int hr; //store hours private int min; //store minutes private int sec; //store seconds Methods: public void setTime(int hours, int minutes, int seconds) public int getHours() public int getMinutes() public int getSeconds() public void printTime() public void incrementSeconds() public void incrementMinutes() public void incrementHours() public boolean equals(Clock otherClock) public void makeCopy(Clock otherClock) public Clock getCopy() Java Programming: From Problem Analysis to Program Design, Second Edition

Constructors Two types of constructors: With parameters Without parameters (default constructor) Constructors have the following properties: The name of a constructor is the same as the name of the class. A constructor, even though it is a method, has no type. A class can have more than one constructor. All constructors of a class have the same name. If a class has more than one constructor, any two constructors must have different signatures. Constructors are automatically executed when a class object is instantiated. If there are multiple constructors, which constructor executes depends on the type of values passed to the class object when the class object is instantiated. Java Programming: From Problem Analysis to Program Design, Second Edition

Constructors class Clock: Constructors Default constructor is public Clock(). Constructor with parameters: public Clock(int hours, int minutes,int seconds) Java Programming: From Problem Analysis to Program Design, Second Edition

Unified Modeling Language Class Diagrams Java Programming: From Problem Analysis to Program Design, Second Edition

Variable Declaration and Object Instantiation The general syntax for using the operator new is: new className() OR new className(argument1, argument2, ..., argumentN) Clock myClock; Clock yourClock; myClock = new Clock(); yourClock = new Clock(9, 35, 15); Java Programming: From Problem Analysis to Program Design, Second Edition

Variable Declaration and Object Instantiation Java Programming: From Problem Analysis to Program Design, Second Edition

Accessing Class Members The syntax to access a data member of a class object or method is: referenceVariableName.memberName Example 8-1 myClock.setTime(5, 2, 30); myClock.printTime(); yourClock.setTime(x, y, z); if (myClock.equals(yourClock)) . Java Programming: From Problem Analysis to Program Design, Second Edition

Assignment Operator: A Precaution myClock = yourClock; Copies the value of the reference variable yourClock into the reference variable myClock. After this statement executes, both yourClock and myClock refer to the same object. Java Programming: From Problem Analysis to Program Design, Second Edition

Assignment Operator: A Precaution Shallow copying: Two or more reference variables of the same type point to the same object. Deep copying: Each reference variable refers to its own object. Java Programming: From Problem Analysis to Program Design, Second Edition

The Copy Constructor Executes when an object is instantiated. Initialized using an existing object. Syntax: public ClassName(ClassName otherObject) Java Programming: From Problem Analysis to Program Design, Second Edition

Example: class Clock Java Programming: From Problem Analysis to Program Design, Second Edition

The Method toString Public value-returning method. Takes no parameters. Returns address of a String object. Output using print, println, printf methods. Default definition creates String with name of object’s class name followed by hash code of object. Java Programming: From Problem Analysis to Program Design, Second Edition

The Modifier static In the method heading, specifies that the method can be invoked by using the name of the class. If used to declare data member, data member invoked by using the class name. Static data members of class exist even when no object of class type instantiated. Static variables are initialized to their default values. Java Programming: From Problem Analysis to Program Design, Second Edition

The Modifier static Example 8-3 public class Illustrate { private int x; private static int y; public static int count; public Illustrate() x = 0; } public Illustrate(int a) x = a; Java Programming: From Problem Analysis to Program Design, Second Edition

The Modifier static void setX(int a) { x = a; } public String toString() return("x = " + x + ", y = " + y + ", count = " + count); public static void incrementY() y++; Illustrate illusObject = new Illustrate(); Illustrate.incrementY(); Illustrate.count++; Java Programming: From Problem Analysis to Program Design, Second Edition

The Modifier static Illustrate illusObject1 = new Illustrate(3); Java Programming: From Problem Analysis to Program Design, Second Edition

The Modifier static Illustrate.incrementY(); Illustrate.count++; Java Programming: From Problem Analysis to Program Design, Second Edition

Finalizers Automatically execute when class object goes out of scope. Have no parameters. Only one finalizer per class. Name of finalizer: finalize. Java Programming: From Problem Analysis to Program Design, Second Edition

Accessor and Mutator Methods Accessor method: A method of a class that only accesses (that is, does not modify) the value(s) of the data member(s). Mutator method: A method of a class that modifies the value(s) of the data member(s). Java Programming: From Problem Analysis to Program Design, Second Edition

Creating Packages You can create packages using a reserved word package. Define the class to be public. (If class is not public, it can only be used within package.) Choose name for package. Organize package (create subdirectories). Java Programming: From Problem Analysis to Program Design, Second Edition

Creating Package for class Clock package jpfpatpd.ch08.clockPackage; public class Clock { //put instance variables and methods, //as before, here } import jpfpatpd.ch08.clockPackage.Clock; Java Programming: From Problem Analysis to Program Design, Second Edition

The Reference this Refers to instance variables and methods of a class. Used to implement cascaded method calls. Java Programming: From Problem Analysis to Program Design, Second Edition

Inner Classes Defined within other classes. Can be either a complete class definition or an anonymous inner class definition. Used to handle events. Java Programming: From Problem Analysis to Program Design, Second Edition

Abstract Data Types A data type that specifies the logical properties without the implementation details. Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine (Problem Statement) A new candy machine is bought for the gym, but it is not working properly. The machine sells candies, chips, gum, and cookies. In this programming example, we will write a program to create a Java application program for this candy machine so that it can be put into operation. We will divide this program in two parts. In the first part, we will design a non-GUI application program. In the second part, we will design an application program that will create a GUI, as described in the second part. The non-GUI application program should do the following: 1. Show the customer the different products sold by the candy machine. 2. Let the customer make the selection. 3. Show the customer the cost of the item selected. 4. Accept money from the customer. 5. Release the item. Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine (Input and Output) Input: The item selection and the cost of the item. Output: The selected item. Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine Components: Cash register Dispenser Machine Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine Java Programming: From Problem Analysis to Program Design, Second Edition

Programming Example: Candy Machine Java Programming: From Problem Analysis to Program Design, Second Edition

Chapter Summary Creating classes Members of a class: private protected public static Implementing classes Various operations on classes Java Programming: From Problem Analysis to Program Design, Second Edition

Chapter Summary Constructors Finalizers Method toString Abstract data types Java Programming: From Problem Analysis to Program Design, Second Edition