cis 500
play

CIS 500 Last time, we talked about encoding objects in the typed - PowerPoint PPT Presentation

Object Encodings CIS 500 Last time, we talked about encoding objects in the typed lambda calculus with Software Foundations records, recursion, references and subtyping. We have a litte more to talk about this topic, but


  1. ✬ ✩ ✬ ✩ Object Encodings CIS 500 Last time, we talked about encoding objects in the typed lambda calculus with Software Foundations records, recursion, references and subtyping. We have a litte more to talk about this topic, but let’s work through an Fall 2005 example to see where we are. Novemeber 30 ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 1 CIS 500, Novemeber 30 2 ✬ ✩ ✬ ✩ Example from last time SetCounter = {get:Unit → Nat, set:Nat → Unit, inc:Unit → Unit}; CounterRep = {x:Ref Nat}; class SetCounter { setCounterClass = protected int x = 1; λ r:CounterRep. int get() { return x; } λ this:SetCounter. void set(int i) { x = i; return; } {get = λ _:Unit. !(r.x), void inc() { this.set(this.get() + 1); return; } set = λ i:Nat. r.x:=i, } inc = λ _:Unit. this.set (succ(this.get unit))}; class InstrCounter extends SetCounter { newSetCounter = protected int a = 0; λ _:Unit. let r = {x=ref 1} in void set(int i) { a++; super.set(i); return; } fix (setCounterClass r); int accesses() { return a; } } ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 3 CIS 500, Novemeber 30 4

  2. ✬ ✩ ✬ ✩ InstrCounter = {get:Unit → Nat, set:Nat → Unit, inc:Unit → Unit, accesses:Unit → Nat}; InstrCounterRep = {x:Ref Nat, a:Ref Nat}; One more refinement... instrCounterClass = λ r:InstrCounterRep. λ this:InstrCounter. let super = setCounterClass r this in {get = super.get, set = λ i:Nat. (r.a:=succ(!(r.a)); super.set i), inc = super.inc, accesses = λ _:Unit. !(r.a)}; newInstrCounter = λ _:Unit. let r = {x=ref 1, a=ref 0} in fix (instrCounterClass r); ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 5 CIS 500, Novemeber 30 6 ✬ ✩ ✬ ✩ A small fly in the ointment To see why this diverges, consider a simpler example: ff = λ f:Nat → Nat. The implementation we have given for instrumented counters has a problem let f ′ = f in because calling the object creation function λ n:Nat. 0 newInstrCounter = = ⇒ ff : (Nat → Nat) → (Nat → Nat) λ _:Unit. let r = {x=ref 1, a=ref 0} in Now: fix (instrCounterClass r); fix ff ff (fix ff) → − will cause the evaluator to diverge! let f ′ = (fix ff) in λ n:Nat. 0 → − Intuitively (see TAPL for details), the problem is the “unprotected” use of let f ′ = ff (fix ff) in λ n:Nat. 0 → − this in the call to setCounterClass in instrCounterClass : let f ′ = (let f ′ = (fix ff) in λ n:Nat. 0) in λ n:Nat. 0 → − instrCounterClass = uh oh... → λ r:InstrCounterRep. − λ this: InstrCounter. let super = setCounterClass r this in ... ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 7 CIS 500, Novemeber 30 8

  3. ✬ ✩ ✬ ✩ One possible solution Similarly: instrCounterClass = Idea: “delay” this by putting a dummy abstraction in front of it... λ r:InstrCounterRep. setCounterClass = λ this: Unit → InstrCounter. λ r:CounterRep. λ _:Unit. λ this: Unit → SetCounter. let super = setCounterClass r this unit in λ _:Unit. {get = super.get, set = λ i:Nat. (r.a:=succ(!(r.a)); super.set i), {get = λ _:Unit. !(r.x), set = λ i:Nat. r.x:=i, inc = super.inc, inc = λ _:Unit. (this unit).set(succ((this unit).get unit))}; accesses = λ _:Unit. !(r.a)}; = ⇒ setCounterClass : CounterRep → (Unit → SetCounter) → (Unit → SetCounter) newInstrCounter = λ _:Unit. let r = {x=ref 1, a=ref 0} in newSetCounter = fix (instrCounterClass r) unit; λ _:Unit. let r = {x=ref 1} in fix (setCounterClass r) unit; ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 9 CIS 500, Novemeber 30 10 ✬ ✩ ✬ ✩ Success Success (?) This works, in the sense that we can now instantiate instrCounterClass This works, in the sense that we can now instantiate instrCounterClass (without diverging!), and its instances behave in the way we intended. (without diverging!), and its instances behave in the way we intended. However, all the “delaying” we added has an unfortunate side effect: instead of computing the “method table” just once, when an object is created, we will now re-compute it every time we invoke a method! Section 18.12 in TAPL shows how this can be repaired by using references instead of fix to “tie the knot” in the method table. ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 11 CIS 500, Novemeber 30 11-a

  4. ✬ ✩ ✬ ✩ Multiple representations All the objects we have built in this series of examples have type Counter . But their internal representations vary widely. Recap ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 12 CIS 500, Novemeber 30 13 ✬ ✩ ✬ ✩ Encapsulation Subtyping An object is a record of functions, which maintain common internal state via a Subtyping between object types is just ordinary subtyping between types of shared reference to a record of mutable instance variables. records of functions. This state is inaccessible outside of the object because there is no way to name Functions like inc3 that expect Counter objects as parameters can (safely) be it. (Instance variables can only be named from inside the methods.) called with objects belonging to any subtype of Counter . ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 14 CIS 500, Novemeber 30 15

  5. ✬ ✩ ✬ ✩ Inheritance Classes are data structures that can be both extended and instantiated. We modeled inheritance by copying implementations of methods from superclasses to subclasses. Where we are... Each class � waits to be told a record r of instance variables and an object this (which should have the same interface and be based on the same record of instance variables) � uses r and this to instantiate its superclass � constructs a record of method implementations, copying some directly from super and implementing others in terms of this and super . The this parameter is “resolved” at object creation time using fix . ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 16 CIS 500, Novemeber 30 17 ✬ ✩ ✬ ✩ The essence of objects What’s missing � Dynamic dispatch The peculiar status of classes (which are both run-time and compile-time things) � Encapsulation of state with behavior Named types with declared subtyping � Behavior-based subtyping Recursive types � Inheritance (incremental definition of behaviors) Run-time type analysis (casting, etc.) � Access of super class (...lots of other stuff) � “Open recursion” through this ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 18 CIS 500, Novemeber 30 19

  6. ✬ ✩ ✬ ✩ Models in General No such thing as a “perfect model” — The nature of a model is to abstract away from details! So models are never just “good”: they are always “good for some specific set of Modeling Java purposes.” ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 20 CIS 500, Novemeber 30 21 ✬ ✩ ✬ ✩ Models of Java Featherweight Java Lots of different purposes − → lots of different kinds of models Purpose: model the “core OO features” and their types and nothing else. � Source-level vs. bytecode level History: � Large (inclusive) vs. small (simple) models � Originally proposed by a Penn PhD student (Atsushi Igarashi) as a tool � Models of type system vs. models of run-time features (not entirely for analyzing GJ (“Java plus generics”) separate issues) � Since used by many others for studying a wide variety of Java features and � Models of specific features (exceptions, concurrency, reflection, class proposed extensions loading, ...) � Models designed for extension ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 22 CIS 500, Novemeber 30 23

  7. ✬ ✩ ✬ ✩ Things left out Things left out � Reflection, concurrency, class loading, inner classes, ... � Reflection, concurrency, class loading, inner classes, ... � Exceptions, loops, ... ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 24 CIS 500, Novemeber 30 24-a ✬ ✩ ✬ ✩ Things left out Things left out � Reflection, concurrency, class loading, inner classes, ... � Reflection, concurrency, class loading, inner classes, ... � Exceptions, loops, ... � Exceptions, loops, ... � Interfaces, overloading, ... � Interfaces, overloading, ... � Assignment (!!) ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 24-b CIS 500, Novemeber 30 24-c

  8. ✬ ✩ ✬ ✩ Things left in Example � Classes and objects class A extends Object { A() { super(); } } � Methods and method invocation class B extends Object { B() { super(); } } � Fields and field access � Inheritance (including open recursion through this ) class Pair extends Object { Object fst; � Casting Object snd; Pair(Object fst, Object snd) { super(); this.fst=fst; this.snd=snd; } Pair setfst(Object newfst) { return new Pair(newfst, this.snd); } } ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 25 CIS 500, Novemeber 30 26 ✬ ✩ ✬ ✩ Conventions For syntactic regularity... � Always include superclass (even when it is Object ) Formalizing FJ � Always write out constructor (even when trivial) � Always call super from constructor (even when no arguments are passed) � Always explicitly name receiver object in method invocation or field access (even when it is this ) � Methods always consist of a single return expression � Constructors always � Take same number (and types) of parameters as fields of the class � Assign constructor parameters to “local fields” � Call super constructor to assign remaining fields � Do nothing else ✫ ✪ ✫ ✪ CIS 500, Novemeber 30 27 CIS 500, Novemeber 30 28

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend