- Java Programming Basics
- Java Tutorial
- Java Overview
- Java Environment Setup
- Java Program Structure
- Java Basic Syntax
- Java First Program
- Java Constants
- Java Separators
- Java Keywords
- Java Data Types
- Java Data Types
- Java Integers
- Java Floating Point
- Java Characters
- Java Booleans
- Java Numbers
- Java Programming Variables
- Java Variables
- Java Variable Types
- Java Variable Scope
- Java Type Conversion
- Java Type Casting
- Java Auto Type Promotion
- Java Type Promotion Rules
- Java Programming Arrays
- Java Arrays
- Java One Dimensional Array
- Java Multidimensional Array
- Java Programming Operators
- Java Operators
- Java Arithmetic Operators
- Java Increment Decrement
- Java Bitwise Operators
- Java Left Shift
- Java Right Shift
- Java Relational Operators
- Java Boolean Logical Operators
- Java Ternary(?) Operator
- Java Operator Precedence
- Java Control Statements
- Java Decision Making
- Java if if-else if-else-if
- Java switch Statement
- Java Loops
- Java while Loop
- Java do-while Loop
- Java for Loop
- Java for-each Loop
- Java Nested Loops
- Java break Statement
- Java continue Statement
- Java Class Object Method
- Java Classes and Objects
- Java Class
- Java Object
- Java new Operator
- Java Methods
- Java Constructors
- Java this Keyword
- Java Stack
- Java Overloading Recursion
- Java Method Overloading
- Java Constructor Overloading
- Java Object as Parameter
- Java Call by Value Reference
- Java Returning Objects
- Java Recursion
- Java Modifier Types
- Java Encapsulate Poly String
- Java Encapsulation
- Java Polymorphism
- Java Nested Inner Class
- Java Strings
- Java Command Line Arguments
- Java Variable Length Arguments
- Java Inheritance Abstraction
- Java Inheritance
- Java super Superclass
- Java Multilevel Hierarchy
- Java Method Overriding
- Java Abstraction
- Java Packages Interfaces
- Java Packages
- Java Access Protection
- Java Import Statement
- Java Interfaces
- Java Programming Exceptions
- Java Exception Handling
- Java try catch
- Java throw throws
- Java finally Block
- Java Built In Exceptions
- Java Exception Subclasses
- Java Chained Exceptions
- Java Multithreading
- Java Multithreading
- Java Thread Model
- Java Main Thread
- Java Create Thread
- Java Thread Priorities
- Java Synchronization
- Java Inter Thread Communication
- Java Suspend Resume Stop Thread
- Java Get Thread State
- Java Enum Autobox Annotation
- Java Enumerations
- Java Type Wrappers
- Java Autoboxing
- Java Annotation
- Java Marker Annotations
- Java Single Member Annotation
- Java Built In Annotations
- Java Type Annotations
- Java Repeating Annotations
- Java Data File Handling
- Java Files I/O
- Java Streams
- Java Read Console Input
- Java Write Console Output
- Java PrintWriter Class
- Java Read Write Files
- Java Automatically Close File
- Java Programming Advance
- Java Date and Time
- Java Regular Expressions
- Java Collections Framework
- Java Generics
- Java Data Structures
- Java Network Programming
- Java Serialization
- Java Send Email
- Java Applet Basics
- Java Documentation
- Java Programming Examples
- Java Programming Examples
Java Encapsulation
As we know, there are four fundamental Object Oriented Programming (OOP) concepts, in which the encapsulation are the one , and the other three are polymorphism, inheritance, and abstraction.
Encapsulation is a technique of making the fields in a class private and allowing access to the fields through the public methods. If a field is declared as private, then it can't be accessed by anyone outside the class, because of that, hiding the fields inside the class. For this reason, encapsulation is also known as data hiding.
Encapsulation as Protective Barrier
Encapsulation can be accounted as a protective barrier which prevents the code and data which being randomly accessed by the other code which is defined outside the class. Access to the data and the code is tightly controlled by an interface.
The Encapsulation's main benefit is the ability to modify our implemented code without breaking the other's code who use our code. Therefore, with this feature, Encapsulation gives maintainability and flexibility to our code.
Java Encapsulation Example
Here is an example program in Java, helps in understanding the concept and use of encapsulation in Java programming. This is JavaEncapsulationCheck.java file:
/* Java Program Example - Java Encapsulation */ public class JavaEncapsulationCheck { private String studName; private String studIdNum; private int studAge; public int getStudAge() { return studAge; } public String getStudName() { return studName; } public String getStudIdNum() { return studIdNum; } public void setStudAge(int temp) { studAge = temp; } public void setStudName(String temp) { studName = temp; } public void setStudIdNum(String temp) { studIdNum = temp; } }
The public methods are the access points to the class's fields from outside the Java world. Generally, these methods are referred as getters and setters. Therefore, any class, wants to access the variables, should access through these getters and setters. The variables of the class named JavaEncapsulationCheck can be access as shown here in the following example. This is RunJavaEncapsulation.java file:
/* Java Program Example - Java Encapsulation */ public class RunJavaEncapsulation { public static void main(String args[]) { JavaEncapsulationCheck encheck = new JavaEncapsulationCheck(); encheck.setStudName("Deepak"); encheck.setStudAge(18); encheck.setStudIdNum("12343ms"); System.out.print("Name = "+ encheck.getStudName() +", Age = "+ encheck.getStudAge()); } }
Here is the sample output produced by the above Java program:
Name = Deepak, Age = 18
« Previous Tutorial Next Tutorial »