Presentation is loading. Please wait.

Presentation is loading. Please wait.

Session 2: OOP in C# OOP in C#: –Object Interaction. –Inheritance and Polymorphism. Autumn 20121UCN Technology: IT/Computer Science.

Similar presentations


Presentation on theme: "Session 2: OOP in C# OOP in C#: –Object Interaction. –Inheritance and Polymorphism. Autumn 20121UCN Technology: IT/Computer Science."— Presentation transcript:

1 Session 2: OOP in C# OOP in C#: –Object Interaction. –Inheritance and Polymorphism. Autumn 20121UCN Technology: IT/Computer Science

2 Autumn 2012UCN Technology: IT/Computer Science2 Object-Oriented Programming “ The Three Pillars of OOP”: Encapsulation Inheritance Polymorphism The Substitution Principle

3 Autumn 2012UCN Technology: IT/Computer Science3 OO-Principles -encapsulation Seen from the outside an object is an entity offering a number of services (public methods and properties). The implementation and data representation are hidden or encapsulated. –This makes it possible to change implementation without affecting other parts of the program. –Also it becomes possible to think, talk and use the object without knowing the implementation. –Hiding data behind methods and properties are called encapsulation or data abstraction. Encapsulation or data abstraction is one the fundamental principles of object-oriented programming.

4 Autumn 2012UCN Technology: IT/Computer Science4 The Anatomy of a Class Classes are usually written by this pattern: class ClassName { declaration of attributes constructors properties methods }

5 Autumn 2012UCN Technology: IT/Computer Science5 The Class BankAccount - attributes and constructor namespace Banking { public class BankAccount { private double balance; private int accNo; private int interestRate; public BankAccount(int no, int ir) { balance = 0; accNo = no; intrestRate = ir; }

6 Autumn 2012UCN Technology: IT/Computer Science6 Methods public bool Withdraw(double amount) public void Deposite(double amout) public void GiveInterest()

7 Autumn 2012UCN Technology: IT/Computer Science7 Properties public int InterestRate { get{return interestRate;} set{if( value>=0) interestRate = value;} }

8 Object Interaction Objects may be connected in different ways: –Association (“know-of-relation”). One object uses another. –Aggregation (“part-of-relation”). One object is a part of another. The distinction is not always clear. Autumn 2012UCN Technology: IT/Computer Science8 Means aggregation

9 Cardinality or Multiplicity Tells how many objects an object may be associated with: –One customer may have one account, an account must belong to a customer. (1 – 1) –One customer may have many accounts, an account must belong to one customer. (1 – n) –A customer may one or more accounts, an account may belong to one or more customers. (n – m) Autumn 2012UCN Technology: IT/Computer Science9 Goes for aggregation as well.

10 public class Customer{ //… private BankAccount account; //… account= new BankAccount(no, ir, bal); Autumn 2012UCN Technology: IT/Computer Science10 Customer is responsible for creating BankAccount objects. The association is implemented by an object reference (attribute). Implementing 1 - 1

11 Implementing 1 - n One customer may have many accounts, an account must belong to one customer. Possible solution: A collection of BankAccounts in Customer (accounts) Autumn 2012UCN Technology: IT/Computer Science11

12 In the Code public class Customer{ //… private List accounts; //… public Customer(int cNo, string n){ //… accounts = new List (); } public void AddAccount(BankAccount acc){ accounts.Add(acc); } //… Autumn 2012UCN Technology: IT/Computer Science12 View Source

13 Implementing n - m A customer may have one or more accounts, an account may belong to one or more customers. Possible solution: A collection of BankAccounts in Customer (accounts) and a collection of Customers (owners) in BankAccount. Autumn 2012UCN Technology: IT/Computer Science13

14 Example: Project Management An employee may work on several projects. A project may have several employees working on it. We need to record the number of hours a given employee has spent on a given project: Autumn 2012UCN Technology: IT/Computer Science14

15 Autumn 2012UCN Technology: IT/Computer Science15 Exercise: Re-cap and getting started Create a VS project using this code: EmpProjectV1.rar EmpProjectV1.rar Test it – understand it.

16 The DoME example (from Kölling and Barnes: “Objects First…”) "Database of Multimedia Entertainment" stores details about CDs and DVDs –CD: title, artist, # tracks, playing time, got-it, comment –DVD: title, director, playing time, got-it, comment allows (later) to search for information or print lists Autumn 201216UCN Technology: IT/Computer Science

17 DoME objects Autumn 201217UCN Technology: IT/Computer Science

18 DoME object model Autumn 201218UCN Technology: IT/Computer Science

19 Class diagram View Source (dome-v1)dome-v1 Autumn 201219UCN Technology: IT/Computer Science

20 Critique of DoME code duplication –CD and DVD classes very similar (large part are identical) –makes maintenance difficult/more work –introduces danger of bugs through incorrect maintenance code duplication also in Database class Autumn 201220UCN Technology: IT/Computer Science

21 Using inheritance Autumn 201221UCN Technology: IT/Computer Science

22 Using inheritance define one base or super class: Item define subclasses for DVD and CD the super class defines common attributes the subclasses inherit the super class attributes the subclasses add own attributes Autumn 201222UCN Technology: IT/Computer Science

23 Inheritance in C# public class Item {... } public class CD : Item {... } public class DVD : Item {... } no change here change here View Source (dome-v2)dome-v2 Autumn 201223UCN Technology: IT/Computer Science

24 Subtyping First, we had: public void AddCD( CD theCD) public void Add DVD ( DVD the DVD ) Now, we have: public void AddItem( Item theItem) We call this method with: DVD dvd = new DVD (...) ; myDB.AddItem(my DVD ); Static type Dynamic type Autumn 201224UCN Technology: IT/Computer Science

25 Static and dynamic type The declared type of a variable is its static type. The type of the object a variable refers to is its dynamic type. The compiler’s job is to check for static-type violations. for(Item item : items) { item.Print(); // Item must have // declared a Print method. } Autumn 201225UCN Technology: IT/Computer Science

26 Subclasses and subtyping Classes define types. Subclasses define subtypes. Objects of subclasses can be used where objects of supertypes are required. (This is called substitution.) Autumn 201226UCN Technology: IT/Computer Science

27 Polymorphic variables Object variables in C# are polymorphic. (They can reference objects of more than one type.) They can reference objects of the declared type, or of subtypes of the declared type. Autumn 201227UCN Technology: IT/Computer Science

28 Object diagram Static type Dynamic type Autumn 201228UCN Technology: IT/Computer Science

29 Conflicting output CD: A Swingin' Affair (64 mins)* Frank Sinatra tracks: 16 my favourite Sinatra album DVD: O Brother, Where Art Thou? (106 mins) Joel & Ethan Coen The Coen brothers’ best movie! title: A Swingin' Affair (64 mins)* my favourite Sinatra album title: O Brother, Where Art Thou? (106 mins) The Coen brothers’ best movie! What we want What we have Autumn 201229UCN Technology: IT/Computer Science

30 The inheritance hierarchy Here we only know information in Item Autumn 201230UCN Technology: IT/Computer Science

31 Overriding: the solution print method in both super- and subclasses. Satisfies both static and dynamic type checking. View Source (dome-v3)dome-v3 Autumn 201231UCN Technology: IT/Computer Science

32 Overriding Superclass and subclass define methods with the same signature. Each has access to the fields of its class. Superclass satisfies static type check. Subclass method is called at runtime – it overrides the superclass version. What becomes of the superclass version? Autumn 201232UCN Technology: IT/Computer Science

33 Method lookup No inheritance or polymorphism. The obvious method is selected. Autumn 201233UCN Technology: IT/Computer Science

34 Method lookup Inheritance but no overriding. The inheritance hierarchy is ascended, searching for a match. Autumn 201234UCN Technology: IT/Computer Science

35 Method lookup Polymorphism and overriding. The ‘first’ version found (starting at the bottom of the hierarchy) is used. Autumn 201235UCN Technology: IT/Computer Science

36 Method lookup summary The variable is accessed. The object stored in the variable is found. The class of the object is found. The class is searched for a method match. If no match is found, the superclass is searched. This is repeated until a match is found, or the class hierarchy is exhausted. Overriding methods take precedence. Autumn 201236UCN Technology: IT/Computer Science

37 Call to base in methods Overridden methods are hidden...... but we often still want to be able to call them. An overridden method can be called from the method that overrides it. –base.Method(...) –Compare with the use of base in constructors. Autumn 201237UCN Technology: IT/Computer Science

38 Defining and Calling an overridden method public class CD : Item {... public override void Print() { base.Print(); --- }... } public class Item {... public virtual void Print() { --- }... } Autumn 201238UCN Technology: IT/Computer Science

39 Autumn 2012UCN Technology: IT/Computer Science39 Inheritance in C# Every method and property is inherited – constructors are not. private members are inherited, but not directly accessible in the subclass. Every protected member of the base class is visible in subclasses, but hidden from other parts of the program. Members may be added in the subclass. Multiple inheritance is not supported (by classes). In C# every class inherits from Object.

40 Autumn 2012UCN Technology: IT/Computer Science40 OO-Principles -inheritance Supports code-reuse. Existing classes may be extended through inheritance. Inheritance is to used as type specialisation, that is: we are modelling an “is-a” relationship between super- and subclass. For instance: CheckAccount is an Account, a special kind of account, but an account. So when we want to add specialised functionality to our system, inheritance may used by adding specialised classes. E.g.: CheckAccount may inherit Account.

41 Autumn 2012UCN Technology: IT/Computer Science41 OO-Principles -inheritance Terminology: baseclass/superclass – subclass. Inheritance is to be used as specialisation/generalisation. Inheritance models an “is-a” relationship between super- and subclass. –A subclass is type compatible with the superclass: CheckAccount c = new CheckAccount(); if (c is Account) -- yields true, if CheckAccount inherits Account The “is-a” relation is transitive.

42 Autumn 2012UCN Technology: IT/Computer Science42 Example: On Employee there is a method GiveBonus() which may have different implementations in the superclass and in the subclasses.

43 Autumn 2012UCN Technology: IT/Computer Science43 Inheritance - Constructors The base-part of a subclass is initialised by the call base(param-liste) This call is executed as the first step in executing the constructor of the subclass :base(param-liste) is placed immediately after the method-heading of the constructor (C++ syntax) If you don’t provide a default constructor (a constructor with no parameters) a default constructor is generated by the compiler. This will be called implicitly when an object of the subclass is created.

44 Autumn 2012UCN Technology: IT/Computer Science44 Inheritance - redefining methods A method inherited from the base-class may be redefined (“overridden”) in the sub-class. For instance the Withdraw-method on Account/CheckAccout. In C# the must be specified “virtual” in the base-class and “override” in sub-class. The method in the sub-class has the same signature (name and parameter list) and the same return type as the method in the base-class. In the sub-class the redefined method in the base-class may be called using base.methodName();

45 Autumn 2012UCN Technology: IT/Computer Science45 Inheritance - polymorphism All reference variables in C# may refer to objects of subtypes. In the case of virtual methods it is first at execution time it is determined which method exactly is to be called. The method called is the one defined on the object that the reference currently is referring to. This is called dynamic binding – the call is bound to an actual code segment at runtime (dynamically).

46 Autumn 2012UCN Technology: IT/Computer Science46 Polymorphism/Dynamic Binding The way it used to be: Employee programmer = new Employee(“H. Acker","Programmer",22222); Static type = Dynamic type Static method call Static type Dynamic type Using polymorphism:: Employee boss = new Manager(”Big Boss",”CEO",52525, 500); Dynamic type must be the same or a sub-type of the static type. The compiler checks method-calls on the static type. Runtime the call is bonded to the dynamic type (dynamic binding). Dynamic binding requires methods to be specified virtual in the base-class and explicitly overridden in the sub-classes. Dynamic type Static type

47 Autumn 2012UCN Technology: IT/Computer Science 47 Example Let’s look at the implementation of the model from earlier source Now: Employees at the cantina get double bonus.

48 Autumn 2012UCN Technology: IT/Computer Science48 Inheritance - design considerations If we need a class to hold a list of employees, and it should be possible to add employees at the end of list, but nowhere else. Should we inherit Array or ArrayList or…? We are not to inherit at all!!! But use delegation. Inheritance is not to be used senselessly trying to reuse code! Inheritance is to be seen as sub typing! Inheritance models “is-a” relationships. Code-reuse is obtainable by using existing classes (composition, delegation etc.)

49 Autumn 2012UCN Technology: IT/Computer Science49 Inheritance - abstract classes A class that defines one or more methods that are not implemented is called abstract. And the non-implemented methods are specified abstract. An abstract class can not be instantiated. It can only serve as base-class. An abstract class can only be used as static type, not dynamic type for object. Abstract methods must be implemented in the sub- classes. Otherwise the subclass itself becomes abstract. So an abstract method defines or specifies functionality (but does not implement) what must be implemented in the subclasses. Constructors in an abstract class are only used by the constructors in the subclasses

50 Interfaces An interface may be seen as a purely abstract class. –Interface: only method signatures, no implementation! (All methods are abstract) An interface represents a design. Example: –An interface to Employee: interface IEmployee { void GiveBonus(double amount); string Name { get; set; } double Salery { get; set; } string ToString(); } Autumn 201250UCN Technology: IT/Computer Science

51 Why use interfaces? Formalise system design before implementation –especially useful with large systems. Contract-based programming –the interface represents the contract between client and object. Low coupling! –decouples specification and implementation. –facilitates reusable client code. –client code will work with both existing and future objects as long as the interface is not changed. Multiple inheritance –A class may implement several interfaces, but only inherit one class. (No competing implementations). Autumn 201251UCN Technology: IT/Computer Science

52 Autumn 2012UCN Technology: IT/Computer Science52 Example/Exercise: German Student ExerciseGermanStudents.pdf

53 Autumn 2012UCN Technology: IT/Computer Science53 C# - When are objects equal? Classes ought to override the Equals-method inherited from Object public class Customer {. public override bool Equals(object obj) { Customer other; if ((obj == null) || (!(obj is Customer))) return false; // surely not equal other = (Customer) obj; // typecast to gain access return this.id == other.id; // equal, if ids are... }


Download ppt "Session 2: OOP in C# OOP in C#: –Object Interaction. –Inheritance and Polymorphism. Autumn 20121UCN Technology: IT/Computer Science."

Similar presentations


Ads by Google