SlideShare a Scribd company logo
Java Tutorial For Beginners, Java
Programming in Easy language!
Learn Java with SL Book Pvt Ltd.
Object Oriented
Programming – Java
OOPs Concepts With
Examples
Object Oriented programming is a
programming style which is associated with the
concepts like class, object, Inheritance,
Encapsulation, Abstraction, Polymorphism.
Most popular programming languages like Java,
C++, C#, Ruby, etc. follow an object oriented
programming paradigm. In this blog, I will talk
about object oriented programming concepts in
Java. An object-based application in Java is
based on declaring classes, creating objects
from them and interacting between these
objects.
I have discussed Java Classes and Objects which is
also a part of object-oriented programming
concepts, in my previous video.
In this, we will understand the below core concepts
of Object oriented Programming in the following
sequence:
Inheritance
Encapsulation
Abstraction
Polymorphism
Let’s get started with the first Object Oriented
Programming concept i.e. Inheritance.
Object Oriented Programming : Inheritance
In OOP, computer programs are designed in such a way where
everything is an object that interact with one
another. Inheritance is one such concept where the properties
of one class can be inherited by the other. It helps to reuse the
code and establish a relationship between different classes.
As we can see in the image, a child inherits the properties from
his father. Similarly, in Java, there are two classes:
1. Parent class ( Super or Base class)
2. Child class (Subclass or Derived class )
A class which inherits the properties is known as Child Class
whereas a class whose properties are inherited is known as
Parent class.
Java OOPS Concept
Inheritance is further classified into 4 types:
So let’s begin with the first type of inheritance
i.e. Single Inheritance:
1. Single Inheritance:
In single inheritance, one class inherits the properties
of another. It enables a derived class to inherit the
properties and behavior from a single parent class.
This will in turn enable code reusability as well as add
new features to the existing code.
Here, Class A is your parent class and Class B is your
child class which inherits the properties and behavior
of the parent class.
1
2
3
4
5
6
7
Class A
{
---
}
Class B extends A {
---
}
Let’s see the syntax for single inheritance:
2. Multilevel Inheritance:
• When a class is derived from a class which is also
derived from another class, i.e. a class having more
than one parent class but at different levels, such
type of inheritance is called Multilevel Inheritance.
• If we talk about the flowchart, class B inherits the
properties and behavior of class A and class C
inherits the properties of class B. Here A is the
parent class for B and class B is the parent class for
C. So in this case class C implicitly inherits the
properties and methods of class A along with Class
B. That’s what is multilevel inheritance.
Let’s see the syntax for multilevel
inheritance in Java:
1
2
3
4
5
6
7
8
9
Class A{
---
}
Class B extends A{
---
}
Class C extends B{
---
}
3. Hierarchical Inheritance:
• When a class has more than one child classes
(sub classes) or in other words, more than one
child classes have the same parent class, then
such kind of inheritance is known as hierarchical.
• If we talk about the flowchart, Class B and C are
the child classes which are inheriting from the
parent class i.e Class A.
Let’s see the syntax for hierarchical
inheritance in Java:
1
2
3
4
5
6
7
8
9
Class A{
---
}
Class B extends A{
---
}
Class C extends A{
---
}
4. Hybrid Inheritance:
Hybrid inheritance is a combination
of multiple inheritance and multilevel inheritance.
Since multiple inheritance is not supported in Java
as it leads to ambiguity, so this type of inheritance
can only be achieved through the use of the
interfaces.
If we talk about the flowchart, class A is a parent
class for class B and C, whereas Class B and C are
the parent class of D which is the only child class of
B and C.
Java OOPS Concept
Now we have learned about inheritance and their different
types. Let’s switch to another object oriented programming
concept i.e Encapsulation.
Object Oriented Programming : Encapsulation
Encapsulation is a mechanism where you bind your
data and code together as a single unit. It also means
to hide your data in order to make it safe from any
modification. What does this mean? The best way to
understand encapsulation is to look at the example of
a medical capsule, where the drug is always safe
inside the capsule. Similarly, through encapsulation
the methods and variables of a class are well hidden
and safe.
Object Oriented Programming : Encapsulation
We can achieve encapsulation in Java by:
• Declaring the variables of a class as private.
• Providing public setter and getter methods to
modify and view the variables values.
Let us look at the code below to get a better
understanding of encapsulation:
1
2
3
4
5
6
7
8
9
10
11
public class Employee {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public static void main(String[] args) {
}
}
• Let us try to understand the above code. I have
created a class Employee which has a private
variable name. We have then created a getter
and setter methods through which we can get
and set the name of an employee. Through
these methods, any class which wishes to access
the name variable has to do it using these getter
and setter methods.
• Let’s move forward to our third Object-oriented
programming concept i.e. Abstraction.
Object Oriented Programming :
Abstraction
Abstraction refers to the quality of dealing with ideas
rather than events. It basically deals with hiding the
details and showing the essential things to the user. If
you look at the image here, whenever we get a call, we
get an option to either pick it up or just reject it. But in
reality, there is a lot of code that runs in the
background. So you don’t know the internal processing
of how a call is generated, that’s the beauty of
abstraction. Therefore, abstraction helps to reduce
complexity. You can achieve abstraction in two ways:
a) Abstract Class
b) Interface
Let’s understand these concepts in more detail.
Abstract class: Abstract class in Java contains the
‘abstract’ keyword. Now what does the abstract
keyword mean? If a class is declared abstract, it
cannot be instantiated, which means you cannot
create an object of an abstract class. Also, an
abstract class can contain abstract as well as
concrete methods.
Note: You can achieve 0-100% abstraction
using abstract class.
To use an abstract class, you have to inherit it
from another class where you have to provide
implementations for the abstract methods there
itself, else it will also become an abstract class.
Let’s look at the syntax of an abstract class:
1
2
Abstract class Mobile { // abstract class mobile
Abstract void run(); // abstract method
Interface: Interface in Java is a blueprint of a class or
you can say it is a collection of abstract methods and
static constants. In an interface, each method is
public and abstract but it does not contain any
constructor. Along with abstraction, interface also
helps to achieve multiple inheritance in Java.
Note: You can achieve 100% abstraction using
interfaces.
So an interface basically is a group of related
methods with empty bodies. Let us understand
interfaces better by taking an example of a
‘ParentCar’ interface with its related methods.
1
2
3
4
5
public interface ParentCar {
public void changeGear( int newValue);
public void speedUp(int increment);
public void applyBrakes(int decrement);
}
These methods need be present for every car, right? But their working
is going to be different.
Let’s say you are working with manual car, there you have to increment
the gear one by one, but if you are working with an automatic car, that
time your system decides how to change gear with respect to speed.
Therefore, not all my subclasses have the same logic written for change
gear. The same case is for speedup, now let’s say when you press an
accelerator, it speeds up at the rate of 10kms or 15kms. But suppose,
someone else is driving a super car, where it increment by 30kms or
50kms. Again the logic varies. Similarly for applybrakes, where one
person may have powerful brakes, other may not.
Since all the functionalities are common with all my
subclasses, I have created an interface ‘ParentCar’
where all the functions are present. After that, I will
create a child class which implements this interface,
where the definition to all these method varies.
Next, let’s look into the functionality as to how you
can implement this interface.
So to implement this interface, the name of your
class would change to any particular brand of a Car,
let’s say I’ll take an “Audi”.
To implement the class interface, I will use the ‘implement’ keyword as seen
below: 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
public class Audi implements ParentCar {
int speed=0;
int gear=1;
public void changeGear( int value){
gear=value;
}
public void speedUp( int increment)
{
speed=speed+increment;
}
public void applyBrakes(int decrement)
{
speed=speed-decrement;
}
void printStates(){
System.out.println("speed:"+speed+"gear:"+gear);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Audi A6= new Audi();
A6.speedUp(50);
A6.printStates();
A6.changeGear(4);
A6.SpeedUp(100);
A6.printStates();
}
}
Here as you can see, I have provided functionalities
to the different methods I have declared in my
interface class. Implementing an interface allows a
class to become more formal about the behavior it
promises to provide. You can create another class
as well, say for example BMW class which can
inherit the same interface ‘car’ with different
functionalities.
So I hope you guys are clear with the interface and
how you can achieve abstraction using it.
Finally, the last Object oriented programming
concept is Polymorphism.
Object Oriented Programming :
Polymorphism
• Polymorphism means taking many forms, where
‘poly’ means many and ‘morph’ means forms. It is
the ability of a variable, function or object to take
on multiple forms. In other words, polymorphism
allows you define one interface or method and
have multiple implementations.
• Let’s understand this by taking a real-life example
and how this concept fits into Object oriented
programming.
Java OOPS Concept
• Let’s consider this real world scenario in cricket, we know that
there are different types of bowlers i.e. Fast bowlers, Medium
pace bowlers and spinners. As you can see in the above figure,
there is a parent class- BowlerClass and it has three child
classes: FastPacer, MediumPacer and Spinner. Bowler class
has bowlingMethod() where all the child classes are inheriting
this method. As we all know that a fast bowler will going to bowl
differently as compared to medium pacer and spinner in terms of
bowling speed, long run up and way of bowling, etc. Similarly a
medium pacer’s implementation of bowlingMethod() is also
going to be different as compared to other bowlers. And same
happens with spinner class.
The point of above discussion is simply that a same name tends to
multiple forms. All the three classes above inherited
the bowlingMethod() but their implementation is totally different
from one another.
Polymorphism in Java is of two types:
• Run time polymorphism
• Compile time polymorphism
Run time polymorphism: In Java, runtime
polymorphism refers to a process in which
a call to an overridden method is resolved
at runtime rather than at compile-time. In
this, a reference variable is used to call an
overridden method of a superclass at run
time. Method overriding is an example of
run time polymorphism. Let us look the
following code to understand how the
method overriding works:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public Class BowlerClass{
void bowlingMethod()
{
System.out.println(" bowler ");
}
public Class FastPacer{
void bowlingMethod()
{
System.out.println(" fast bowler ");
}
Public static void main(String[] args)
{
FastPacer obj= new FastPacer();
obj.bowlingMethod();
}
}
Compile time polymorphism: In Java, compile time
polymorphism refers to a process in which a call to an
overloaded method is resolved at compile time
rather than at run time. Method overloading is an
example of compile time polymorphism. Method
Overloading is a feature that allows a class to have
two or more methods having the same name but the
arguments passed to the methods are different.
Unlike method overriding, arguments can differ in:
• Number of parameters passed to a method
• Datatype of parameters
• Sequence of datatypes when passed to a method.
Let us look at the following code to understand how the method overloading works:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Adder {
Static int add(int a, int b)
{
return a+b;
}
static double add( double a, double b)
{
return a+b;
}
public static void main(String args[])
{
System.out.println(Adder.add(11,11));
System.out.println(Adder.add(12.3,12.6));
}
}
I hope you guys are clear with all the object
oriented programming concepts that we
have discussed above i.e inheritance,
encapsulation, abstraction and
polymorphism. Now you can make your
Java application more secure, simple and re-
usable using Java OOPs concepts. Do watch
my next video on Java String where I will be
explaining all about Strings and its various
methods and interfaces.
Don’t forget to
SL Book Pvt Ltd.
Thanks for watching

More Related Content

PPTX
Presentation of control statement
PPTX
Basic Concepts of OOPs (Object Oriented Programming in Java)
PPTX
Type casting in java
PPTX
Decision making in JAVA
PPTX
Switch Case in C Programming
PPTX
Chap 7 binary threaded tree
PDF
Java Presentation For Syntax
PDF
Conditional operators
 
Presentation of control statement
Basic Concepts of OOPs (Object Oriented Programming in Java)
Type casting in java
Decision making in JAVA
Switch Case in C Programming
Chap 7 binary threaded tree
Java Presentation For Syntax
Conditional operators
 

What's hot (20)

PPTX
History Of JAVA
PPTX
Super Keyword in Java.pptx
PPTX
Event Handling in JAVA
PPTX
Multiple inheritance in java3 (1).pptx
PPTX
Java RMI
PPTX
INHERITANCE IN JAVA.pptx
PPTX
Lecture_7-Encapsulation in Java.pptx
PPTX
Control statements in java
PPTX
Handling I/O in Java
PPTX
Access modifier and inheritance
PDF
Genesis and Overview of Java
PPS
Java rmi
PPTX
6. static keyword
PPTX
Applet programming
PPTX
Java Inheritance
PPTX
Control flow statements in java
PPT
Object Oriented Programming with Java
PPTX
Exceptions in Java
PPTX
MULTI THREADING IN JAVA
PPTX
this keyword in Java.pptx
History Of JAVA
Super Keyword in Java.pptx
Event Handling in JAVA
Multiple inheritance in java3 (1).pptx
Java RMI
INHERITANCE IN JAVA.pptx
Lecture_7-Encapsulation in Java.pptx
Control statements in java
Handling I/O in Java
Access modifier and inheritance
Genesis and Overview of Java
Java rmi
6. static keyword
Applet programming
Java Inheritance
Control flow statements in java
Object Oriented Programming with Java
Exceptions in Java
MULTI THREADING IN JAVA
this keyword in Java.pptx
Ad

Similar to Java OOPS Concept (20)

PPTX
ITTutor Advanced Java (1).pptx
DOC
How would you implement multiple inheritance in java
PPT
Java_notes.ppt
DOCX
Ganesh groups
PPT
web program-Inheritance,pack&except in Java.ppt
PPTX
Object oreinted php | OOPs
PPTX
Lecture 12
PPTX
Object+oriented+programming+in+java
DOCX
Question and answer Programming
PPTX
OOP-Advanced Programming with c++
PPTX
inheritance and interface in oops with java .pptx
PPTX
General oops concepts
PPTX
Inheritance in OOPs with java
PPTX
OOP interview questions & answers.
PPT
Intro Java Rev010
PDF
JAVA-PPT'S.pdf
PPTX
OOP in Java Presentation.pptx
PDF
C#.net interview questions for dynamics 365 ce crm developers
PPTX
C++ programming introduction
PPTX
Internet and Web Technology (CLASS-15) [JAVA Basics] | NIC/NIELIT Web Technol...
ITTutor Advanced Java (1).pptx
How would you implement multiple inheritance in java
Java_notes.ppt
Ganesh groups
web program-Inheritance,pack&except in Java.ppt
Object oreinted php | OOPs
Lecture 12
Object+oriented+programming+in+java
Question and answer Programming
OOP-Advanced Programming with c++
inheritance and interface in oops with java .pptx
General oops concepts
Inheritance in OOPs with java
OOP interview questions & answers.
Intro Java Rev010
JAVA-PPT'S.pdf
OOP in Java Presentation.pptx
C#.net interview questions for dynamics 365 ce crm developers
C++ programming introduction
Internet and Web Technology (CLASS-15) [JAVA Basics] | NIC/NIELIT Web Technol...
Ad

Recently uploaded (20)

PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
Lesson notes of climatology university.
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PPTX
Cell Structure & Organelles in detailed.
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
RMMM.pdf make it easy to upload and study
PPTX
Institutional Correction lecture only . . .
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
VCE English Exam - Section C Student Revision Booklet
human mycosis Human fungal infections are called human mycosis..pptx
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
Supply Chain Operations Speaking Notes -ICLT Program
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Lesson notes of climatology university.
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
O5-L3 Freight Transport Ops (International) V1.pdf
Microbial diseases, their pathogenesis and prophylaxis
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Cell Structure & Organelles in detailed.
Final Presentation General Medicine 03-08-2024.pptx
A systematic review of self-coping strategies used by university students to ...
RMMM.pdf make it easy to upload and study
Institutional Correction lecture only . . .

Java OOPS Concept

  • 1. Java Tutorial For Beginners, Java Programming in Easy language! Learn Java with SL Book Pvt Ltd.
  • 2. Object Oriented Programming – Java OOPs Concepts With Examples
  • 3. Object Oriented programming is a programming style which is associated with the concepts like class, object, Inheritance, Encapsulation, Abstraction, Polymorphism. Most popular programming languages like Java, C++, C#, Ruby, etc. follow an object oriented programming paradigm. In this blog, I will talk about object oriented programming concepts in Java. An object-based application in Java is based on declaring classes, creating objects from them and interacting between these objects.
  • 4. I have discussed Java Classes and Objects which is also a part of object-oriented programming concepts, in my previous video. In this, we will understand the below core concepts of Object oriented Programming in the following sequence: Inheritance Encapsulation Abstraction Polymorphism Let’s get started with the first Object Oriented Programming concept i.e. Inheritance.
  • 5. Object Oriented Programming : Inheritance In OOP, computer programs are designed in such a way where everything is an object that interact with one another. Inheritance is one such concept where the properties of one class can be inherited by the other. It helps to reuse the code and establish a relationship between different classes. As we can see in the image, a child inherits the properties from his father. Similarly, in Java, there are two classes: 1. Parent class ( Super or Base class) 2. Child class (Subclass or Derived class ) A class which inherits the properties is known as Child Class whereas a class whose properties are inherited is known as Parent class.
  • 7. Inheritance is further classified into 4 types:
  • 8. So let’s begin with the first type of inheritance i.e. Single Inheritance: 1. Single Inheritance: In single inheritance, one class inherits the properties of another. It enables a derived class to inherit the properties and behavior from a single parent class. This will in turn enable code reusability as well as add new features to the existing code. Here, Class A is your parent class and Class B is your child class which inherits the properties and behavior of the parent class.
  • 9. 1 2 3 4 5 6 7 Class A { --- } Class B extends A { --- } Let’s see the syntax for single inheritance:
  • 10. 2. Multilevel Inheritance: • When a class is derived from a class which is also derived from another class, i.e. a class having more than one parent class but at different levels, such type of inheritance is called Multilevel Inheritance. • If we talk about the flowchart, class B inherits the properties and behavior of class A and class C inherits the properties of class B. Here A is the parent class for B and class B is the parent class for C. So in this case class C implicitly inherits the properties and methods of class A along with Class B. That’s what is multilevel inheritance.
  • 11. Let’s see the syntax for multilevel inheritance in Java: 1 2 3 4 5 6 7 8 9 Class A{ --- } Class B extends A{ --- } Class C extends B{ --- }
  • 12. 3. Hierarchical Inheritance: • When a class has more than one child classes (sub classes) or in other words, more than one child classes have the same parent class, then such kind of inheritance is known as hierarchical. • If we talk about the flowchart, Class B and C are the child classes which are inheriting from the parent class i.e Class A.
  • 13. Let’s see the syntax for hierarchical inheritance in Java: 1 2 3 4 5 6 7 8 9 Class A{ --- } Class B extends A{ --- } Class C extends A{ --- }
  • 14. 4. Hybrid Inheritance: Hybrid inheritance is a combination of multiple inheritance and multilevel inheritance. Since multiple inheritance is not supported in Java as it leads to ambiguity, so this type of inheritance can only be achieved through the use of the interfaces. If we talk about the flowchart, class A is a parent class for class B and C, whereas Class B and C are the parent class of D which is the only child class of B and C.
  • 16. Now we have learned about inheritance and their different types. Let’s switch to another object oriented programming concept i.e Encapsulation. Object Oriented Programming : Encapsulation Encapsulation is a mechanism where you bind your data and code together as a single unit. It also means to hide your data in order to make it safe from any modification. What does this mean? The best way to understand encapsulation is to look at the example of a medical capsule, where the drug is always safe inside the capsule. Similarly, through encapsulation the methods and variables of a class are well hidden and safe.
  • 17. Object Oriented Programming : Encapsulation We can achieve encapsulation in Java by: • Declaring the variables of a class as private. • Providing public setter and getter methods to modify and view the variables values.
  • 18. Let us look at the code below to get a better understanding of encapsulation: 1 2 3 4 5 6 7 8 9 10 11 public class Employee { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public static void main(String[] args) { } }
  • 19. • Let us try to understand the above code. I have created a class Employee which has a private variable name. We have then created a getter and setter methods through which we can get and set the name of an employee. Through these methods, any class which wishes to access the name variable has to do it using these getter and setter methods. • Let’s move forward to our third Object-oriented programming concept i.e. Abstraction.
  • 20. Object Oriented Programming : Abstraction Abstraction refers to the quality of dealing with ideas rather than events. It basically deals with hiding the details and showing the essential things to the user. If you look at the image here, whenever we get a call, we get an option to either pick it up or just reject it. But in reality, there is a lot of code that runs in the background. So you don’t know the internal processing of how a call is generated, that’s the beauty of abstraction. Therefore, abstraction helps to reduce complexity. You can achieve abstraction in two ways: a) Abstract Class b) Interface
  • 21. Let’s understand these concepts in more detail. Abstract class: Abstract class in Java contains the ‘abstract’ keyword. Now what does the abstract keyword mean? If a class is declared abstract, it cannot be instantiated, which means you cannot create an object of an abstract class. Also, an abstract class can contain abstract as well as concrete methods. Note: You can achieve 0-100% abstraction using abstract class.
  • 22. To use an abstract class, you have to inherit it from another class where you have to provide implementations for the abstract methods there itself, else it will also become an abstract class. Let’s look at the syntax of an abstract class: 1 2 Abstract class Mobile { // abstract class mobile Abstract void run(); // abstract method
  • 23. Interface: Interface in Java is a blueprint of a class or you can say it is a collection of abstract methods and static constants. In an interface, each method is public and abstract but it does not contain any constructor. Along with abstraction, interface also helps to achieve multiple inheritance in Java. Note: You can achieve 100% abstraction using interfaces. So an interface basically is a group of related methods with empty bodies. Let us understand interfaces better by taking an example of a ‘ParentCar’ interface with its related methods.
  • 24. 1 2 3 4 5 public interface ParentCar { public void changeGear( int newValue); public void speedUp(int increment); public void applyBrakes(int decrement); } These methods need be present for every car, right? But their working is going to be different. Let’s say you are working with manual car, there you have to increment the gear one by one, but if you are working with an automatic car, that time your system decides how to change gear with respect to speed. Therefore, not all my subclasses have the same logic written for change gear. The same case is for speedup, now let’s say when you press an accelerator, it speeds up at the rate of 10kms or 15kms. But suppose, someone else is driving a super car, where it increment by 30kms or 50kms. Again the logic varies. Similarly for applybrakes, where one person may have powerful brakes, other may not.
  • 25. Since all the functionalities are common with all my subclasses, I have created an interface ‘ParentCar’ where all the functions are present. After that, I will create a child class which implements this interface, where the definition to all these method varies. Next, let’s look into the functionality as to how you can implement this interface. So to implement this interface, the name of your class would change to any particular brand of a Car, let’s say I’ll take an “Audi”.
  • 26. To implement the class interface, I will use the ‘implement’ keyword as seen below: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 public class Audi implements ParentCar { int speed=0; int gear=1; public void changeGear( int value){ gear=value; } public void speedUp( int increment) { speed=speed+increment; } public void applyBrakes(int decrement) { speed=speed-decrement; } void printStates(){ System.out.println("speed:"+speed+"gear:"+gear); } public static void main(String[] args) { // TODO Auto-generated method stub Audi A6= new Audi(); A6.speedUp(50); A6.printStates(); A6.changeGear(4); A6.SpeedUp(100); A6.printStates(); } }
  • 27. Here as you can see, I have provided functionalities to the different methods I have declared in my interface class. Implementing an interface allows a class to become more formal about the behavior it promises to provide. You can create another class as well, say for example BMW class which can inherit the same interface ‘car’ with different functionalities. So I hope you guys are clear with the interface and how you can achieve abstraction using it. Finally, the last Object oriented programming concept is Polymorphism.
  • 28. Object Oriented Programming : Polymorphism • Polymorphism means taking many forms, where ‘poly’ means many and ‘morph’ means forms. It is the ability of a variable, function or object to take on multiple forms. In other words, polymorphism allows you define one interface or method and have multiple implementations. • Let’s understand this by taking a real-life example and how this concept fits into Object oriented programming.
  • 30. • Let’s consider this real world scenario in cricket, we know that there are different types of bowlers i.e. Fast bowlers, Medium pace bowlers and spinners. As you can see in the above figure, there is a parent class- BowlerClass and it has three child classes: FastPacer, MediumPacer and Spinner. Bowler class has bowlingMethod() where all the child classes are inheriting this method. As we all know that a fast bowler will going to bowl differently as compared to medium pacer and spinner in terms of bowling speed, long run up and way of bowling, etc. Similarly a medium pacer’s implementation of bowlingMethod() is also going to be different as compared to other bowlers. And same happens with spinner class. The point of above discussion is simply that a same name tends to multiple forms. All the three classes above inherited the bowlingMethod() but their implementation is totally different from one another. Polymorphism in Java is of two types: • Run time polymorphism • Compile time polymorphism
  • 31. Run time polymorphism: In Java, runtime polymorphism refers to a process in which a call to an overridden method is resolved at runtime rather than at compile-time. In this, a reference variable is used to call an overridden method of a superclass at run time. Method overriding is an example of run time polymorphism. Let us look the following code to understand how the method overriding works:
  • 32. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public Class BowlerClass{ void bowlingMethod() { System.out.println(" bowler "); } public Class FastPacer{ void bowlingMethod() { System.out.println(" fast bowler "); } Public static void main(String[] args) { FastPacer obj= new FastPacer(); obj.bowlingMethod(); } }
  • 33. Compile time polymorphism: In Java, compile time polymorphism refers to a process in which a call to an overloaded method is resolved at compile time rather than at run time. Method overloading is an example of compile time polymorphism. Method Overloading is a feature that allows a class to have two or more methods having the same name but the arguments passed to the methods are different. Unlike method overriding, arguments can differ in: • Number of parameters passed to a method • Datatype of parameters • Sequence of datatypes when passed to a method.
  • 34. Let us look at the following code to understand how the method overloading works: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 class Adder { Static int add(int a, int b) { return a+b; } static double add( double a, double b) { return a+b; } public static void main(String args[]) { System.out.println(Adder.add(11,11)); System.out.println(Adder.add(12.3,12.6)); } }
  • 35. I hope you guys are clear with all the object oriented programming concepts that we have discussed above i.e inheritance, encapsulation, abstraction and polymorphism. Now you can make your Java application more secure, simple and re- usable using Java OOPs concepts. Do watch my next video on Java String where I will be explaining all about Strings and its various methods and interfaces.
  • 36. Don’t forget to SL Book Pvt Ltd. Thanks for watching