SlideShare a Scribd company logo
Abstraction in JAVA
-By Akanksha Sawarkar
What is Abstraction?
 5 major pillars of OOP
 Hiding unnecessary details
 achieved by using interface and abstract
class in Java
Abstract Classes & Methods
• abstract keyword
• Contains method Declarations only
• can not create object of it
• Abstract & non abstract methods
• Should override method in derived class
Example:
SHAPE
Rectangle Circle Triangle
Syntax:
abstract public void calculateArea();
calculateArea()
Thank you

More Related Content

PPTX
Abstraction java
PDF
Functional Programming For All - Scala Matsuri 2016
PPT
Lambdas
PDF
Functional Programming in Java
PPTX
Keep Code Left - How to write better code in almost any language
PPTX
Functional programming principles and Java 8
PDF
Functional programming with Java 8
PPT
Abstract class in java
Abstraction java
Functional Programming For All - Scala Matsuri 2016
Lambdas
Functional Programming in Java
Keep Code Left - How to write better code in almost any language
Functional programming principles and Java 8
Functional programming with Java 8
Abstract class in java

What's hot (6)

PPT
Functional OOP, Clojure style
PPTX
Functional programming for the Advanced Beginner
PPT
Final keyword
PPTX
Comparing Golang and understanding Java Value Types
PDF
Metaprogramming ruby
PPT
Chapter 2 - Basic Elements of Java
Functional OOP, Clojure style
Functional programming for the Advanced Beginner
Final keyword
Comparing Golang and understanding Java Value Types
Metaprogramming ruby
Chapter 2 - Basic Elements of Java
Ad

Recently uploaded (20)

PDF
Encapsulation theory and applications.pdf
PPTX
TLE Review Electricity (Electricity).pptx
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Spectroscopy.pptx food analysis technology
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Empathic Computing: Creating Shared Understanding
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
August Patch Tuesday
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
Machine Learning_overview_presentation.pptx
PPTX
1. Introduction to Computer Programming.pptx
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Heart disease approach using modified random forest and particle swarm optimi...
PPTX
Programs and apps: productivity, graphics, security and other tools
Encapsulation theory and applications.pdf
TLE Review Electricity (Electricity).pptx
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Accuracy of neural networks in brain wave diagnosis of schizophrenia
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Spectroscopy.pptx food analysis technology
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Reach Out and Touch Someone: Haptics and Empathic Computing
Empathic Computing: Creating Shared Understanding
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
August Patch Tuesday
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
NewMind AI Weekly Chronicles - August'25-Week II
Machine Learning_overview_presentation.pptx
1. Introduction to Computer Programming.pptx
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Heart disease approach using modified random forest and particle swarm optimi...
Programs and apps: productivity, graphics, security and other tools
Ad

Abstraction in java