How to access a variable if it is declared as private?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What are the main differences between notify and notifyAll in Java?
What are the different access modifiers available in java?
What is a databasemetadata?
Is null a value?
What types of inheritance does Java support?
What is the list interface in java programming?
What does indexof mean?
How to display all the prime numbers between 1 and 100
Can we iterate through collection using for loop?
what is an object and how do you allocate memory to it?
Can you add null to a list java?
What is the difference between delete and delete[]