Presentation is loading. Please wait.

Presentation is loading. Please wait.

By Rajanikanth B www.btechsmartclass.com OOP Concepts By Rajanikanth B www.btechsmartclass.com.

Similar presentations


Presentation on theme: "By Rajanikanth B www.btechsmartclass.com OOP Concepts By Rajanikanth B www.btechsmartclass.com."— Presentation transcript:

1 By Rajanikanth B www.btechsmartclass.com
OOP Concepts By Rajanikanth B

2 OOP stands for Object Oriented Programming
Introduction OOP stands for Object Oriented Programming

3 Majorly there are FOUR concepts in OOPs
Introduction Majorly there are FOUR concepts in OOPs

4 Introduction 1. Encapsulation 2. Abstraction 3. Polymorphism
4. Inheritance

5 BEFORE… start these concepts
We must know the following What is an Object? What is a class?

6 ENCAPSULATION Encapsulation = Data + Code
Process of combining data and code Encapsulation = Data + Code Here Data represents Variables in program Here Code represents functions in program

7 ENCAPSULATION Encapsulation = Data + Code
This concept can be implemented using class Class = variables + functions Encapsulation = Data + Code Class is a collection of variables and functions under single unit

8 ENCAPSULATION Attributes Behavior BankAccount class BankAccount {
String name ; int accountNumber; double balance ; String dateOpened; String accountType; String branch; String name ; int accountNumber; double balance ; String dateOpened; String accountType; String branch; Behavior void open( ){….} void close( ){….} void deposit( ){….} void withdraw( ){….} void open( ){….} void close( ){….} void deposit( ){….} void withdraw( ){….} }

9 Simply abstraction is hiding information which is not required
Process of focusing on the essentials, ignoring the irrelevant and unimportant things Simply abstraction is hiding information which is not required

10 ABSTRACTION We use access modifiers to implement this concept
We use keywords like public, private, protected, friend….

11 ABSTRACTION private All the members which are declared under private can be accessed by same class members only. No other class can not access the private members of any other class.

12 ABSTRACTION public All the members which are declared under public, can be accessed by any class members and from any where.

13 ABSTRACTION protected
All the members which are declared under protected, can be accessed by same class members and its derived class members.

14 ABSTRACTION Modifier Class Package Subclass World public Yes Yes Yes
protected Yes Yes Yes No private Yes No No No No modifier Yes Yes No No


Download ppt "By Rajanikanth B www.btechsmartclass.com OOP Concepts By Rajanikanth B www.btechsmartclass.com."

Similar presentations


Ads by Google