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?

Answers were Sorted based on User's Feedback



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

Answer / 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

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

Answer / ravikiran(aptech mumbai)

the variable declared as private can be accessed with in the
same class only

Is This Answer Correct ?    2 Yes 2 No

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

Answer / neo

You can access the private variable in to the other package
or other classes by inheritance . to inherite the super
classes all the resources comes in to sub classes private
also in this context.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

What is += mean in java?

0 Answers  


What is super keyword explain with example?

0 Answers  


What is difference between identifier and variable?

0 Answers  


Can main() method in java can return any data?

0 Answers  


Explain about map interface in java?

0 Answers  


Does list allow duplicates in java?

0 Answers  


What is bubble sort in java?

0 Answers  


What is a Java Virtual Machine?

1 Answers  


What is operator?

3 Answers  


Why java is not a pure object oriented language?

5 Answers   IBM,


What are the disadvantages of object oriented programming?

0 Answers  


Is there is any difference between a scrollbar and a scrollpane?

0 Answers  


Categories