Implementing ObjectOriented Languages - PowerPoint PPT Presentation

1 / 8
About This Presentation
Title:

Implementing ObjectOriented Languages

Description:

class Vehicle extends Object { var position := start ... class C extends B { method f() = (g(); print('3' ... class E extends A { method g() = (f(); print('5' ... – PowerPoint PPT presentation

Number of Views:44
Avg rating:3.0/5.0
Slides: 9
Provided by: richard863
Category:

less

Transcript and Presenter's Notes

Title: Implementing ObjectOriented Languages


1
Implementing Object-Oriented Languages

2
In the beginning
  • Dahl and Nygaards Simula-67 language introduced
    the notion of classes, objects, single
    inheritance, static methods, instance testing,
    typecase, and the prefix technique to implement
    static single inheritance. In addition, it had
    coroutines and garbage collection.
  • Ole-Johan Dahl and Kristen Nygaard received the
    2001 ACM Turing Award.

3
New declarations for Object-Tiger
  • dec ? classdec
  • classdec ? class class-id extends class-id
    classfield
  • classfield ? vardec
  • classfield ? method
  • method ? method id(tyfields) exp
  • method ? method id(tyfields) type-id exp

4
New expression syntax
  • exp ? new class-id
  • ? lvalue . id()
  • ? lvalue . id(exp, exp)

5
Object-Tiger example
let start 10 class Vehicle extends Object
var position start method
move (int x) position position x)
class Car extends Vehicke var
passengers 0 method await (v Vehicle)
if (v.position lt position)
then v.move(position - v.position)
else self.move(10) class Truck
extends Vehicle method move (int x)
if x lt 55 then position position
x var t new Truck var c new
Car var v Vehicle c
in c.passengers 2 c.move(60)
v.move(70) c.await(t) end
6
Example of data field inheritance
  • class A extends Object var a 0
  • class B extends A var b 0
  • var c 0
  • class C extends A var d 0
  • class D extends B var e 0

7
Method inheritance and overiding
  • class A extends Object var x 0
  • method f()
  • class B extends A method g()
  • class C extends B method g()
  • class D extends C var y 0
  • method f()
  • Consider static methods vs dynamic methods

8
Optimiaztion Analyzing method calls
  • class A extends Object method f() print(1)
  • class B extends A method g() (f()
    print(2))
  • class C extends B method f() (g()
    print(3))
  • class D extends C method g() (f()
    print(4))
  • class E extends A method g() (f()
    print(5))
  • class F extends A method g() (f()
    print(6))
Write a Comment
User Comments (0)
About PowerShow.com