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

How to access a variable if it is declared as private?

Answer Posted / ranganathkini

If a variable inside a class is marked private then it
cannot be accessed directly.

Access to this variable can only be provided by a public
accessor and mutator methods. Example:

class MyClass {
private int dataValue;

public int getDataValue {
return dataValue;
}

public void setDataValue( int newValue ) {
dataValue = newValue;
}
}

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you write a loop indefinitely in java programming?

950


What is reverse function?

1055


How many JVMs can run on a single machine and what is the meaning of Just-In-Time (JIT) compiler?

1337


When do you call copy constructor?

907


Explain which of the following methods releases the lock when yield(), join(),sleep(),wait(),notify(), notifyall() methods are executed?

1028


Difference between method overloading and method overriding in java ?

1021


What is 16 bits called?

887


What is a boolean in java?

1001


What is the difference between quicksort & mergesort? When should they be used? What is their running time?

1024


What is the difference between a loader and a compiler?

970


Write the algorithm to check the number non-leaf nodes in a tree.

1008


What is the simpletimezone class in java programming?

1078


List implementations of list interface?

987


Explain the pointers in Java?

990


What is the difference between scrollbar and scrollpane?

1044