[PDF] [PDF] Advanced Concepts in Object-Oriented Programming - Harvard SEAS

Why not allow class C extends C1,C2, { } (and C≤C1 and C≤C2)? What everyone agrees: C++ has it and Java doesn' 



Previous PDF Next PDF





[PDF] Advanced Java Programming

Java is object-oriented language and as such the creation of new class instances (objects) is, probably, the most important concept of it Constructors are playing a  



[PDF] Advanced Java Concepts - Ruforum

14 jan 2021 · exam advanced java concepts additional questions from earlier parts of the java oop concepts and some of the advanced java tutorials which will help you 



[PDF] Advanced Concepts in Object-Oriented Programming - Harvard SEAS

Why not allow class C extends C1,C2, { } (and C≤C1 and C≤C2)? What everyone agrees: C++ has it and Java doesn' 



[PDF] Revision on Basic Java Concepts

CS244 Advanced Programming Applications Dr Walid Revision on Basic Java Concepts ➢Java class has static and non static methods(instance members)



[PDF] Teach Yourself Java in 21 Days - Carnegie Mellon University School

Week 3 finishes up with advanced topics, for when you start doing larger and more complex Java programs, or when you want to learn more: s On Day 15, you' ll 



[PDF] Introduction to Advanced Java Programming OverView of the Java

Advanced Class Modeling: Advanced Object and Class Concepts, Association Ends, N-Ary Association, Aggregation, abstract Classes, Multiple Inheritance, Metadata, Reification, Constraints, Derived data, Packages State Modeling: Events, States, Transitions and Conditions, state diagrams, state diagram behavior



[PDF] Java / Advanced Programming Concepts - OASIS

Java / Advanced Programming Concepts OO – Inheritance and Polymorphism ( oh, and Unit Testing too) In Java speak: CalculatorGUI extends JFrame



[PDF] Advanced Concepts in Programming Languages

Advanced Concepts in Programming Languages Advanced Concepts in Imperative Programming verification of Java, Haskell, and Prolog programs



[PDF] Advance Java Concepts Students Lab Manual - str-tnorg

Thank you for downloading advance java concepts students lab manual Maybe you have knowledge that, people have search hundreds times for their favorite 

[PDF] advanced css book

[PDF] advanced css tutorial with example pdf

[PDF] advanced css3 tutorial pdf free download

[PDF] advanced dance moves ballet

[PDF] advanced db2 sql queries

[PDF] advanced dos commands pdf

[PDF] advanced english class pdf

[PDF] advanced english expressions list

[PDF] advanced english grammar test pdf

[PDF] advanced english learning book pdf

[PDF] advanced english lesson plans pdf

[PDF] advanced english phrases 1

[PDF] advanced english phrases for spoken english

[PDF] advanced english phrases for writing

[PDF] advanced english phrases pdf

CS152: Programming Languages

Lecture 23 - Advanced Concepts in

Object-Oriented Programming

Dan Grossman

Spring 2011

Sofar...

The difference between OOP and "records of functions with shared private state" isdynamic-dispatch(a.k.a.late-binding)ofself (Informally) definedmethod-lookupto implement dynamic-dispatch correctly: use run-time tags or code-pointers

Now: Subclassing vs. subtyping

Then fancy stuff: multiple-inheritance, interfaces, static overloading, multiple dispatch Next lecture: Bounded polymorphism and classless OOPDan GrossmanCS152 Spring 2011, Lecture 232

Type-Safety in OOP

Should be clearer about what type-safety means...

"Not getting stuck" has meant "don"t apply numbers", "don"t add functions", "don"t read non-existent record fields", etc.? Pure OO has only method calls (and maybe field access)

Stuck if method-lookup fails (no method matches)

Stuck if method-lookup is ambiguous (no best match) So far only failure is receiver has no method with right name/arity

Dan GrossmanCS152 Spring 2011, Lecture 23

3Revisiting Subclassing is Subtyping

Recall we have been "confusing" classes and types:Cis a class and a type and ifCextendsDthenCis a subtype ofD Therefore, ifCoverridesm,thetypeofminCmust be a subtype of the type ofminD Just like functions, method-subtyping is contravariant arguments and covariant results? If code knows it has aC, it can call methods with "more" arguments and know there are "fewer" results

Dan GrossmanCS152 Spring 2011, Lecture 234

Subtyping and Dynamic Dispatch

We defined dynamic dispatch in terms of functions takingselfas an argument

But unlike other arguments,selfiscovariant!!?

Else overriding method couldn"t access new fields/methods Sound becauseselfmust be passed, not another value with the supertype This is the key reasonencodingOO in atypedλ-calculus requires ingenuity, fancy types, and/or run-time cost ?We won"t attempt it

Dan GrossmanCS152 Spring 2011, Lecture 235

More subtyping

With single-inheritance and the class/type confusion, we don"t get all the subtyping we want Example: Taking any object that has anmmethod fromint toint Interfaces help somewhat, but class declarations must stillsaythey implement an interface Object-typesbring the flexibility of structural subtyping to OOP With object-types, "subclassingimpliessubtyping"Dan GrossmanCS152 Spring 2011, Lecture 236

More subclassing

Breaking one direction of "subclassing = subtyping" allowed more subtyping (so more code reuse) Breaking the other direction ("subclassing does not imply subtyping") allows more inheritance (so more code reuse) Simple idea: IfCextendsDand overrides a method in a way that class P1 { ... Int get_x(); Bool compare(P1); ... } class P2 extends P1 { ... Bool compare(P2); ... }

But this isnotalways correct...

Dan GrossmanCS152 Spring 2011, Lecture 237

Subclass not a subtype

class P1 {

Int x;

Int get_x(){x}

Bool compare(P1 p) { self.get_x() == p.get_x() }

class P2 extends P1 {

Int y;

Int get_y(){y}

Bool compare(P2 p) { self.get_x() == p.get_x() &&

self.get_y() == p.get_y() } overriding unlike in Java or C++)

Dan GrossmanCS152 Spring 2011, Lecture 238

Subclass not a subtype

Can still inherit implementation (need not reimplement get_x)

We cannot always do this: what ifget_xcalled

self.compare? Possible solutions:

Re-typecheckget_xin subclass

Use a "Really Fancy Type System"

I see little use in allowing subclassing that is not subtyping But I see much use in understanding that typing is about interfaces and inheritance is about code-sharing

Dan GrossmanCS152 Spring 2011, Lecture 239

Whereweare

Summary of last few slides: Separating types and classes expands the language, but clarifies the concepts: Typing is about interfaces, subtyping about broader interfaces Inheritance (a.k.a. subclassing) is about code-sharing

Combining typing and inheritance restricts both

Most OO languages purposely confuse subtyping (about type-checking) and inheritance (about code-sharing), which is reasonble in practice

Dan GrossmanCS152 Spring 2011, Lecture 2310

Multiple Inheritance

Why not allowclass C extends C1,C2,...{...}

What everyone agrees: C++ has it and Java doesn"t

All we"ll do: Understand some basic problems it introduces and how interfaces get most of the benefits and some of the problems

Problem sources:

Class hierarchy is a dag, not a tree (not true with interfaces) Subtype hierarchy is a dag, not a tree (true with interfaces)

Dan GrossmanCS152 Spring 2011, Lecture 2311

Diamond Issues

IfCextendsC1andC2andC1,C2have a common superclass

D(perhaps transitively), our class hierarchy has a diamond

IfDhas a fieldf, shouldChave one fieldfor two?

IfDhas a methodm,C1andC2will have a clash

If subsumption is coercive (changing method-lookup), how we subsume fromCtoDaffects run-time behavior (incoherent) Diamonds are common, largely because of types likeObjectwith methods likeequals

Dan GrossmanCS152 Spring 2011, Lecture 2312

Multiple Inheritance, Method-Name Clash

IfCextendsC1andC2, which both define a methodm,what doesCmean?

Possibilities:

1.Reject declaration ofC(Too restrictive with diamonds)

2.RequireCto overridem(Possibly withdirected resends)

3."Left-side" (C1) wins (Must decide if upcast to "right-side"

(C2) coerces to useC2"smor not)

4.Cgets both methods (Now upcasts definitely coercive and

with diamonds we lose coherence)

5.Other? (I"m just brainstorming based on sound principles)

Dan GrossmanCS152 Spring 2011, Lecture 2313

Implementation Issues

This isn"t an implementation course, but many semantic issues regarding multiple inheritance have been heavily influenced by clever implementations In particular, accessing members ofselfvia compile-time offsets... ... which won"t work with multiple inheritance unless upcasts "adjust" theselfpointer That"s one reason C++ has different kinds of casts Better to think semantically first (how should subsumption affect the behavior of method-lookup) and implementation-wise second (what can I optimize based on the class/type hierarchy)

Dan GrossmanCS152 Spring 2011, Lecture 2314

Digression: Casts

A "cast" can mean many things (cf. C++).

At the language level:

upcast: no run-time effect until we get to static overloading downcast: run-time failure or no-effect conversion: key question is round-tripping "reinterpret bits": not well-defined

At the implementation level:

upcast: usually no run-time effect but see last slide downcast: usually only run-time effect is failure, but... conversion: same as at language level "reinterpret bits": no effect (by definition)

Dan GrossmanCS152 Spring 2011, Lecture 2315

Least Supertypes

Considerife

1 thene 2 elsee 3 (or in C++/Java,e 1 ?e 2 :e 3

We knowe

2 ande 3 must have the same type

With subtyping, they just need a common supertype

Should pick the least (most-specific) type

Single inheritance: the closest common ancestor in the class-hierarchy tree Multiple inheritance: there may be no least common supertype

Example:C1extendsD1,D2andC2extendsD1,D2

Solutions: Reject (i.e., programmer must insert explicit casts to pick a common supertype)

Dan GrossmanCS152 Spring 2011, Lecture 2316

Multiple Inheritance Summary

Method clashes (what does inheritingmmean)

Diamond issues (coherence issues, shared (?) fields)

Implementation issues (slower method-lookup)

Least supertypes (may be ambiguous)

Complicated constructs lead to difficult language design

Doesn"t necessarily mean they are bad ideas

Now discussinterfacesand see how (and how not) multiple interfaces are simpler than multiple inheritance...

Dan GrossmanCS152 Spring 2011, Lecture 2317

Interfaces

An interface isjust a (named) (object) type.Example: interface I { Int get_x(); Bool compare(I); }

Aclasscanimplementan interface. Example:

class C implements I {

Int x;

Int get_x() {x}

Bool compare(I i) {...} // note argument type

Requiringexplicit"implements" hinders extensibility, but simplifies type-checking (a little)quotesdbs_dbs17.pdfusesText_23