Object Oriented Programming (OOPS) : Java Means Durga Sir
Object Oriented Programming (OOPS) : Java Means Durga Sir
Object Oriented Programming (OOPS) : Java Means Durga Sir
nd
DURGASOFT, # 202,2 Floor,HUDA Maitrivanam,Ameerpet, Hyderabad - 500038,
184 040 – 64 51 27 86, 80 96 96 96 96, 9246212143 | www.durgasoft.com
JAVA Means DURGA SIR
Singleton classes
Factory method
Data Hiding :
Our internal data should not go out directly that is outside person can't access
our internal data directly.
By using private modifier we can implement data hiding.
Example:
class Account {
private double balance;
......................;
......................;
}
After providing proper username and password only , we can access our Account
information.
nd
DURGASOFT, # 202,2 Floor,HUDA Maitrivanam,Ameerpet, Hyderabad - 500038,
185 040 – 64 51 27 86, 80 96 96 96 96, 9246212143 | www.durgasoft.com