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 jpa project?

828


What is the java api?

866


Is lambda expression an object?

838


Why serialization is used in java?

994


What are the benefits of a jar file?

972


What is flatmap in rxjs?

862


What is the first argument of the string array in main method?

911


What is meant by annotation in java?

929


What is a jvm?

897


What is the difference between jar and executable jar?

936


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

2156


What are jpa annotations?

858


What is the use of flatmap?

921


What is serializable in java?

791


Is jprofiler open source?

855