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 lambda expressions action func and predicate?

1040


Are there tuples in java?

1003


How do you create a jar file?

980


Explain the common use of ejb?

1155


What is the difference between lambda expression and anonymous methods?

973


What is class forname java?

972


How should I format my code? How should I comment my code?

1046


What are the disadvantages of java sockets?

1154


Can we extract main method from another class?

1010


What is the purpose of jdk?

1001


What is scrollable resultset in java?

945


Why oracle type 4 driver is named as oracle thin driver?

905


What is the difference between Logical Parallelism and Physical Parallelism?

3448


What is stateless object in java?

1014


What is data encapsulation?

1035