Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is meant by Encapsulation?Explain with an example?

Answer Posted / santhosh kandula


Encapsulation is nothing but hiding the data.By using
encapsulation the ability to modify the code without
without breaking the code the other who use our code. In
Encapsulation we have to pass private members and access
via the public modifiers.


Example : public class EncapsDemo
{
private String str;
public String getString()
{
return str;
}
public void setString(String str)
{
this.str=str;
}
}

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between a jdk and a jvm?

910


Why doesn't lsdou work under windows nt? : java security

875


When do we go for java 8 stream api? Why do we need to use java 8 stream api in our projects?

974


In java what is the difference between sleep() and wait() .

967


What is savepoint in java?

853


What is java lang noclassdeffounderror?

909


Why sun introduce concept of anonymous class? What is need and real life use of anonymous class

2211


Which instutute is offering course for rhino jain slee

2277


When a thread is created and started, what is its initial state?

969


Where is singleton design pattern used in java?

929


What is a yaml file in java?

986


What is a container in java?

901


What is type inference? Is type inference available in older versions like java 7 and before 7 or it is available only in java se 8?

912


What is gui in java with examples?

1033


How do you count in java?

919