Top Banner
1 Chapter 8 Objects and Classes
66

Chapter 8 Objects and Classes

Feb 22, 2016

Download

Documents

lieu

Chapter 8 Objects and Classes. Objectives. To understand objects and classes and use classes to model objects. To learn how to declare a class and how to create an object of a class. To understand the roles of constructors and use constructors to create objects. - PowerPoint PPT Presentation
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Chapter 8 Objects and Classes

1

Chapter 8

Objects and Classes

Page 2: Chapter 8 Objects and Classes

2

Objectives To understand objects and classes and use classes to model objects. To learn how to declare a class and how to create an object of a class. To understand the roles of constructors and use constructors to create objects. To use UML graphical notations to describe classes and objects. To distinguish between object reference variables and primitive data type

variables. To use classes in the Java library. To declare private data fields with appropriate get and set methods to make class

easy to maintain. To develop methods with object arguments. To understand the difference between instance and static variables and methods. To determine the scope of variables in the context of a class. To use the keyword this as the reference to the current object that invokes the

instance method. To store and process objects in arrays. To apply class abstraction to develop software. To declare inner classes.

Page 3: Chapter 8 Objects and Classes

3

OO Programming ConceptsObject-oriented programming (OOP) involves programming using objects. An object represents an entity in the real world that can be distinctly identified. For example, a student, a desk, a circle, a button, and even a loan can all be viewed as objects. An object has a unique identity, state, and behaviors. The state of an object consists of a set of data fields (also known as properties) with their current values. The behavior of an object is defined by a set of methods.

Page 4: Chapter 8 Objects and Classes

4

Objects

An object has both a state and behavior. The state defines the object, and the behavior defines what the object does.

Class Name: Circle Data Fields:

radius is _______ Methods:

getArea

Circle Object 1 Data Fields:

radius is 10

Circle Object 2 Data Fields:

radius is 25

Circle Object 3 Data Fields:

radius is 125

A class template

Three objects of the Circle class

Page 5: Chapter 8 Objects and Classes

5

Classes

Classes are constructs that define objects of the same type. A Java class uses variables to define data fields and methods to define behaviors. Additionally, a class provides a special type of methods, known as constructors, which are invoked to construct objects from the class.

Page 6: Chapter 8 Objects and Classes

6

Classes class Circle {

/** The radius of this circle */ double radius = 1.0; /** Construct a circle object */ Circle() { } /** Construct a circle object */ Circle(double newRadius) { radius = newRadius; } /** Return the area of this circle */ double getArea() { return radius * radius * 3.14159; }

}

Data field

Method

Constructors

Page 7: Chapter 8 Objects and Classes

7

Unified Modelling Language (UML) Class Diagram

Circle

radius: double Circle() Circle(newRadius: double) getArea(): double

circle1: Circle radius: 10

Class name Data fields Constructors and Methods

circle2: Circle radius: 25

circle3: Circle radius: 125

UML Class Diagram

UML notation for objects

Page 8: Chapter 8 Objects and Classes

8

Constructors

Circle() {}

Circle(double newRadius) { radius = newRadius;}

Constructors are a special kind of methods that are invoked to construct objects.

Page 9: Chapter 8 Objects and Classes

9

Constructors, cont.A constructor with no parameters is referred to as a no-arg constructor.

·       Constructors must have the same name as the class itself.

·       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.

Page 10: Chapter 8 Objects and Classes

10

Creating Objects Using Constructors

new ClassName();

Example:new Circle();

new Circle(5.0);

Page 11: Chapter 8 Objects and Classes

11

Default ConstructorA class may be declared without constructors. In this case, a no-arg constructor with an empty body is implicitly declared in the class. This constructor, called a default constructor, is provided automatically only if no constructors are explicitly declared in the class.

Page 12: Chapter 8 Objects and Classes

12

Declaring Object Reference Variables

To reference an object, assign the object to a reference variable.

To declare a reference variable, use the syntax:

ClassName objectRefVar;

Example:Circle myCircle;

Page 13: Chapter 8 Objects and Classes

13

Declaring/Creating Objectsin a Single Step

ClassName objectRefVar = new ClassName();

Example:Circle myCircle = new Circle();

Create an objectAssign object reference

Page 14: Chapter 8 Objects and Classes

14

Accessing Objects Data field can be accessed and its methods invoked

using the dot operator (.) – known as object member access operator.

Referencing the object’s data: objectRefVar.data e.g., myCircle.radius

Invoking the object’s method: objectRefVar.methodName(arguments) e.g., myCircle.getArea()

Page 15: Chapter 8 Objects and Classes

15

A Simple Circle Class

Objective: Demonstrate creating objects, accessing data, and using methods.

TestCircle1 Run

Page 16: Chapter 8 Objects and Classes

16

Trace Code

Circle myCircle = new Circle(5.0);

SCircle yourCircle = new Circle();

yourCircle.radius = 100;

Declare myCircle

no valuemyCircle

animation

Page 17: Chapter 8 Objects and Classes

17

Trace Code, cont.

Circle myCircle = new Circle(5.0);

Circle yourCircle = new Circle();

yourCircle.radius = 100; : Circle radius: 5.0

no valuemyCircle

Create a circle

animation

Page 18: Chapter 8 Objects and Classes

18

Trace Code, cont.

Circle myCircle = new Circle(5.0);

Circle yourCircle = new Circle();

yourCircle.radius = 100; : Circle radius: 5.0

reference valuemyCircle

Assign object reference to myCircle

animation

Page 19: Chapter 8 Objects and Classes

19

Trace Code, cont.Circle myCircle = new Circle(5.0);

Circle yourCircle = new Circle();

yourCircle.radius = 100; : Circle radius: 5.0

reference valuemyCircle

no valueyourCircle

Declare yourCircle

animation

Page 20: Chapter 8 Objects and Classes

20

Trace Code, cont.Circle myCircle = new Circle(5.0);

Circle yourCircle = new Circle();

yourCircle.radius = 100; : Circle radius: 5.0

reference valuemyCircle

no valueyourCircle

: Circle radius: 0.0

Create a new Circle object

animation

Page 21: Chapter 8 Objects and Classes

21

Trace Code, cont.Circle myCircle = new Circle(5.0);

Circle yourCircle = new Circle();

yourCircle.radius = 100; : Circle radius: 5.0

reference valuemyCircle

reference valueyourCircle

: Circle radius: 1.0

Assign object reference to yourCircle

animation

Page 22: Chapter 8 Objects and Classes

22

Trace Code, cont.Circle myCircle = new Circle(5.0);

Circle yourCircle = new Circle();

yourCircle.radius = 100; : Circle radius: 5.0

reference valuemyCircle

reference valueyourCircle

: Circle radius: 100.0

Change radius in yourCircle

animation

Page 23: Chapter 8 Objects and Classes

23

1. public class TestCircle1 {2. public static void main(String[] args) {3. Circle1 myCircle = new Circle1(5.0);4. System.out.println(“The area of the circle of radius “ +5. myCircle.radius + “ is “ +6. myCircle.getArea());7. Circle1 yourCircle = new Circle1();8. System.out.println(“The area of the circle of radius “ + 9. yourCircle.radius + “ is “ + 10. yourCircle.getArea()); 11. yourCircle.radius = 100;12. System.out.println(“The area of the circle of radius “ + 13. yourCircle.radius + “ is “ + 14. yourCircle.getArea());15. }16. }

Page 24: Chapter 8 Objects and Classes

24

17. class Circle1 {18. double radius;19. Circle1( ) {20. radius = 1.0;21. }22. Circle1(double newRadius) {23. radius = newRadius;24. }25. double getArea( ) {26. return radius * radius * radius * 27. Math.PI;28. }29. }

Page 25: Chapter 8 Objects and Classes

25

CautionRecall that you use

Math.methodName(arguments) (e.g., Math.pow(3, 2.5))

to invoke a method in the Math class. Can you invoke getArea() using Circle1.getArea()? The answer is no. All the methods used before this chapter are static methods, which are defined using the static keyword. However, getArea() is non-static. It must be invoked from an object using

objectRefVar.methodName(arguments) (e.g., myCircle.getArea()).

More explanations will be given in Section 2.7, “Static Variables, Constants, and Methods.”

Page 26: Chapter 8 Objects and Classes

26

Reference Data FieldsThe data fields can be of reference types. For example, the following Student class contains a data field name of the String type.

public class Student { String name; // name has default value null int age; // age has default value 0 boolean isScienceMajor; // isScienceMajor has default value false char gender; // c has default value '\u0000'}

Page 27: Chapter 8 Objects and Classes

27

The null ValueIf a data field of a reference type does not reference any object, the data field holds a special literal value, null.

Page 28: Chapter 8 Objects and Classes

28

Default Value for a Data FieldThe default value of a data field is null for a reference type, 0 for a numeric type, false for a boolean type, and '\u0000' for a char type. However, Java assigns no default value to a local variable inside a method. public class Test { public static void main(String[] args) { Student student = new Student(); System.out.println("name? " + student.name); System.out.println("age? " + student.age); System.out.println("isScienceMajor? " + student.isScienceMajor); System.out.println("gender? " + student.gender); }}

Page 29: Chapter 8 Objects and Classes

29

Example

public class Test { public static void main(String[] args) { int x; // x has no default value String y; // y has no default value System.out.println("x is " + x); System.out.println("y is " + y); }}

Compilation error: variables not initialized

Java assigns no default value to a local variable inside a method.

Page 30: Chapter 8 Objects and Classes

30

1. public class TestCircle1 {2. public static void main(String[] args) {3. double localVar;4. //Circle1 myCircle = new Circle1(5.0);5. //System.out.println(“The area of the circle of radius “ +6. myCircle.radius + “ is “ +7. myCircle.getArea());8. Circle1 yourCircle = new Circle1();9. System.out.println(“The default value for radius is “ + 10. yourCircle.radius); 11. System.out.println(“Default value for local variable is “ + 12. localVar);13. // yourCircle.radius = 100;14. //System.out.println(“The area of the circle of radius “ + 15. yourCircle.radius + “ is “ + 16. yourCircle.getArea());17. }18. }

Page 31: Chapter 8 Objects and Classes

31

17. class Circle1 {18. double radius;19. Circle1( ) {20. // radius = 1.0;21. }22. Circle1(double newRadius) {23. radius = newRadius;24. }25. double getArea( ) {26. return radius * radius * radius * 27. Math.PI;28. }29. }

Page 32: Chapter 8 Objects and Classes

32

Differences between Variables of Primitive Data Types and Object Types

1 Primitive type int i = 1 i

Object type Circle c c reference

Created using new Circle()

c: Circle

radius = 1

Page 33: Chapter 8 Objects and Classes

33

Copying Variables of Primitive Data Types and Object Types

i

Primitive type assignment i = j Before:

1

j

2

i

After: 2

j

2

c1

Object type assignment c1 = c2 Before:

c2

c1

After:

c2

c1: Circle radius = 5

C2: Circle radius = 9

c1: Circle radius = 5

C2: Circle radius = 9

Page 34: Chapter 8 Objects and Classes

34

Garbage Collection

As shown in the previous figure, after the assignment statement c1 = c2, c1 points to the same object referenced by c2. The object previously referenced by c1 is no longer referenced. This object is known as garbage. Garbage is automatically collected by Java Virtual Machine (JVM).

Page 35: Chapter 8 Objects and Classes

35

Garbage Collection, cont

TIP: If you know that an object is no longer needed, you can explicitly assign null to a reference variable for the object. The JVM will automatically collect the space if the object is not referenced by any variable.

Page 36: Chapter 8 Objects and Classes

36

Exercise 1 Develop an Object Oriented program to display the

balance of your account after each transaction. The program must has a class named Account with two type of constructors. – A no-arg constructor that creates a default balance with value is 100.00.– A constructor that update the balance based on the specified transaction,

which are either withdrawal or deposit.– A method named getBalance() that returns the balance of the account.

Use data field balance to hold the current balance of the account. Assign and display no transaction, transaction value is 200.00 and transaction value is –50.00 when you create the objects.

Page 37: Chapter 8 Objects and Classes

37

Exercise 2 Write an Object Oriented program to display area and

perimeter of a rectangle. Design a class named Rectangle to represent the rectangle and the class contains:– Two double data fields named width and height that specify the

width and height of the rectangle. The default values are 1 for both width and height

– A no-arg constructor that creates a default rectangle.– A constructor that creates a rectangle with the specified width

and height.– A method named getArea() that returns the area of this rectangle.– A method named getPerimeter() that returns the perimeter.

Assign width 4 and height 40 for the first object and width 3.5 and height 35.9 to the second object.

Page 38: Chapter 8 Objects and Classes

38

Using Classes from the Java LibraryExample 2.1 declared the Circle1 class and created objects from the class. Often you will use the classes in the Java library to develop programs. You learned to obtain the current time using System.currentTimeMillis() in previous chapter (Primitive Data Types and Operations), “Displaying Current Time.” You used the division and remainder operators to extract current second, minute, and hour.

Page 39: Chapter 8 Objects and Classes

39

The Date ClassJava provides a system-independent encapsulation of date and time in the java.util.Date class. You can use the Date class to create an instance for the current date and time and use its toString method to return the date and time as a string.

java.util.Date

+Date() +Date(elapseTime: long)

+toString(): String +getTime(): long

+setTime(elapseTime: long): void

Constructs a Date object for the current time. Constructs a Date object for a given time in

milliseconds elapsed since January 1, 1970, GMT. Returns a string representing the date and time. Returns the number of milliseconds since January 1,

1970, GMT. Sets a new elapse time in the object.

The + sign indicates public modifer

Page 40: Chapter 8 Objects and Classes

40

The Date Class ExampleFor example, the following code  

java.util.Date date = new java.util.Date();System.out.println(date.toString());

displays a string like Sun Mar 09 13:50:19 EST 2003.

Page 41: Chapter 8 Objects and Classes

41

The Random ClassYou have used Math.random() to obtain a random double value between 0.0 and 1.0 (excluding 1.0). A more useful random number generator is provided in the java.util.Random class.

java.util.Random

+Random() +Random(seed: long) +nextInt(): int +nextInt(n: int): int +nextLong(): long +nextDouble(): double +nextFloat(): float +nextBoolean(): boolean

Constructs a Random object with the current time as its seed. Constructs a Random object with a specified seed. Returns a random int value. Returns a random int value between 0 and n (exclusive). Returns a random long value. Returns a random double value between 0.0 and 1.0 (exclusive). Returns a random float value between 0.0F and 1.0F (exclusive). Returns a random boolean value.

Page 42: Chapter 8 Objects and Classes

42

The Random Class ExampleIf two Random objects have the same seed, they will generate identical sequences of numbers. For example, the following code creates two Random objects with the same seed 3.

Random random1 = new Random(3);System.out.print("From random1: ");for (int i = 0; i < 10; i++) System.out.print(random1.nextInt(1000) + " ");Random random2 = new Random(3);System.out.print("\nFrom random2: ");for (int i = 0; i < 10; i++) System.out.print(random2.nextInt(1000) + " ");

From random1: 734 660 210 581 128 202 549 564 459 961 From random2: 734 660 210 581 128 202 549 564 459 961

Page 43: Chapter 8 Objects and Classes

43

Instance Variables, and Methods

Instance variables belong to a specific instance.

Instance methods are invoked by an instance of the class.

Page 44: Chapter 8 Objects and Classes

44

Static Variables, Constants, and Methods

Static variables are shared by all the instances of the class.

Static methods are not tied to a specific object.

Static constants are final variables shared by all the instances of the class.

Page 45: Chapter 8 Objects and Classes

45

Static Variables, Constants, and Methods, cont.

To declare static variables, constants, and methods, use the static modifier.

Page 46: Chapter 8 Objects and Classes

46

17. class Circle2 {18. double radius;19. static int numberOfObjects = 0;20. 21. Circle2( ) {22. radius = 1.023. numberOfObjects++; }24. 25. Circle2(double newRadius) {26. radius = newRadius;27. numberOfObjects++; }28. 29. double getArea( ) {30. return radius * radius * Math.PI; }31. 32. static int getNumberOfObjects() {33. return numberOfObjects; }34. }

Page 47: Chapter 8 Objects and Classes

47

Static Variables, Constants, and Methods, cont.

Circle radius: double numberOfObjects: int getNumberOfObjects(): int +getArea(): double

1 radius

circle1 radius = 1 numberOfObjects = 2

instantiate

instantiate

Memory

2

5 radius

numberOfObjects

UML Notation: underline: static variables or methods

circle2 radius = 5 numberOfObjects = 2

Circle2 circle1 = new Circle2();Circle2 circle2 = new Circle2(5);

Page 48: Chapter 8 Objects and Classes

48

Static Variables, Constants, and Methods, cont.

circle1.numberOfObjects and circle1.getNumberOfobjects() can be replaced with Circle1.numberOfObjects and Circle2.getNumberOfObjects().

Syntax: ClassName.methodName(arguments) to invoke a static methodClassName.staticVariable.

This improves readability because the user can easily recognise the static method and data in the class.

Page 49: Chapter 8 Objects and Classes

49

Static Variables, Constants, and Methods, cont.

Instance variables and methods can only be used from instance method, not from static methods, since static variables and methods belong to the class as a whole and not to particular objects.

Example: static int getNumberOfObjects() {

radius = radius * radius;return numberOfObjects;

}

* wrong because radius is instance variable, not static variable and cannot be used in static method.

Page 50: Chapter 8 Objects and Classes

50

Visibility Modifiers and Accessor/Mutator Methods

By default, the class, variable, or method can beaccessed by any class in the same package.

publicThe class, data, or method is visible to any class in any package.

private The data or methods can be accessed only by the declaring class.

The get and set methods are used to read and modify private properties.

Page 51: Chapter 8 Objects and Classes

51

The private modifier restricts access to within a class, the default modifier restricts access to within a package, and the public modifier enables unrestricted access.

public class C1 { public int x; int y; private int z; public void m1() { } void m2() { } private void m3() { } }

public class C2 { void aMethod() { C1 o = new C1(); can access o.x; can access o.y; cannot access o.z; can invoke o.m1(); can invoke o.m2();

cannot invoke o.m3(); } }

package p1; package p2;

public class C3 { void aMethod() { C1 o = new C1(); can access o.x; cannot access o.y; cannot access o.z; can invoke o.m1(); cannot invoke o.m2(); cannot invoke o.m3(); } }

class C1 { ... }

public class C2 { can access C1 }

package p1; package p2;

public class C3 { cannot access C1; can access C2; }

Page 52: Chapter 8 Objects and Classes

52

NOTE

An object cannot access its private members, as shown in (b). It is OK, however, if the object is declared in its own class, as

shown in (a). public class Foo { private boolean x; public static void main(String[] args) {

Foo foo = new Foo(); System.out.println(foo.x);

System.out.println(foo.convert()); } private int convert(boolean b) { return x ? 1 : -1; } }

(a) This is OK because object foo is used inside the Foo class

public class Test { public static void main(String[] args) { Foo foo = new Foo(); System.out.println(foo.x); System.out.println(foo.convert(foo.x)); } }

(b) This is wrong because x and convert are private in Foo.

Page 53: Chapter 8 Objects and Classes

53

Why Data Fields Should Be private?

To protect data.

To make class easy to maintain.

Page 54: Chapter 8 Objects and Classes

54

Why Data Fields Should Be private?

Example: data field radius and numberOfObjects in the Circle2 class can be modified directly (e.g. myCircle.radius = 5).

This is not a good practice:– Data may be tampered. For example, numberOfObjects is to

count the number of objects created, but it may be set to an arbitrary value (e.g. Circle2.numberOfObjects = 10).

– It makes the class difficult to maintain and vulnerable to bugs.Suppose you want to modify the Circle2 class to ensure that the radius is non-negative after other programs have already used the class. You have to change not only the Circle2 class, but also the programs that use the Circle2 class.

Page 55: Chapter 8 Objects and Classes

55

Why Data Fields Should Be private?

Data field encapsulation: declare the data field as private to prevent direct modification of properties

Provide a get method to return the value of the data field. (getter/accessor)

Provide a set method to enable a private data field to be updated (setter/mutator)

Page 56: Chapter 8 Objects and Classes

56

Example ofData Field Encapsulation

Circle3 RunTestCircle3

Circle

-radius: double -numberOfObjects: int +Circle() +Circle(radius: double) +getRadius(): double +setRadius(radius: double): void +getNumberOfObject(): int +getArea(): double

The radius of this circle (default: 1.0). The number of circle objects created. Constructs a default circle object. Constructs a circle object with the specified radius. Returns the radius of this circle. Sets a new radius for this circle. Returns the number of circle objects created. Returns the area of this circle.

The - sign indicates private modifier

Page 57: Chapter 8 Objects and Classes

57

17. public class Circle3 {18. private double radius = 1;19. private static int numberOfObjects = 0;20. 21. public Circle3( ) {22. numberOfObjects++; }23. 24. public Circle2(double newRadius) {25. radius = newRadius;26. numberOfObjects++; }27. 28. public void setRadius(double newRadius ) {29. radius = (newRadius >= 0) ? newRadius : 0; }30. 31. public static int getNumberOfObjects() {32. return numberOfObjects; }33. 34. public double getArea() {35. return radius * radius * Math.PI36. }37. }

Page 58: Chapter 8 Objects and Classes

58

Immutable Objects and ClassesIf the contents of an object cannot be changed once the object is created, the object is called an immutable object and its class is called an immutable class. If you delete the set method in the Circle class in the preceding example, the class would be immutable because radius is private and cannot be changed without a set method.

A class with all private data fields and without mutators is not necessarily immutable. For example, the following class Student has all private data fields and no mutators, but it is mutable.

Page 59: Chapter 8 Objects and Classes

59

Examplepublic class Student { private int id; private BirthDate birthDate;

public Student(int ssn, int year, int month, int day) { id = ssn; birthDate = new BirthDate(year, month, day); }

public int getId() { return id; }

public BirthDate getBirthDate() { return birthDate; }}

public class BirthDate { private int year; private int month; private int day; public BirthDate(int newYear, int newMonth, int newDay) { year = newYear; month = newMonth; day = newDay; } public void setYear(int newYear) { year = newYear; }}

public class Test { public static void main(String[] args) { Student student = new Student(111223333, 1970, 5, 3); BirthDate date = student.getBirthDate(); date.setYear(2010); // Now the student birth year is changed! }}

Page 60: Chapter 8 Objects and Classes

60

What Class is Immutable?

For a class to be immutable, it must mark all data fields private and provide no mutator methods and no accessor methods that would return a reference to a mutable data field object.

Page 61: Chapter 8 Objects and Classes

61

Passing Objects to Methods

Passing by value for primitive type value (the value is passed to the parameter)

Passing by value for reference type value (the value is the reference to the object)

TestPassObject Run

Page 62: Chapter 8 Objects and Classes

62

Passing Objects to Methods, cont.

Space required for the main method int n: 5 myCircle:

Stack Space required for the printAreas method int times: 5 Circle c:

reference A circle object

Heap

reference

Pass by value (here the value is the reference for the object)

Pass by value (here the value is 5)

Page 63: Chapter 8 Objects and Classes

63

Scope of Variables

The scope of instance and static variables is the entire class. They can be declared anywhere inside a class.

The scope of a local variable starts from its declaration and continues to the end of the block that contains the variable. A local variable must be initialized explicitly before it can be used.

The exception is when a data field is initialized based on reference to another data field.

Page 64: Chapter 8 Objects and Classes

64

Scope of Variablespublic class Circle { public double find getArea() { return radius * radius * Math.PI; }

private double radius = 1;}

public class Foo { private i; private int j = i + 1;}

Page 65: Chapter 8 Objects and Classes

65

Scope of variables

class Foo { int x = 0; int y = 0;

Foo() { }

void p() { int x = 1; System.out.println(“x = “ + x); System.out.println(“y = “ + y); }}

Page 66: Chapter 8 Objects and Classes

66

Exercise 3

Write an Object Oriented program that asks a user to enter the distance of a trip in miles, the miles per gallon estimate for the user’s car, and the average cost of a gallon of gas. Calculate and display the number of gallons of gas needed and the estimated cost of the trip.