chapter 9 objects and classes
play

Chapter 9 Objects and Classes After learning the preceding chapters, - PDF document

Motivations Chapter 9 Objects and Classes After learning the preceding chapters, you are capable of solving many programming problems using selections, loops, methods, and arrays. However, these Java features are not sufficient for developing


  1. Motivations Chapter 9 Objects and Classes After learning the preceding chapters, you are capable of solving many programming problems using selections, loops, methods, and arrays. However, these Java features are not sufficient for developing graphical user interfaces and large scale software systems. Suppose you want to develop a graphical user interface as shown below. How do CS1: Java Programming you program it? Colorado State University Original slides by Daniel Liang Modified slides by Chris Wilcox Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 1 2 rights reserved. rights reserved. Objectives OO Programming Concepts To describe objects and classes, and use classes to model objects (§9.2). q Object-oriented programming (OOP) involves To use UML graphical notation to describe classes and objects (§9.2). q To demonstrate how to define classes and create objects (§9.3). q programming using objects. An object represents To create objects using constructors (§9.4). q an entity in the real world that can be distinctly To access objects via object reference variables (§9.5). q To define a reference variable using a reference type (§9.5.1). q identified. For example, a student, a desk, a circle, To access an object’s data and methods using the object member access operator ( . ) (§9.5.2). q To define data fields of reference types and assign default values for an object’s data fields (§9.5.3). q a button, and even a loan can all be viewed as To distinguish between object reference variables and primitive data type variables (§9.5.4). q objects. An object has a unique identity, state, and To use the Java library classes Date , Random , and Point2D (§9.6). q To distinguish between instance and static variables and methods (§9.7). q behaviors. The state of an object consists of a set of To define private data fields with appropriate get and set methods (§9.8). q To encapsulate data fields to make classes easy to maintain (§9.9). q data fields (also known as properties ) with their To develop methods with object arguments and differentiate between primitive-type arguments and q object-type arguments (§9.10). current values. The behavior of an object is defined To store and process objects in arrays (§9.11). q by a set of methods. To create immutable objects from immutable classes to protect the contents of objects (§9.12). q q To determine the scope of variables in the context of a class (§9.13). q To use the keyword this to refer to the calling object itself (§9.14). Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 3 4 rights reserved. rights reserved. Objects Classes Class Name: Circle A class template Classes are constructs that define objects of the Data Fields: radius is _______ same type. A Java class uses variables to define Methods: getArea data fields and methods to define behaviors. Additionally, a class provides a special type of Three objects of Circle Object 1 Circle Object 2 Circle Object 3 the Circle class methods, known as constructors, which are invoked Data Fields: Data Fields: Data Fields: radius is 25 radius is 125 radius is 10 to construct objects from the class. An object has both a state and behavior. The state defines the object, and the behavior defines what the object does. Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 5 6 rights reserved. rights reserved.

  2. Classes UML Class Diagram class Circle { Circle Class name UML Class Diagram /** The radius of this circle */ double radius = 1.0; radius: double Data fields Data field Constructors and Circle() /** Construct a circle object */ methods Circle(newRadius: double) Circle() { getArea(): double } getPerimeter(): double Constructors setRadius(newRadius: double): void /** Construct a circle object */ Circle(double newRadius) { radius = newRadius; UML notation } circle2: Circle circle3: Circle circle1: Circle for objects radius = 25 radius = 125 /** Return the area of this circle */ radius = 1.0 double getArea() { Method return radius * radius * 3.14159; } } Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 7 8 rights reserved. rights reserved. Example: Defining Classes and Creating Objects Example: Defining Classes and Creating Objects TV The current channel (1 to 120) of this TV. channel: int The current volume level (1 to 7) of this TV. volumeLevel: int Indicates whether this TV is on/off. on: boolean Objective: Demonstrate creating objects, The + sign indicates Constructs a default TV object. +TV() a public modifier. Turns on this TV. +turnOn(): void accessing data, and using methods. +turnOff(): void Turns off this TV. Sets a new channel for this TV. +setChannel(newChannel: int): void Sets a new volume level for this TV. +setVolume(newVolumeLevel: int): void +channelUp(): void Increases the channel number by 1. Decreases the channel number by 1. +channelDown(): void +volumeUp(): void Increases the volume level by 1. Run TestSimpleCircle +volumeDown(): void Decreases the volume level by 1. TV Run TestTV Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 9 10 rights reserved. rights reserved. Constructors, cont. Constructors Constructors are a special A constructor with no parameters is referred to as a Circle() { kind of methods that are no-arg constructor . } invoked to construct objects. · Constructors must have the same name as the class itself. Circle(double newRadius) { radius = newRadius; · Constructors do not have a return type—not } even void. · Constructors are invoked using the new operator when an object is created. Constructors play the role of initializing objects. Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 11 12 rights reserved. rights reserved.

  3. Creating Objects Using Default Constructor Constructors A class may be defined without constructors. In new ClassName(); this case, a no-arg constructor with an empty body is implicitly defined in the class. This constructor, Example: called a default constructor , is provided automatically only if no constructors are explicitly new Circle(); defined in the class . new Circle(5.0); Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 13 14 rights reserved. rights reserved. Declaring Object Reference Variables Declaring/Creating Objects in a Single Step To reference an object, assign the object to a reference variable. ClassName objectRefVar = new ClassName(); To declare a reference variable, use the syntax: Create an object Assign object reference Example: ClassName objectRefVar; Circle myCircle = new Circle(); Example: Circle myCircle; Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 15 16 rights reserved. rights reserved. animation Trace Code Accessing Object’s Members Declare myCircle q Referencing the object’s data: Circle myCircle = new Circle(5.0); objectRefVar.data myCircle no value e.g., myCircle.radius Circle yourCircle = new Circle(); yourCircle.radius = 100; q Invoking the object’s method: objectRefVar.methodName(arguments) e.g., myCircle.getArea() Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All 17 18 rights reserved. rights reserved.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend