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...

Real Time sample code for Encapsulation and Abstraction.
where to use abstract and where to use specifies like
public private.

Answer Posted / ravikiran

Encapsulation & Abstraction:

The private variable declaration is abstration,and making
usage of getters and setters is encapsulation

private String name="";
private String school="";

public String getName()
{
return name;
}

public void setName(String name)
{
this.name=name;
}

When We use private when we want to restrict the access
within the class.

When we use public then the variable or method will be
accessible in all the locations

Is This Answer Correct ?    18 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you read and print a string in java?

918


How can we create an immutable class in java?

1026


What is appletviewer?

992


When can we say that threads are not lightweight process in java?

1090


What is the major difference between linkedlist and arraylist?

974


What is meant by tab pans?

1146


Can we call virtual funciton in a constructor ?

2142


If a class is declared without any access modifiers, where can the class be accessed?

1015


describe synchronization in respect to multithreading? : Java thread

883


How many bits is size_t?

945


What does three dots mean in java?

1070


Do I need to import java.lang package any time? Why?

1320


What is an empty string in css?

987


What are the differences between c++ and java?

1080


How can we run a java program without making any object?

989