Object Oriented Programming

16
Object Oriented Programming

description

Object Oriented Programming. Data and operations are grouped together. Object Oriented. Account. Interface: Set of available operations. Withdraw Deposit Transfer. Data Encapsulation. class Account { private float balance; public float withdraw(); - PowerPoint PPT Presentation

Transcript of Object Oriented Programming

Page 1: Object Oriented Programming

Object Oriented Programming

Page 2: Object Oriented Programming

Object OrientedData and operations are grouped together

AccountWithdrawDepositTransfer

Interface:

Set of available operations

Page 3: Object Oriented Programming

Data Encapsulationclass Account { private float balance;

public float withdraw(); public void deposit(float amount); }

Page 4: Object Oriented Programming

Objects and ClassesClasses reflect concepts, objects reflect instances that embody those concepts.

Pooja Monica SrutiPriya

girlclassobject

Page 5: Object Oriented Programming

Objects and Classes cont’dA class captures the common properties of the objects instantiated from itA class characterizes the common behavior of all the objects that are its instances

Page 6: Object Oriented Programming

Objects and Classes cont’dClass BankAccountBalanceInterestYTDOwnerAccount_number

Balance 500InterestYTDOwner Account_number

Balance 10,000InterestYTDOwner Account_number

OperationsMakeDesposit

Transfer

WithDraw

GetBalance

Page 7: Object Oriented Programming

Objects as instances of Classes

The world conceptually consists of objectsMany objects can be said to be of the same type or class My bank account, your bank account, Bill

Gates’ bank account …We call the object type a class

Page 8: Object Oriented Programming

Objects and ClassesClass Visible in

source code The code is not

duplicated

Object Own copy of

data Active in

running program

Occupies memory

Has the set of operations given in the class

Page 9: Object Oriented Programming

Classification

Checking Account

Value First Select Access First Interest

Savings Account

Account

Page 10: Object Oriented Programming

InheritanceA class which is a subtype of a more general class is said to be inherited from it.The sub-class inherits the base class’ data members and member functions

Page 11: Object Oriented Programming

Inheritance cont’dA sub-class has all data members of its base-class plus its ownA sub-class has all member functions of its base class (with changes) plus its ownInheritance is meant to implement sub-typing (don’t abuse it)

Page 12: Object Oriented Programming

AbstractionManagement of complexityHierarchical classification:

is-a relationship: inheritancehas-a relationship: containment

Page 13: Object Oriented Programming

Design an Object Oriented ATM

Page 14: Object Oriented Programming

We will design and perform our own role play with objects

What classes do we need?– Display– Cash Dispenser– Card Reader– Bank Account– Others???

Page 15: Object Oriented Programming

• What methods do we need? On which classes?– Make deposit– Make withdrawal– Balance Inquiry– Dispense cash– Others???????????

Page 16: Object Oriented Programming