Lab 4: Inheritance & Polymorphism

Quick Recap from Lab 3

Understanding OOP by comparing it with other programming paradigms

OOP Principles

OOP Principles in other paradigms

The 4 OOP principles aren't unique to OOP

OOP Principles in other paradigms

The 4 OOP principles aren't unique to OOP

Abstraction is a very generic concept that is more than just the implementation you see in Java
(i.e. interfaces and abstract classes is only one way to define the level of abstraction to work at)

Encapsulation is actually pretty omnipresent:

OOP Principles in other paradigms

The 4 OOP principles aren't unique to OOP

  1. Refer to this for a good 3 minutes intro of functional programming, with code examples
  2. Then read this to understand what a closure is.
  3. Finally, read this to see how closures are related to inheritance.

Essentially, given a function A that returns function B, closure refers to the local variables defined / used in function B that persists although we have already exited from function A.

With closures, we can 'inherit' prior states / attributes and functions that have been defined and used in another function.

OOP Principles in other paradigms

The 4 OOP principles aren't unique to OOP

Polymorphism ≈ same message sent (e.g. move()), each do different stuff (e.g. fly, swim, walk)

This is achieved in Java via method overriding: subclass redefines methods defined in superclass.
But it isn't the only way to do it.

In method overloading (e.g Python), you can also create 1 function that will do different things.
By defining the method with default keyword arguments, you can call functions with varying number of arguments and do different things.

Value of OOP and when to use it

Lab 4 Deliverables

Submit 1 .zip file to NTULearn (under ‘Assignments’)

References and Additional Readings

This slide deck was created using deck.js and exported via decktape.
It's no longer maintained, but it's still usable and easy to pick up via examples.
(all you need is HTML - with CSS and JS, you can make even better slides - it supports Markdown too)

You'll see an example using reveal.js for Lab 5 :)

A large part of the Lab 3 and Lab 4 notes are built on top of issues mentioned here - it is worth a read.

/