SlideShare a Scribd company logo
© yellowmatics.com confidential
Access Modifiers.
• It defines the accessibility or scope of a field, method, constructor, or class.
• There are four types of Java access modifiers:
✓ Private
✓ Default
✓ Protected
✓ Public
© yellowmatics.com confidential
Private.
• The access level of a private modifier is only within the class.
• It cannot be accessed from outside the class.
© yellowmatics.com confidential
Default.
• The access level of a default modifier is only within the package.
• It cannot be accessed from outside the package.
• If you do not specify any access level, it will be the default.
© yellowmatics.com confidential
Protected.
• The access level of a protected modifier is within the package and outside the
package through child class.
• If you do not make the child class, it cannot be accessed from outside the package.
© yellowmatics.com confidential
Public.
• The access level of a public modifier is everywhere.
• It can be accessed from within the class, outside the class, within the package and
outside the package.
© yellowmatics.com confidential
Comparison.
Access
Modifier
within class
within
package
outside
package by
subclass only
outside
package
Private Y N N N
Default Y Y N N
Protected Y Y Y N
Public Y Y Y Y
© yellowmatics.com confidential
Encapsulation.
• It is a process of wrapping code and data together into a single unit.
• The Bean class is the example of a fully encapsulated class.
ADVANTAGES:
• It can make the class read-only or write-only.
• It provides you the control over the data.
• It is a way to achieve data hiding.

More Related Content

PPTX
Access Modifiers in Java.pptx
PPTX
Access Modifiers of oop classes concept.pptx
PPTX
Access Modifiers .pptx
PPTX
Access modifiers in java
PPTX
Access Modifier.pptx
PPTX
Java access modifiers
PPTX
PPTX
Access modifiers in java
Access Modifiers in Java.pptx
Access Modifiers of oop classes concept.pptx
Access Modifiers .pptx
Access modifiers in java
Access Modifier.pptx
Java access modifiers
Access modifiers in java

Similar to Access Specifier and encapusulation.pdf (20)

PPTX
Access modifier and inheritance
PPTX
Access modifiers in java
PPTX
Visibility Modifiers for Access Control.pptx
PDF
Access modifiers in java
PPTX
Access specifiers(modifiers) in java
PDF
Chapter 03 enscapsulation
PPTX
C# Access modifiers
PDF
Diving into OOP (Day 5): All About C# Access Modifiers (Public/Private/Protec...
PDF
CHAPTER 3 part1.pdf
PDF
Java modifiers
PDF
‏‏oop lecture 2 taiz univercity object programming.pdf
PPTX
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...
PPT
Access Protection
PPTX
understanding of Java_Modifiers_by_Quipoin.pptx
PPTX
Power point presentation on access specifier in OOPs
PDF
Oops (inheritance&interface)
PDF
"Study of Java Access Control Mechanism”
PDF
access modifier
PPTX
web programmimg ppt which is about the java packages
PPTX
Imp Key.pptx very easy to learn go for it
Access modifier and inheritance
Access modifiers in java
Visibility Modifiers for Access Control.pptx
Access modifiers in java
Access specifiers(modifiers) in java
Chapter 03 enscapsulation
C# Access modifiers
Diving into OOP (Day 5): All About C# Access Modifiers (Public/Private/Protec...
CHAPTER 3 part1.pdf
Java modifiers
‏‏oop lecture 2 taiz univercity object programming.pdf
WINSEM2020-21_STS3105_SS_VL2020210500169_Reference_Material_I_03-Mar-2021_L13...
Access Protection
understanding of Java_Modifiers_by_Quipoin.pptx
Power point presentation on access specifier in OOPs
Oops (inheritance&interface)
"Study of Java Access Control Mechanism”
access modifier
web programmimg ppt which is about the java packages
Imp Key.pptx very easy to learn go for it
Ad

Recently uploaded (20)

PPTX
L1 - Introduction to python Backend.pptx
PPTX
assetexplorer- product-overview - presentation
PDF
top salesforce developer skills in 2025.pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
medical staffing services at VALiNTRY
PPTX
Transform Your Business with a Software ERP System
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PPTX
Computer Software and OS of computer science of grade 11.pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Nekopoi APK 2025 free lastest update
PPTX
history of c programming in notes for students .pptx
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Designing Intelligence for the Shop Floor.pdf
PDF
System and Network Administration Chapter 2
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Digital Strategies for Manufacturing Companies
PDF
Digital Systems & Binary Numbers (comprehensive )
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
L1 - Introduction to python Backend.pptx
assetexplorer- product-overview - presentation
top salesforce developer skills in 2025.pdf
Upgrade and Innovation Strategies for SAP ERP Customers
medical staffing services at VALiNTRY
Transform Your Business with a Software ERP System
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
2025 Textile ERP Trends: SAP, Odoo & Oracle
Computer Software and OS of computer science of grade 11.pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Nekopoi APK 2025 free lastest update
history of c programming in notes for students .pptx
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Designing Intelligence for the Shop Floor.pdf
System and Network Administration Chapter 2
Which alternative to Crystal Reports is best for small or large businesses.pdf
Digital Strategies for Manufacturing Companies
Digital Systems & Binary Numbers (comprehensive )
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
wealthsignaloriginal-com-DS-text-... (1).pdf
Ad

Access Specifier and encapusulation.pdf