[PDF] [PDF] Java Classes, Objects, Inheritance, Abstract and Interfaces Recap 2

the same type A Java class uses: variables to define data fields and methods to define behaviors



Previous PDF Next PDF





[PDF] Chapter 9: Inheritance and Interfaces - CSULB

INHERITANCE AND INTERFACES To implement subclasses that inherit and override In object-oriented programming, inheritance is a relationship 



[PDF] Inheritance and Interfaces Single inheritance in Java Multiple

All classes extend Object --- it's the root of the inheritance hierarchy tree ❑ Can extend Classes (and interfaces) can implement multiple interfaces ❑ A dog is  



[PDF] inheritance, abstract classes, interfaces

CMSC 206 Inheritance, Abstract Classes, and Interfaces adding methods ❑ The specialized classes are said to inherit the methods and instance variables 



[PDF] INHERITANCE AND INTERFACES UNIT -2 - Sri Vidya College of

Inheritance is the mechanism in java by which one class is allow to inherit the features (fields and methods) of another class It is process of deriving a new class from an existing class A class that is inherited is called a superclass and the class that does the inheriting is called a subclass



[PDF] Java Classes, Objects, Inheritance, Abstract and Interfaces Recap 2

the same type A Java class uses: variables to define data fields and methods to define behaviors



[PDF] Inheritance III: Interfaces - MIT OpenCourseWare

Interface (wimpy class) is like an abstract class but: – If Java had only abstract classes, a subclass could only inherit from one superclass – Multiple interfaces 



[PDF] Collections and Inheritance - UNC Computer Science

We will see that inheritance, like interface implementation, is also an is-a relation Later, we will see predefined Java collections such as Vector, ArrayList and



[PDF] Java - Inheritance/Polymorphism/Interface Reusing Classes in Java

Java - Inheritance/Polymorphism/Interface CS 4354 Fall 2012 Jill Seaman 1 Reusing Classes in Java • Composition ✦A new class is composed of object 



[PDF] OOP Inheritance 2 - Stanford University

A Java class can only have one superclass, but it may implement any number of interfaces • "Responds To" - The interface is a "responds to" claim about a set 



[PDF] Inheritance, Generics and Binary Methods in Java - SciELO México

classes and interfaces in the implementation of a Java program Keywords: Binary methods, Inheritance, Java, Parameterized types Resumen El lenguaje de 

[PDF] inheritance class diagram

[PDF] inheritance cycle name of the ancient language

[PDF] inheritance in python 3 tutorialspoint

[PDF] inheritance in python 3.6

[PDF] inheritance in python 3.7

[PDF] inheritance python 3 super

[PDF] inherited uml

[PDF] ini shared path nsclient++ ini

[PDF] initial basic feasible solution in lpp

[PDF] initial basic feasible solution in operation research

[PDF] initial basic feasible solution ppt

[PDF] initial basic feasible solution simplex method

[PDF] initialize 2d array in js

[PDF] initialize 2d array java

[PDF] initialize array in jsp

CSE260, Computer Science B: Honors

Stony Brook University

http://www.cs.stonybrook.edu/~cse260

Recapitulate CSE160: Java Classes, Objects,

Inheritance, Abstract Classes and Interfaces

1 (c) Paul Fodor (CS Stony Brook) & Pearson

Objectives

To refresh information from CSE160 about

classes, objects, inheritance, abstract classes and interfaces 2 (c) Paul Fodor (CS Stony Brook) & Pearson

OO Programming Concepts

An object represents an entity in the real world that can be distinctly identified.

An object has a unique state and behaviors

the state of an object consists of a set of data fields (properties) with their current values the behavior of an object is defined by a set of methods 3

Class Name: Circle

Data Fields:

radius is _______

Methods:

getArea()

Circle Object 1

Data Fields:

radius is 1

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 (c) Paul Fodor (CS Stony Brook) & Pearson

Classes

Classes are templates that define objects of

the same type.

A Java class uses:

variables to define data fields and methods to define behaviors

A class provides a special type of methods

called constructorswhich are invoked to construct objects from the class 4 (c) Paul Fodor (CS Stony Brook) & Pearson5 class Circle { /** The radius of this circle */ private double radius = 1.0; /** Construct a circle object */ public Circle() { /** Construct a circle object */ public Circle(double newRadius) { radius = newRadius; /** Return the area of this circle */ public double getArea() { return radius * radius * 3.14159;

Data field

Method

Constructors

Classes

(c) Paul Fodor (CS Stony Brook) & Pearson6 public class TestCircle { public static void main(String[] args) {

Circle circle1 = new Circle();

Circle circle2 = new Circle(25);

Circle circle3 = new Circle(125);

System.out.println( circle1.getArea() );

System.out.println( circle2.getArea() );

System.out.println( circle3.getArea() );

//System.out.println( circle1.radius ); //System.out.println( circle2.radius ); //System.out.println( circle3.radius );

Classes

(c) Paul Fodor (CS Stony Brook) & Pearson7

UML Class Diagram

Circle

radius: double

Circle()

Circle(newRadius: double)

getArea(): double circle1: Circle radius = 1.0

Class name

Data fields

Constructors and

methods circle2: Circle radius = 25 circle3: Circle radius = 125

UML Class Diagram

UML notation

for objects (c) Paul Fodor (CS Stony Brook) & Pearson

Constructors

Constructors must have the same name as the class itself. Constructors do not have a return typenot even void. Constructors are invoked using the newoperator when an object is created they initialize objects to reference variables:

ClassNameo = new ClassName();

Example:

Circle myCircle= new Circle(5.0);

A class may be declared without constructors: a no-argdefault constructorwith an empty body is implicitly declared in the class 8 (c) Paul Fodor (CS Stony Brook) & Pearson

Accessing Objects

objectRefVar.data

Example:myCircle.radius

objectRefVar.methodName(arguments)

Example:myCircle.getArea()

9 (c) Paul Fodor (CS Stony Brook) & Pearson10

Default values

public class Test { public static void main(String[] args) { intx; // 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: the variables are not initialized

BUT it assigns default values to data fields!

Java assigns no default value to a local variable inside a method. (c) Paul Fodor (CS Stony Brook) & Pearson11

Reference Data Fields

The data fields can also be of reference types

Example:

public class Student {

String name; // name has default value null

intage; // age has default value 0 booleanisScienceMajor; // isScienceMajorhas default value false char gender; // c has default value '\u0000' If a data field of a reference type does not reference any object, the data field holds a special literal value: null. public class Test { public static void main(String[] args) {

Student student= new Student();

System.out.println("name? " + student.name); // null

System.out.println("age? " + student.age); // 0

System.out.println("isScienceMajor? " + student.isScienceMajor); // false System.out.println("gender? " + student.gender); // (c) Paul Fodor (CS Stony Brook) & Pearson12

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 (c) Paul Fodor (CS Stony Brook) & Pearson13

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 -The object previously referenced by c1 is no longer referenced it is called garbage -Garbage is automatically collected by JVM = garbage collection (c) Paul Fodor (CS Stony Brook) & Pearson static vs. non-static

Static methods & variables are scoped to a

class one static variable for all objects to share!

Non-static (object) methods & variables

are scoped to a single object each object owns its non-static methods & variables 14 (c) Paul Fodor (CS Stony Brook) & Pearson15

Static Variables,

Constants and Methods

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:

+: public variables or methods underline: static variables or methods circle2 radius = 5 numberOfObjects = 2

After two Circle

objects were created, numberOfObjects is 2. (c) Paul Fodor (CS Stony Brook) & Pearson public class StaticExample{ public intnonStaticCounter= 0; public static intstaticCounter= 0; public StaticExample() { nonStaticCounter++; staticCounter++; public static void main(String[] args) {

StaticExampleex;

ex = new StaticExample(); ex = new StaticExample(); ex = new StaticExample();

System.out.println(ex.nonStaticCounter);

System.out.println(staticCounter);

16

StaticExample.java

(c) Paul Fodor (CS Stony Brook) & Pearson public class StaticExample{ public intnonStaticCounter= 0; public static intstaticCounter= 0; public StaticExample() { nonStaticCounter++; staticCounter++; public static void main(String[] args) {

StaticExampleex;

ex = new StaticExample(); ex = new StaticExample(); ex = new StaticExample();

System.out.println(ex.nonStaticCounter);

System.out.println(staticCounter);

17

StaticExample.java

Output: 1

3 (c) Paul Fodor (CS Stony Brook) & Pearson staticusage

Can a staticmethod:

-staticmethod in the same class? directly call a staticmethod in the same class? directly reference a non-staticvariable in the same class? directly reference a staticvariable in the same class?

Can a non-staticmethod:

-staticmethod in the same class? directly call a staticmethod in the same class? directly reference a non-staticvariable in the same class? directly reference a staticvariable in the same class? 18 (c) Paul Fodor (CS Stony Brook) & Pearson staticusage

Can a staticmethod:

-staticmethod in the same class? No directly call a staticmethod in the same class? Yes directly reference a non-staticvariable in the same class? No directly reference a staticvariable in the same class? Yes

Can a non-staticmethod:

-staticmethod in the same class? Yes directly call a staticmethod in the same class? Yes directly reference a non-staticvariable in the same class? Yes directly reference a staticvariable in the same class? Yes 19 (c) Paul Fodor (CS Stony Brook) & Pearson

1 public class Nothing {

2private intnada;// Errors?

3private static intnothing;

4

5public void doNada(){ System.out.println(nada);}

6public static void doNothing(){ System.out.println("NOTHING"); }

7

8public static void myStaticMethod(){

9doNada();

10doNothing();

11nada = 2;

12nothing = 2;

13Nothing n = new Nothing();

14n.doNada();

15n.nada= 2;

16n.nothing= 6;

17}

18public void myNonStaticMethod() {

19doNada();

20doNothing();

21nada = 2;

22nothing = 2;

23Nothing n = new Nothing();

24n.doNada();

25n.nada= 2;

26}}20

(c) Paul Fodor (CS Stony Brook) & Pearson

1 public class Nothing {

2private intnada;

3private static intnothing;

4

5public void doNada(){ System.out.println(nada);}

6public static void doNothing(){ System.out.println("NOTHING"); }

7

8public static void myStaticMethod(){

9doNada();

10doNothing();

11nada = 2;

12nothing = 2;

13Nothing n = new Nothing();

14n.doNada();

15n.nada= 2;

16n.nothing= 6;

17}

18public void myNonStaticMethod() {

19doNada();

20doNothing();

21nada = 2;

22nothing = 2;

23Nothing n = new Nothing();

24n.doNada();

25n.nada= 2;

26}}21

(c) Paul Fodor (CS Stony Brook) & Pearson

Visibility Modifiers and

Accessor/MutatorMethods

By default, the class, variable, or method can be

accessed by any class in the same package. 22
public The 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 -To protect data!

The get and set methods are used to read and

modify private properties. (c) Paul Fodor (CS Stony Brook) & Pearson23

Array of Objects

Circle[] circleArray= new Circle[10];

An array of objects is an array of reference variables (like the multi-dimensional arrays seen before) reference

Circle object 0 circleArray[0]

circleArray circleArray[1] circleArray[9]

Circle object 9

Circle object 1

(c) Paul Fodor (CS Stony Brook) & Pearson

Immutable Objects and Classes

Immutable object: the contents of an object cannot be changed once the object is created -its class is called an immutable class Example immutable class: no set method in the Circle class public class Circle{ private double radius; public Circle() { } public Circle(double radius) { this.radius= radius; public double getRadius() { return radius; radius is private and cannot be changed without a set method A class with all private data fields and without mutatorsis not necessarily immutable!24 (c) Paul Fodor (CS Stony Brook) & Pearson

What Class is Immutable?

1.It must mark all data fields private!

2.Provide no mutator methods!

3.Provide no accessor methods that would

return a reference to a mutable data field object! 25
(c) Paul Fodor (CS Stony Brook) & Pearson26

Example mutable

public class Student { private intid; privateBirthDatebirthDate; public Student(intssn, intyear, intmonth, intday) { id = ssn; birthDate= new BirthDate(year, month, day); public intgetId() { return id; public BirthDategetBirthDate() { return birthDate; public class BirthDate{ private intyear; private intmonth;quotesdbs_dbs20.pdfusesText_26