The Object Oriented Programming Languages (OOPL). Done by: Tayeb El Alaoui Supervised by: Dr Driss Kettani.

Slides:



Advertisements
Similar presentations
Understand and appreciate Object Oriented Programming (OOP) Objects are self-contained modules or subroutines that contain data as well as the functions.
Advertisements

Introduction Class Notes How to Program in C++ By : dettle & dettle READING MATERIAL
History of Object Orientation. What is Object-Orientation? Programming is one of the most complicated and difficult of human activities. It helps a great.
CS 331 Programming LanguagesDate: 4/21/08 Object Oriented Programming Group Featuring: James Webber II Topics Include: OOPSmalltalk.
Chapter 1 Object-Oriented System Development
Object-Oriented PHP (1)
Reliability and Software metrics Done by: Tayeb El Alaoui Software Engineering II Course.
History of the language self Sandeep K Gude. History Designed by - David Ungar, Randall Smith Presented as "SELF: The Power of Simplicity", OOPLSA '87,
Object Oriented System Development with VB .NET
OOP in Java Nelson Padua-Perez Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
OBJECT ORIENTED PROGRAMMING What is Object Oriented Software? Software based on the creation of objects An object is a “black box” which receives and.
7M701 1 Class Diagram advanced concepts. 7M701 2 Characteristics of Object Oriented Design (OOD) objectData and operations (functions) are combined 
Principles of Object-oriented Programming Programming Language Paradigms August 26, 2002.
Object-Oriented Databases
ASP.NET Programming with C# and SQL Server First Edition
OOP in Java Fawzi Emad Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
Self: The Power of Simplicity David Ungar and Randall B. Smith Presenter: Jonathan Aldrich
CSCI-383 Object-Oriented Programming & Design Lecture 15.
Comparison of OO Programming Languages © Jason Voegele, 2003.
UFCEUS-20-2 : Web Programming Lecture 5 : Object Oriented PHP (1)
Programming Languages and Paradigms Object-Oriented Programming.
History of Object Orientation. What is Object-Orientation? Programming is one of the most complicated and difficult of human activities. It helps a great.
OBJECT ORIENTED DESIGN Mohammad Amin Kuhail M.Sc. (York, UK)  Introduction to Object Oriented Design & Analysis  University of Palestine  Faculty of.
C++ Programming. Table of Contents History What is C++? Development of C++ Standardized C++ What are the features of C++? What is Object Orientation?
OOPs Object oriented programming. Based on ADT principles  Representation of type and operations in a single unit  Available for other units to create.
Object Oriented Design and Programming Alan Goude Room: Sheaf 9323.
Object-Oriented Programming Languages (OOPLs) An Introduction.
 2003 Joel C. Adams. All Rights Reserved. Calvin CollegeDept of Computer Science(1/10) An Overview of Objects and the Java API Joel Adams and Jeremy Frens.
1 Chapter 10: Data Abstraction and Object Orientation Aaron Bloomfield CS 415 Fall 2005.
1 Programming Language History and Evolution In Text: Chapter 2.
 OOPLs  Help companies reduce complexity  Increase competition in open markets  Speeds up development  Improves maintenance, resusability, modifiability.
The Evolution of Programming Languages Day 3 Lecturer: Xiao Jia The Evolution of PLs1.
Guided Notes Ch. 9 ADT and Modules Ch. 10 Object-Oriented Programming PHP support for OOP and Assignment 4 Term project proposal C++ and Java Designer.
Introduction to Object Oriented Programming CMSC 331.
OOP Class Lawrence D’Antonio Lecture 3 An Overview of C++
Introduction to C++ Shirley Moore
SNPL1 Woochang Lim What (Variable) + How (Function) = Object Objects are the physical and conceptual things we find in the universe around us. Object-Oriented.
Object-Oriented Programming. An object is anything that can be represented by data in a computer’s memory and manipulated by a computer program.
Chapter 2: A Brief History Object- Oriented Programming Presentation slides for Object-Oriented Programming by Yahya Garout KFUPM Information & Computer.
Chapter 12 Support for Object oriented Programming.
Computer Programming 2 Why do we study Java….. Java is Simple It has none of the following: operator overloading, header files, pre- processor, pointer.
ITEC 3220A Using and Designing Database Systems Instructor: Gordon Turpin Course Website: Office: CSEB3020.
Introduction to c++ programming - object oriented programming concepts - Structured Vs OOP. Classes and objects - class definition - Objects - class scope.
Object-Oriented Programming Chapter Chapter
(1) ICS 313: Programming Language Theory Chapter 12: Object Oriented Programming.
OOPs Object oriented programming. Abstract data types  Representationof type and operations in a single unit  Available for other units to create variables.
ISBN Object-Oriented Programming Chapter Chapter
Principles of programming languages 10: Object oriented languages Isao Sasano Department of Information Science and Engineering.
Inheritance in Object-Oriented Programming Languages with an Emphasis on C++. Supervised by : Dr. Driss Kettani.
Introduction To OOP 1.0 Fundamentals Of Java Programming Language 2.0 Exception Handling 3.0 Classes, Inheritance And Polymorphism © 2011 | PN AZRINA.
A Survey of Object-Oriented Concept Oscar Nierstrasz.
Lecture 2 Intro. To Software Engineering and Object-Oriented Programming (2/2)
Copyright © 2009 Elsevier Chapter 9 :: Data Abstraction and Object Orientation Programming Language Pragmatics Michael L. Scott.
Cs205: engineering software university of virginia fall 2006 David Evans Object-Oriented Programming.
ISBN Chapter 12 Support for Object-Oriented Programming.
Object Oriented Programming in Java Habib Rostami Lecture 2.
Chapter 12: Support for Object- Oriented Programming Lecture # 18.
Object-Oriented Programming
Principles of programming languages 10: Object oriented languages
Chapter 9 :: Data Abstraction and Object Orientation
Inheritance and Polymorphism
OOP What is problem? Solution? OOP
INTRODUCTION TO OBJECT-ORIENTED PROGRAMMING (OOP) & CONCEPTS
Types of Programming Languages
C++.
Copyright © 2009 Elsevier Chapter 9 :: Data Abstraction and Object Orientation Programming Language Pragmatics Michael L. Scott.
Ada – 1983 History’s largest design effort
More Object-Oriented Programming
Parameter Passing Actual vs formal parameters
Java History, Editions, Version Features
Presentation transcript:

The Object Oriented Programming Languages (OOPL). Done by: Tayeb El Alaoui Supervised by: Dr Driss Kettani

Outline Introduction Team presentation Context presentation Subject presentation Simula Smalltalk Modula-3 Self

Outline Eiffel C++ Java Conclusion Importance of Object Oriented. Advantages of Object Oriented. Programmers interest.

Introduction Team presentation. Context presentation. Subject presentation

Team presentation Tayeb El Alaoui ( Junior student ) Amine Mestari ( senior student )

Context presentation To complete the requirements of our Software Engineering II course. To improve my communication skills. To be in accordance with what we are doing now in the course.

Subject presentation Definition of Object Orientedness: (from Rob Coronel in his book Database Systems ). Definition of Object (by Terry Montlick). two dozen major object-oriented programming languages in use today. This presentation only attempts to look at the meaning of ``Object Oriented'' as a property of Programming Languages.

Simula Creators: Developed at the Norvegian Computing Center by Kristen Nygaard and Ole-Johan Dahl. Influences: Algol 60. Features and design Start version: Activity-process based programming language. Last version: ``classes'' and ``objects''.

Simula Support for objects: Protected state, single inheritance for sub-typing and code sharing, partially abstract classes, method overriding, and nested closures. Drawback: No support for the dynamic dispatch.

Smalltalk Creators: Developed by Alan Kay, Dan Ingalls, and Adele Goldberg at Xerox PARC. Influences B220 Tapes, Sketchpad, Simula, and Lisp. Features and design: It is is an untyped, class based language.

Smalltalk Instance methods are kept locally to each object and can refer to both the class variables and the instance variables. All methods are public, while all attributes are private. Single inheritance, abstract classes, method overriding. Inheritance: code sharing, but also specialization of objects.

Modula-3 Creators Designed by Luca Cardelli, Jim Donahue, Mick Jordan, Bill Kalsow, Greg Nelson. Influences Modula-2+ (and from it: Modula-2, Mesa, Cedar). Features and Design It is a class based language in which class names act as type names.

Modula-3 There are no explicit type definitions or declarations. Class definitions are ``partial opaque'‘. Single Inheritance is provided as a means of type specialization Code reuse and Abstract Classes. Generic Modules for source code reuse. Modula-3 is strongly typed, with no automatic conversion, or type inference.

Self Creators David Ungar and Randall Smith. Influences Smalltalk. Features and Design It is a Classless Language, which uses prototype objects, and cloning to construct new objects.

Self There are no Static types, or type declarations required. All operations are implemented as messages. Every object is composed entirely of slots. Each slot of an object can be thought of as a memory address Inheritance, code sharing and dynamic dispatch are all provided via slots, messages, and cloning.

Eiffel Creators: Eiffel was designed by Bertrand Meyer at Interactive Software Engineering. Influences: Simula67. Features and design: It is a Class based language, in which the definition of "Type'' and ''Class'' are identical.

Eiffel Multiple inheritance. Code reuse. It allows the programmer to not only Redefine the implementation of particular features, but also to modify the Client list of inherited features. It provides Assertions in the form of Invariants over objects.

C++ Creators: Bjarne Stroustrup. Influences: C, Simula, and Cpre. Features and design: It is a class based language, designed to allow the programmer very low level control over object structure and access.

C++ Virtual (abstract) functions and virtual classes. Public/private/protected access control over individual member functions and attributes. Friend classes. Multiple inheritance (for code sharing) Method overloading and exceptions.

Java It is a Class based language. Creators: Developed by by James Gosling, Bill Joy, and Guy Steele at Sun Microsystems. Influences: Modula-3, C++, and Lisp. Features and design: Partial abstract classes.

Java Single and multiple inheritance. Close ties with the Internet and Web browsers. Portable language that can run on any web- enabled computer. No pointers. It has garbage collection. Multiple levels of implementation hiding.  Java is the latest pure OOPL.

Conclusion Object-oriented programming offers a new and powerful model for writing computer software. It improves the maintenance, reusability, and modifiability of a software. Major shift in thinking by programmers.