Chapter 7 Objects and Classes
Chapter 7 Objects and Classes
Object-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.
OO Programming Concepts
unique identity state behaviors State(attributes) consists of a set of data fields (properties) with their current values. Behavior(operations) of an object is defined by a set of methods.
data field 1 ... data field m method 1 ... method n Behavior State (Properties) findArea() Method, Behavior radius = 5 Data field, State Properties
An object has
Classes:
People,books,dogs,cats,cars,airplanes,trains,etc.
Instance of a class
You,
your parents, the book you are reading, the car you drive Method Names startEngine stopEngine accelerate
public class Student { private String name; private String studentID; private String surname; private Course[] takenCourses; private int state; public void takeCourse(Course course) { . . . } public void payTuition() { . . . } }
Objects
Class Name: Student
Data Fields: name is _______ Methods: takeCourse
A class template
Student Object 1
Data Fields: name is Kerem
Student Object 2
Data Fields: name is Onur
Student Object 3
Data Fields: name is Meltem
An object has both a state and behavior. The state defines the object, and the behavior defines what the object does.
class Planet { public double radius; public String name; public static final long g = 10; public void display() { System.out.println("Radius "+ radius); System.out.println("Name " + name); System.out.println("Long "+ g); } public void initialize() { radius = 10; name = "Dunya"; }
//usage //usage
} class ExPlanet { public static void main(String [] { Planet p = new Planet(); p. initialize(); p.display(); } }
args)
Classes
Classes are constructs that define objects of the same type. (Building plan of similar objects) A Java class uses variables to define data fields and methods to define behaviors.
A class provides a special type of methods, known as constructors, which are invoked to construct objects from the class.
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; } } Method Data field
Constructors
Constructors
Constructors are a special Circle() { kind of methods that are } invoked to perform initializing actions. Circle(double newRadius) { radius = newRadius; }
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.
class Emp { private String name; private String id; private int salary; Emp() // default constructor. No argument list { name = Ahmet"; id = "1234"; salary = 100; } public Emp(String n, String i, int s) // non-default constructor { name = n; id = i; salary = s; } void display() { System.out.println("\nEmploye Info "); System.out.println("Name "+ name); System.out.println("ID "+ id); System.out.println("Salary "+ salary); } }
class ExEmp { public static void main(String [] args) { Emp e1 = new Emp(); e1.display(); Emp e4 = new Emp("Ali","98745", 400); e4.display(); } }
Example:
new Circle();
new Circle(5.0);
Default Constructor
A 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.
public class Student { private String name; private String studentID; private String surname; private Course[] takenCourses; private int state; public Student(String nameParam,String surnameParam) { name=nameParam; surname=surnameParam; } public static void main(String[] args) { Student s1 = new Student(Onur,Saran); } }
circle1: Circle
radius: 10
circle2: Circle
radius: 25
circle3: Circle
radius: 125
Accessing Objects
e.g., myCircle.radius
e.g., myCircle.getArea()
public class TestCircle1 { public static void main(String[] args) { // Create a circle with radius 5.0 Circle1 myCircle = new Circle1(5.0); System.out.println("The area of the circle of radius " + myCircle.radius + " is " + myCircle.getArea()); // Create a circle with radius 1 Circle1 yourCircle = new Circle1(); System.out.println("The area of the circle of radius " + yourCircle.radius + " is " + yourCircle.getArea()); // Modify circle radius yourCircle.radius = 100; System.out.println("The area of the circle of radius " + yourCircle.radius + " is " + yourCircle.getArea()); } }
// Define the circle class with two constructors class Circle1 { double radius;
/** Construct a circle with radius 1 */ Circle1() { radius = 1.0; } /** Construct a circle with a specified radius */ Circle1(double newRadius) { radius = newRadius; } /** Return the area of this circle */ double getArea() { return radius * radius * Math.PI; } }
Caution
Recall 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
Example
Java assigns no default value to a local variable inside a method.
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); } }
int i = 1 Circle c
i c
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 JVM.
From random1: 734 660 210 581 128 202 549 564 459 961 From random2: 734 660 210 581 128 202 549 564 459 961
Circle
radius: double numberOfObjects: int
numberOfObjects
radius
public class TestCircle2 { /** Main method */ public static void main(String[] args) { // Create c1 Circle2 c1 = new Circle2(); // Display c1 BEFORE c2 is created System.out.println("Before creating c2"); System.out.println("c1 is : radius (" + c1.radius + ") and number of Circle objects (" + c1.numberOfObjects + ")"); // Create c2 Circle2 c2 = new Circle2(5); // Change the radius in c1 c1.radius = 9; // Display c1 and c2 AFTER c2 was created System.out.println("\nAfter creating c2 and modifying " + "c1's radius to 9"); System.out.println("c1 is : radius (" + c1.radius + ") and number of Circle objects (" + c1.numberOfObjects + ")"); System.out.println("c2 is : radius (" + c2.radius + ") and number of Circle objects (" + c2.numberOfObjects + ")"); } }
public class Circle2 { /** The radius of the circle */ double radius; /** The number of the objects created */ static int numberOfObjects = 0; /** Construct a circle with radius 1 */ Circle2() { radius = 1.0; numberOfObjects++; } /** Construct a circle with a specified radius */ Circle2(double newRadius) { radius = newRadius; numberOfObjects++; } /** Return numberOfObjects */ static int getNumberOfObjects() { return numberOfObjects; }
/** Return the area of this circle */ double getArea() { return radius * radius * Math.PI; }
}
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.
By default, the class, variable, or method can be accessed by any class in the same package.
package p1; 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(); ? o.x; ? o.y; ? o.z; ? ? ? } } o.m1(); o.m2(); o.m3();
package p2; public class C3 { void aMethod() { C1 o = new C1(); ? o.x; ? o.y; ? o.z; ? ? ? } } o.m1(); o.m2(); o.m3();
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.
package p1; 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 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(); } }
package p2; public class C3 { cannot access C1; can access C2; }
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.
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 (b) This is wrong because x and convert are private in Foo.
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)); } }
public class Circle3 { /** The radius of the circle */ private double radius = 1;
/** Return the area of this circle */ public double getArea() { return radius * radius * Math.PI; } }
Example
public 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 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! } }
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)
public class TestPassObject { /** Main method */ public static void main(String[] args) { // Create a Circle object with radius 1 Circle3 myCircle = new Circle3(1);
// Print areas for radius 1, 2, 3, 4, and 5. int n = 5; printAreas(myCircle, n); // See myCircle.radius and times System.out.println("\n" + "Radius is " + myCircle.getRadius()); System.out.println("n is " + n); } /** Print a table of areas for radius */ public static void printAreas(Circle3 c, int times) { System.out.println("Radius \t\tArea"); while (times >= 1) { System.out.println(c.getRadius() + "\t\t" + c.getArea()); c.setRadius(c.getRadius() + 1); times--; } } }