CSE 452: Programming Languages. Previous Lecture. From ADTs to OOP. Data Abstraction and Object-Orientation

Similar documents
Chapter 11. Categories of languages that support OOP: 1. OOP support is added to an existing language

CPS 506 Comparative Programming Languages. Programming Language

Lecture 13: Object orientation. Object oriented programming. Introduction. Object oriented programming. OO and ADT:s. Introduction

Object-oriented Programming. Object-oriented Programming

Concepts of Programming Languages

G Programming Languages - Fall 2012

DATA TYPES. CS 403: Types and Classes DATA TYPES (CONT D)

COSC252: Programming Languages: Abstraction and OOP. Jeremy Bolton, PhD Asst Teaching Professor. Copyright 2015 Pearson. All rights reserved.

Data Abstraction. Hwansoo Han

Design issues for objectoriented. languages. Objects-only "pure" language vs mixed. Are subclasses subtypes of the superclass?

Lecture Notes on Programming Languages

Object-Oriented Languages and Object-Oriented Design. Ghezzi&Jazayeri: OO Languages 1

Chapter 13 Object Oriented Programming. Copyright 2006 The McGraw-Hill Companies, Inc.

Object Oriented Paradigm Languages

Object Oriented Programming in Java. Jaanus Pöial, PhD Tallinn, Estonia

M301: Software Systems & their Development. Unit 4: Inheritance, Composition and Polymorphism

G Programming Languages Spring 2010 Lecture 9. Robert Grimm, New York University

OBJECT ORIENTED PROGRAMMING USING C++ CSCI Object Oriented Analysis and Design By Manali Torpe

Outline. Java Models for variables Types and type checking, type safety Interpretation vs. compilation. Reasoning about code. CSCI 2600 Spring

Introduction to Object-Oriented Programming

OOPS Viva Questions. Object is termed as an instance of a class, and it has its own state, behavior and identity.

10. Abstract Data Types

CMSC 132: Object-Oriented Programming II

CMSC 132: Object-Oriented Programming II

Chapter 11. Abstract Data Types and Encapsulation Concepts

Graphical Interface and Application (I3305) Semester: 1 Academic Year: 2017/2018 Dr Antoun Yaacoub

CSE 307: Principles of Programming Languages

Argument Passing All primitive data types (int etc.) are passed by value and all reference types (arrays, strings, objects) are used through refs.

ITI Introduction to Computing II

VALLIAMMAI ENGINEERING COLLEGE

Inheritance and Interfaces

Lecture 23: Object Lifetime and Garbage Collection

Programming Languages: Lecture 11

Inheritance. Transitivity

ITI Introduction to Computing II

Inheritance, and Polymorphism.

CS-202 Introduction to Object Oriented Programming

Chapter 11. Abstract Data Types and Encapsulation Concepts ISBN

AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS

Implementing Subprograms

CSC 533: Organization of Programming Languages. Spring 2005

Instantiation of Template class

Chapter 10 :: Data Abstraction and Object Orientation

Programming Languages and Techniques (CIS120)

Chapter 5 Names, Binding, Type Checking and Scopes

Day 4. COMP1006/1406 Summer M. Jason Hinek Carleton University

Properties of an identifier (and the object it represents) may be set at

Subtyping (Dynamic Polymorphism)

CS 6456 OBJCET ORIENTED PROGRAMMING IV SEMESTER/EEE

Programming Languages & Paradigms PROP HT Course Council. Subprograms. Meeting on friday! Subprograms, abstractions, encapsulation, ADT

Inheritance and Substitution (Budd chapter 8, 10)

Object Oriented Paradigm

Java Object Oriented Design. CSC207 Fall 2014

2. The object-oriented paradigm!

Compaq Interview Questions And Answers

Chapter 9 :: Data Abstraction and Object Orientation

Abstract data types &

Abstract Data Types & Object-Oriented Programming

Get Unique study materials from

CS 520 Theory and Practice of Software Engineering Fall 2018

What are the characteristics of Object Oriented programming language?

Subprograms. Copyright 2015 Pearson. All rights reserved. 1-1

C++ Important Questions with Answers

Weiss Chapter 1 terminology (parenthesized numbers are page numbers)

Chapter 10 Object-Oriented Programming

Inheritance and Polymorphism

Lecture 15: Object-Oriented Programming

Object Oriented Programming is a programming method that combines: Advantage of Object Oriented Programming

Java Basics. Object Orientated Programming in Java. Benjamin Kenwright

Programming Languages 2nd edition Tucker and Noonan"

A declaration may appear wherever a statement or expression is allowed. Limited scopes enhance readability.

Abstract Data Types and Encapsulation Concepts

Chapter 5. Names, Bindings, and Scopes

Absolute C++ Walter Savitch

I BCS-031 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination. June, 2015 BCS-031 : PROGRAMMING IN C ++

C++ Inheritance and Encapsulation

Today s lecture. CS 314 fall 01 C++ 1, page 1

Computer Science II (20073) Week 1: Review and Inheritance

Agenda. Objects and classes Encapsulation and information hiding Documentation Packages

CS260 Intro to Java & Android 03.Java Language Basics

CS 251 Intermediate Programming Inheritance

STRUCTURING OF PROGRAM

Inheritance. Inheritance allows the following two changes in derived class: 1. add new members; 2. override existing (in base class) methods.

OBJECT ORIENTED PROGRAMMING USING C++

CMSC 4023 Chapter 9. Fundamentals of Subprograms Introduction

OOPs Concepts. 1. Data Hiding 2. Encapsulation 3. Abstraction 4. Is-A Relationship 5. Method Signature 6. Polymorphism 7. Constructors 8.

Fundamentals of Programming Languages

Java: introduction to object-oriented features

OBJECT ORİENTATİON ENCAPSULATİON

CS 520 Theory and Practice of Software Engineering Fall 2017

Example: Count of Points

Data Structures (list, dictionary, tuples, sets, strings)

IT101. Inheritance, Encapsulation, Polymorphism and Constructors

CS 536 Introduction to Programming Languages and Compilers Charles N. Fischer Lecture 11

Topics. Modularity and Object-Oriented Programming. Dijkstra s Example (1969) Stepwise Refinement. Modular program development

CS304 Object Oriented Programming Final Term

Inheritance. OOP: Inheritance 1

Chapter 10 Classes Continued. Fundamentals of Java

Subprograms. Bilkent University. CS315 Programming Languages Pinar Duygulu

Casting -Allows a narrowing assignment by asking the Java compiler to "trust us"

Transcription:

CSE 452: Programming Languages Data Abstraction and Object-Orientation Previous Lecture Abstraction Abstraction is the elimination of the irrelevant and the amplification of the essential Robert C Martin Example: Car To the driver, the car is a steering wheel, gas pedal, brake, and either an automatic or manual transmission. Everything else is largely irrelevant to the driver of a car Abstraction in Programming Languages Process Abstraction => Subprograms Data Abstraction => Abstract Data Types 2 From ADTs to OOP Encapsulation Grouping of data and operations of logically related types E.g., Stack data structure Data: list of elements, index to the top element of the list Operations: create, push, pop, top, isempty Abstract Data Types (ADTs) Encapsulation + Information Hiding (using access control) Object-Oriented Programming (OOP) Motivation Inheritance Dynamic Binding of Method Calls (Polymorphism) 3 1

Object-Oriented Programming (OOP) Concept of OOP has its roots in SIMULA 67 Not fully developed until Smalltalk 80 An object-oriented language must provide support for Abstract data types Inheritance Dynamic binding of method calls to methods 4 Motivation for OOP Observations of mid-late 1980s Software reuse may increase productivity ADTs provide encapsulation and access controls, but are still difficult to reuse Not flexible Often requires minor modifications to old types e.g., Square versus Rectangle objects In many cases, modifications require changes to client programs ADTs are independent of each other Cannot organize them according to parent-child or sibling relationships Inheritance solves both problems reuse ADTs after minor changes define related classes in a hierarchical structure 5 Basic Definitions of OOP ADTs are often called classes that define format of object (instance variables = data representation) operations on objects (methods = functions) operations for creating/destroying objects Object-Oriented Design Calls to methods are sometimes called messages The entire collection of methods of an object is called its message protocol or message interface Account c; c.deposit(10); message Account Account Number SSN Balance Create() Deposit(amount) Withdraw(amount) Close() 6 2

Basic Definitions of OOP There are two kinds of variables in a class: Class variables one copy for the entire class (e.g., minimum balance) Instance variables one copy for each object There are two kinds of methods in a class: Class methods perform operations on the class, and possibly on objects of the class Instance methods perform operations on objects of the class 7 Object-Oriented Languages Pure OOP languages Smalltalk OOP is added to an existing language C++ (also supports procedural and data-oriented programming) Ada 95 (also supports procedural and data-oriented programming) CLOS (also supports functional programming) Scheme (also supports functional programming) Languages designed for OOP, but still employ basic structure of earlier imperative languages Eiffel (not based directly on any previous language) Java (based on C++) 8 Inheritance superclass subclass Defining an ADT as a variant of another ADT, may reuse some/all of the entities of original ADT A class that inherits from another class is called a derived class or subclass The class from which another class inherits is called the parent class or superclass In the simplest case, a class inherits all entities (variables and methods) of its parent 9 3

Inheritance Inheritance can be complicated by access controls to encapsulated entities A class can hide entities from its clients (e.g., protected modifier) A class can hide entities from its subclasses (e.g., private modifier) Derived class can add new entities and modify inherited methods The new method is said to override the inherited version Derived class class GraphicalObject { protected object_type; private int x, y; public void draw() { public void moveto(int x, int y) { this.x = x; this.y = y; class line extends GraphicalObject { public void draw() { Override the method in the parent class 10 Inheritance Single vs. Multiple Inheritance Single: if the new class is a subclass of a single parent class Multiple: if the new class has more than one parent class Disadvantage of Inheritance Creates dependencies among classes Must be careful when making modifications to a class Conflicting requirements: abstract data types vs inheritance 12 Polymorphism polymorphic ( taking many forms ) operating on many objects of many forms (but same interface) Different kinds of polymorphisms Overloaded subprograms are ad hoc polymorphism Generic subprograms are parametric polymorphism In OOP, another kind of polymorphism due to dynamic binding of messages (calls) to method definitions 13 4

Polymorphism Variables of a parent class are allowed to reference objects of any of the subclasses of that class GraphicalObject obj; Line line; // a local variable // Line is a subclass of // GraphicalObject // some code that initializes obj and line obj = line; // ok If a method in GraphicalObject class is also present in the Line class, obj is bound to the method in the proper class dynamically Dynamic binding of method calls 14 import java.io.*; Polymorphism class A { int x = 1; public void showvalue() { System.out.println(x); class mainprogram { public static void main(string [] args) { A a = new A(); B b = new B(); a.showvalue(); b.showvalue(); class B extends A { int y = 2; public void showvalue() { System.out.println(y); a = b; a.showvalue(); 15 import java.io.*; class Shape { void draw() { Polymorphism class Circle extends Shape { void draw() { System.out.println("Drawing circle"); class Square extends Shape { void draw() { System.out.println("Drawing square"); class Rectangle extends Shape { void draw() { System.out.println("Drawing rectangle"); class anyshape { Shape s; public anyshape (Shape d) { super(); s = d; public void drawshape () { s.draw(); class buildshapes{ public static void main(string [] args) { Circle c = new Circle(); Rectangle r = new Rectangle(); Square s = new Square(); anyshape d; d = new anyshape(c); d.drawshape (); d = new anyshape(r); d.drawshape (); d = new anyshape(s ); d.drawshape (); 16 5

Abstract (Virtual) Class/Method Abstract (Virtual) method Includes only the protocol of a method but not the body class Shape : public WindowObject { public: Shape(SimpleWindow &w, const Position &p, const color c = Red); color GetColor() const; void SetColor(const color c); virtual void Draw(); // virtual function in C++ private: color Color; ; A class that include at least one abstract method is called an abstract class Abstract class cannot be instantiated because not all of its methods have bodies Subclass of an abstract class must provide implementations of all of the inherited abstract methods 17 Java interfaces Similar to class but no implementation No instance variables No method bodies Like Ada package specification A named collection of method definitions Multiple super-interfaces Interface Foo extends Printable, Drawable 18 Java interfaces When to use class vs. interface Class Printable void print() { /* default implementation */ Class Person extends Printable { void print() { /* overriding method */ interface Printable { void print(); Class Person implements Printable { void print() { /* body of method */ 19 6

Java interfaces Classes declare which interfaces they support Class can implement many interfaces Class Foo implements Drawable, Printable Many classes can support an interface Class Point implements Printable Class Person implements Printable 20 Java interfaces void foo (Printable p) {. p.print();.. With Printable as a class Actual parameter must be a subclass Must inherit the implementation of Printable Specify both interface and implementation With Printable as an interface Actual parameter must be an instance of a class that implements the Printable interface Specifies only interface Fewer constraints => more reusable 21 Design Issues The Exclusivity of Objects Everything is an object No distinction between predefined and user-defined classes Advantage elegance and purity Disadvantage Slow operations on simple objects (e.g., float) Include imperative style typing system for primitives but make everything else objects Advantage fast operations on simple objects and a relatively small typing system Disadvantage still some confusion because of the two type systems Need wrapper classes for nonobject types, so that some commonly needed operations can be sent to objects with nonobject type values E.g., in Java, INTEGER objects are wrappers for integer types 22 7

Design Issues Are Subclasses Subtypes? Does an is-a relationship hold between a derived class object and its parent class? If it holds, then all operations of the parent class can be applied to derived class Subtypes in Ada: Subtype Small_int is Integer range 100..100 A derived class is called a subtype if it has an is-a relationship with its parent class Subclass can only add variables/methods and override inherited methods in compatible ways Compatible means that the overriding method can replace the overridden method without causing type errors (e.g., having identical number of parameters, identical parameter types and return type) Disallows cases where entities in the parent class are not inherited by subclass 23 Design Issues Implementation and Interface Inheritance Interface inheritance If only the interface of the parent class is visible to the subclass Disadvantage - can result in inefficiencies Implementation Inheritance If both the interface and the implementation of the parent class are visible to the subclass Disadvantage - changes to the parent class require recompilation of subclasses, and sometimes even modification of subclasses 24 Design Issues Type Checking and Polymorphism Polymorphism may require dynamic type checking of parameters and the return value Dynamic type checking is costly and delays error detection If overriding methods are restricted to having the same parameter types and return type, then checking can be static Dynamic type checking is more expensive and delays type error detection 25 8

Design Issues Single and Multiple Inheritance Advantage of multiple inheritance Sometimes it is more convenient and valuable Disadvantage of multiple inheritance conflicting definitions (e.g., two or more superclasses define a print method) repeated inheritance: same class inherited more than once (temporally) Language and implementation complexity Potential inefficiency - dynamic binding costs more with multiple inheritance More complex dependencies among classes maintenance could be a problem A A A B C B C D D 26 Design Issues Allocation and Deallocation of Objects From where are objects allocated? If they all live in the heap, advantage is having a uniform method to create and access the objects Is deallocation explicit or implicit? If implicit, some method of storage reclamation is required, e.g., garbage collection Dynamic and Static Binding Should all binding of messages to methods be dynamic? Static bindings are faster 27 Overview of Smalltalk Smalltalk is a pure OOP language everything is an object all computation is through objects sending messages to objects it adopts none of the appearance of imperative languages The Smalltalk environment the first complete GUI system a complete system for software development all of the system source code is available to the user, who can modify it 28 9

Introduction to Smalltalk Expressions Four kinds 1. literals (numbers, strings, and keywords) 2. variable names (all variables are references) 3. message expressions 4. block expressions 29 Message Expressions Two parts: the receiver object and the message itself Message part specifies: the method and possibly some parameters Replies to messages are objects Multiple messages to the same object can be strung together, separated by semicolons 30 Messages Messages can be of three forms 1. Unary (no parameters) e.g., myangle sin (sends a message to the sin method of the myangle object) 2. Binary (one parameter, an object) e.g., 12 + 17 (sends the message +17 to the object 12; the object parameter is 17 and the method is + ) 3. Keyword (use keywords to organize the parameters) e.g., myarray at: 1 put: 5 (sends the objects 1 and 5 to the at:put: method of the object myarray ) 31 10

Methods General form: message_pattern [ temps ] statements a message pattern is like the formal parameters of a subprogram for unary messages, it is just the name for others, it lists keywords and formal names temps are just names -- Smalltalk is typeless! 32 Assignments Simplest form: name1? name2 It is simply a pointer assignment RHS can be a message expression e.g., index? index + 1 33 Blocks A sequence of statements, separated by periods, delimited by brackets e.g., [index? index + 1. sum? sum + index] A block specifies something, but doesn t do it To request the execution of a block, send it the unary message value e.g., [ ] value 34 11

Blocks (continued) If a block is assigned to a variable, Then it is evaluated by sending value to that variable e.g., addindex? [sum? sum + index] addindex value Blocks can have parameters, as in [:x :y statements] If a block contains a relational expression, Then it returns a Boolean object, true or false 35 Iteration Objects true and false have methods for building control constructs method whiletrue: may have a pretest logical loop. defined for all blocks that return Boolean objects. e.g., [count? 20] whiletrue [sum? sum + count. count? count + 1] 36 Iteration (continued) int timesrepeat: is defined for integers and can be used to build counting loops e.g., xcube? 1. 3 timesrepeat: [xcube? xcube * x] 37 12

Selection The Boolean objects have the method iftrue: iffalse:, which can be used to build selection e.g., total = 0 iftrue: [ ] iffalse: [ ] 38 Large-scale Features of Smalltalk Type checking and polymorphism all bindings of messages to methods is dynamic Process: search the object to which the message is sent for the method; if not found, then search the superclass, etc. because all variables are typeless, methods are all polymorphic 39 Large-scale Features of Smalltalk Inheritance all subclasses are subtypes (nothing can be hidden) all inheritance is implementation inheritance no multiple inheritance methods can be refined overriding. If you want to explicitly reference the superclass version, then the message should have the super prefix. 40 13

Overview of C++ C++ is an OO, imperative hybrid Designed starting from C Initially simply added facilities to support classes to take advantage of benefits of smalltalk features Syntax Methods called member functions Instance variables are called data members 41 Design C++ Language Design Organize language in classes (as SIMULA 97) No performance penalty with respect to C Sequential Additions Classes Virtual functions, Operator Overloading, Reference Types Multiple inheritance, abstract classes Templates, parameterized types, exception handling More a collection of ideas thrown together than the result of an overall language design plan. 42 General Characteristics of C++ Almost completely backward compatible with C Memory Allocation Static Stack-dynamic Heap allocated New Delete (no implicit reclamation) 43 14

Multiple Inheritance Inheritance Access Modes Public Private Member Function Access Modes Public Protected Private Friend 44 Inheritance (continued) Access Modes Build subclasses without subtypes, Example: class stack : private single_linked_list { public: stack(); void push(int value) { single_linked_list::insert_at_head(); ; int pop() { return single_linked_list::remove_at_head(); 45 Public, Protected, Private Inheritance class A { ; public: int i; protected: int j; private: int k; Class B : public A { //... ; Class C : protected A { //... ; Class D : private A { //... ; Class A declares 3 variables i is public to all users of class A j is protected, i.e., it can only be used by methods in class A or its derived classes k is private, i.e., it can only be used by methods in class A Class B inherits publicly from A i is again public to all users of class B j is again protected, i.e., it can be used by methods in class B or its derived classes Class C uses protected inheritance from A i is now protected in C, so the only users of class C that can access i are the methods of class C j is again protected, i.e., it can be used by methods in class C or its derived classes Class D uses private inheritance from A i and j are private in D, so users of D cannot access them, only methods of D itself 46 15

Java General Characteristics All data are objects except the primitive types All primitive types have wrapper classes that store one data value All objects are heap-dynamic, are referenced through reference variables, and most are allocated with new Inheritance Single inheritance only, but there is an abstract class category that provides some of the benefits of multiple inheritance (interface) An interface can include only method declarations and named constants public class Clock extends Applet implements Runnable 47 Ada 95 General Characteristics OOP was one of the most important extensions to Ada 83 Encapsulation container is a package that defines a tagged type A tagged type is one in which every object includes a tag to indicate during execution its type Tagged types can be either private types or records No constructors or destructors are implicitly called 48 Ada 95 package Person_Pkg is type Person is tagged private; procedure Display(P : in person); private type Person is tagged end Person_Pkg; record Name : String (1..30); end record; Address : String (1..30); Age : Integer; 49 16

Ada 95 Inheritance Subclasses are derived from tagged types New entities in a subclass are added in a record with PERSON_PKG; use PERSON_PKG; package STUDENT_PKG is type STUDENT is new PERSON with record GRADE_POINT_AVERAGE : FLOAT; GRADE_LEVEL : INTEGER; end record; procedure DISPLAY (ST: in STUDENT); end STUDENT_PKG; DISPLAY is being overriden from PERSON_PKG All subclasses are subtypes Single inheritance only, except through generics 50 Ada 95 Dynamic Binding Dynamic binding is done using polymorphic variables called classwide types e.g., for the tagged type PERSON, the classwide type is PERSON class Other bindings are static Any method may be dynamically bound 51 Eiffel General Characteristics Has primitive types and objects All objects get three operations, copy, clone, and equal Methods are called routines Instance variables are called attributes The routines and attributes of a class are together called its features Object creation is done with an operator (!!) Constructors are defined in a creation clause, and are explicitly called in the statement in which an object is created 52 17

Eiffel Inheritance The parent of a class is specified with the inherit clause Access control feature clauses specify access control to the entities defined in them Without a modifier, the entities in a feature clause are visible to both subclasses and clients With the child modifier, entities are hidden from clients but are visible to subclasses With the none modifier, entities are hidden from both clients and subclasses Inherited features can be hidden from subclasses with undefine Abstract classes can be defined by including the deferred modifier on the class definition 53 Eiffel Dynamic Binding Nearly all message binding is dynamic An overriding method must have parameters that are assignment compatible with those of the overriden method All overriding features must be defined in a redefine clause Access to overriden features is possible by putting their names in a rename clause Evaluation Similar to Java in that procedural programming is not supported and nearly all message binding is dynamic Elegant and clean design of support for OOP 54 Threads Java allows for some level of multiprocessing through threads. Threads are defined by the new Thread(object) command. The synchronized attribute (synchronized void startsort()) on multiple-method definitions prevents more than one of them from executing at a time, and thus avoids deadlock situations. 55 18

Threads -2 Created by the new command Executed by the run() method; started with start() Executes until the stop() method or run() completes execution Threads may suspend() and resume() execution. Synchronization: Use monitors with synchronized attribute: public synchronized void methodname(int value) {val= returned_value; 56 19