object oriented technologies

29
Object Oriented Technologies Tushar B Kute Assistant Professor in I.T. Sandip Institute of Technology & Research Centre, Nashik

Upload: tushar-b-kute

Post on 15-May-2015

5.550 views

Category:

Education


0 download

DESCRIPTION

The semonar given at, K.K. Wagh Polytechnic, Second Shift (Nashik) on 06/08/2011. Class: SY and TY IT Students. Name: Tushar B Kute, SITRC Nashik.

TRANSCRIPT

Page 1: Object Oriented Technologies

Object Oriented Technologies

Tushar B KuteAssistant Professor in I.T.Sandip Institute of Technology & Research Centre, Nashik

Page 2: Object Oriented Technologies

Programming Paradigms

Procedure Oriented Object Oriented

Page 3: Object Oriented Technologies

3R

Readability Reusability Reliability

Page 4: Object Oriented Technologies

Procedure Oriented Programming

Procedures / Functions are used to form a modular program.

For example: C Pascal Cobol

Page 5: Object Oriented Technologies

Example: C Program

#include<stdio.h>int main( ){

. . . . . . }void display( ){

. . . . . .}int addme(int a, int b){

. . . . . .}

Page 6: Object Oriented Technologies

Object Oriented Techniques

ADT Polymorphism Inheritance

Page 7: Object Oriented Technologies

Abstract Data Type

Denotes the essential characteristics of an object that distinguish it from all other kinds of things.

ADT = data representation + its operations

Information hiding Encapsulation

Page 8: Object Oriented Technologies

Abstract Data Type

state, implemented by attributes behaviour, implemented by

operation identity

Page 9: Object Oriented Technologies

Abstract Data Type

class object instance encapsulation method message protocol

Page 10: Object Oriented Technologies

Abstract Data Type

Class A class is a blueprint for creating objects. It is like a data type in traditional language.

Instance An instance is a particular element of a class. It is like a variable in traditional language.

Page 11: Object Oriented Technologies

Polymorphism

Monomorphism every values & variables is interpreted to be of one and only one type.

Polymorphism some variables may have more than one type.

Page 12: Object Oriented Technologies

Polymorphism

Binding

static or early bindingaddInt(x, y)addFloat(x, y)

dynamic or lateadd(x, y)

Page 13: Object Oriented Technologies

Polymorphism

universal polymorphism1. parametric (ex) generic function2. inclusion (ex) subtyping, inheritance mechanism

ad hoc. polymorphism1. overloading (ex) +2. coercion (ex) 3 + 4.5

Page 14: Object Oriented Technologies

Example:

int add (int a, int b) float add (float a, int b) float add (float a, float b)

int add (int a, int b, int c) float add (int a, float b, int c)

Page 15: Object Oriented Technologies

Inheritance

vehiclevehicle

landvehicle

landvehicle

watervehicle

watervehicle

airvehicle

airvehicle

carcar trucktruck canoecanoe submarinesubmarine jetjet rocketrocket

18-wheeler18-wheeler pickuppickup

Page 16: Object Oriented Technologies

Inheritance

Kind-of Part-of

Page 17: Object Oriented Technologies

Inheritance

A room is a part of a house.A kitchen is a kind of room.

A boat is a part of a fleet.A cruiser is a kind of a boat.

A child is a part of a family.A son is a kind of a child.

A word is a part of a sentence.A noun is a kind of a word.

Page 18: Object Oriented Technologies

Problem Solving using OOP

Behaviour of a system (otherwise the state of the system) is exposed through the change of some characteristics.

paint new color

Property name : surface-color

Property value ; green

Property name : surface-color

Property value ; red

The force that change surface-color is PAINT action

Page 19: Object Oriented Technologies

Class

Class Describes an object, description includes properties (attributes) and methods the object can perform

CD_Drive {

boolean _latchState

boolean _contentState

openLatch()

closeLatch()

insert()

eject()

}

Object

Description about CD-Driver

Each object consume its own space (Identity)

Page 20: Object Oriented Technologies

Abstraction

Class wraps necessary details of the object and expose few through interface

Interface or method is communication point. Interface or method can be invoked on an

object.

CD_Drive lg

CD_Drive segate

lg.openLatch();

Page 21: Object Oriented Technologies

Object Oriented Languages Objects are supported. Objects are organized into classes. Classes are organized into

hierarchies using inheritance. An object communicates by sending

messages to invoke the operations of other objects

Objects of varying types respond to the same message differently using polymorphism.

Page 22: Object Oriented Technologies

Object Oriented Programming Languages

First object-oriented language, Simula at 1967.

Proved by Smalltalk at 1976. C++, Effiel, Common Lisp, Object-

Pascal, ... appeared at late 1970s. Object-oriented programming

environments matured at 1980s. User interface (1980s) : WIMP,

Dynabook, Apple Lisa and Macintosh, Window systems..

Page 23: Object Oriented Technologies

Object Oriented Programming Languages

Java appeared at 1995 C# by Microsoft at 2001

Page 24: Object Oriented Technologies

Object Oriented Languages

Ada CLU C++ Modula-2 Objective-C Smalltalk CLOS (Lisp) Java C#

Page 25: Object Oriented Technologies

Object Oriented Languages

C++

AT&T designed by Bjarne Stroustrup ANSI-C compatible OOP

Page 26: Object Oriented Technologies

Object Oriented Languages

JAVA

Designed at SUN by James Gosling and team

C/C++ syntax compatible True OOP ByteCode JVM

Page 27: Object Oriented Technologies

Industrial Importance of OOT

Java J2SE J2EE J2ME

Microsoft Visual Studio.net PHP

Page 28: Object Oriented Technologies

Market Share in I.T.

62 percent technologies are based on Java

22 percent are on .net 16 percent are on others…

Page 29: Object Oriented Technologies

Thank You

[email protected]