Presentation is loading. Please wait.

Presentation is loading. Please wait.

Lecture 2 Object-oriented programming. Definitions of OOP OOP is a programming paradigm, which utilizes encapsulation, inheritance and polymorphism. (From.

Similar presentations


Presentation on theme: "Lecture 2 Object-oriented programming. Definitions of OOP OOP is a programming paradigm, which utilizes encapsulation, inheritance and polymorphism. (From."— Presentation transcript:

1 Lecture 2 Object-oriented programming

2 Definitions of OOP OOP is a programming paradigm, which utilizes encapsulation, inheritance and polymorphism. (From standard programming languages textbook)

3 Definitions of OOP OOP is a method of implementation in which programs are organized as cooperative collections of objects, each of which, represents an instance of some class, and whose classes are all members of a hierarchy of classes united via inheritance relationship. (Grady Booch, Object-oriented analysis and design)

4 Definitions of OOP OOP is a way of modeling computation which attempts to mimic the way we see the world around us.

5 Grady Booch on Abstraction is one of the fundamental ways that we as humans cope with complexity arises from recognition of similarities between certain objects, situations or processes in the real world facilitates principle of least astonishment

6 Grady Booch on Abstraction denotes the essential characteristics of an object that distinguish it from all other kinds of objects and thus provides crisply defined conceptual boundaries, relative to the perspective of the viewer captures the entire behavior of some object, no more, no less, and offers no surprises or side effects that go beyond the scope of the abstraction.

7 Encapsulation public class Car { private String serialNumer; private String make; private double tankVolume; private double speed; }

8 Encapsulation public class Car { // Public section public String getSerialNumber() { return serialNumber; } public String getMake() { return make; } public double getTankVolume() { return tankVolume; } public double getSpeed() { return speed; } // Private section private String serialNumer; private String make; private double tankVolume; private double speed; }

9 Encapsulation is the process of compartmentalizing the elements of an abstraction that constitute its structure and behavior; encapsulation serves to separate contractual interface of an abstraction and its implementation. (from Grady Booch’s Object-oriented analysis and design)

10 Inheritance Is-a relationship (is kind of) Dog is a Mammal Professor is (usually) Human Running is an Exercise

11 Inheritance is about organizing abstractions into hierarchies.

12 Inheritance At the top of inheritance hierarchy is a base class. Typically, a base class would be abstract, meaning it would correspond to a concept, a not to a physical entity. This class would explicitly prohibit you to create instances of itself. public abstract class Engine {} Implies that Engine myEngine = new Engine(); would not compile.

13 Inheritance Derived class inherits interface and implementation from the base class.

14 Inheritance for extension Is when derived class adds functionality to the base class public class Point {public class ColorPoint extends Point { public int getX(); public Color getColor(); public int getY();} } Another example public class Derived extends Base { public void build() { super.build(); // do some more }

15 Inheritance for reuse Is when derived class doesn’t add functionality to most methods of the base class Sometimes, the designer of a base class may intentionally specify a method as final. public class Base { public final void getName() { return sName; } public class Derived extends Base { public void getName() { // WOULD NOT COMPILE }

16 An interface is an expression of pure design, whereas class is a mix of design and implementation. From Arnold & Gosling 'Java programming language'

17 public interface IDatabase { public String getName(); public ITable getTable( String name ); public Iterator tables(); public Iterator tableNames(); }

18 public class RelationalDatabase implements IDatabase public class FileDatabase implements IDatabase

19 public void setDatabase( IDatabase db ) { if ( db instanceof RelationalDatabase ) { processRelationalDatabase( (RelationalDatabase)db ); } else if ( db instanceof FilelDatabase ) { processFilelDatabase( (FilelDatabase)db ); }... } DON’T DO THIS….

20 class GraphicalTextEditor : public TextEditor, Component;

21 public class TextEditor {} public class Component {} public class GraphicalTextEditor extends TextEditor { public Component getComponent() { return c; } // Inner class GraphicalTextEditorComponent which takes care // of the graphical aspect of this text editor. private class GraphicalTextEditorComponent extends Component { } private Component c = new GraphicalTextEditorComponent(); }

22 Aggregation Objects of a class have a reference (member field) one or more objects of another class public class Car { … private Engine engine; }

23 Object of another class is passed as an argument into a method. public class PnLCalculator { public static double computePnL( ITrade[] tradeList ) { } private PnLCalculator() {} } Uses

24 Interface can extend another interface public interface List extends Collection

25 public interface IDynamicProperties { public void addProperty( String name, Object value ); public Object getProperty( String name ); public Object removeProperty( String name ); public Iterator properties(); public Iterator propertyNames(); } public interface Clonable { public Object clone(); }

26 public class Entity implements IDynamicProperties, Clonable {.. // Implementation of Dynamic properties interface public void addProperty( String name, Object value ) { htProperties.put( name, value ); }... // implementation of Clonable interface { public Object clone() { Entity newEntity = new Entity(); // copy all fields return newEntity; }

27 public class TreeNode { public Object deepCopy() { TreeNode newNode = new TreeNode(); // copy all the fields // copy children for ( Iterator i = getChildren();i.hasNext(); ) { TreeNode child = (TreeNode)i.next(); newNode.addChild( child.deepCopy() ); }

28 public interface Iterator { public boolean hasNext(); public Object next(); public void remove(); }

29 for ( Iterator i = getChildren(); i.hasNext(); ) { TreeNode child = (TreeNode)i.next(); newNode.addChild( child.deepCopy() ); }

30 public abstract class Entity public String getName() { return name; } public void setName( String name ) { this.name = name; } public abstract Object getUniqueId(); private String name; }

31 IFoo AbstractFoo DefaultFoo ABitDifferentFoo VeryDifferentFoo

32 Please read Chapters 2, 4, 5,6, 10, 11 in Java programming language by Arnold & Gosling Chapters 1 and 2 in Design Patterns by Gamma, etc.


Download ppt "Lecture 2 Object-oriented programming. Definitions of OOP OOP is a programming paradigm, which utilizes encapsulation, inheritance and polymorphism. (From."

Similar presentations


Ads by Google