I am newbie in J2EE & looking for strong basic behind each
concept as,
Why do we use private access specifier before each variable
of
type property bcoz ultimately to access it outside the class
we use public method as getter & setter ?
If we use getter & setter to access it outside the class so
better we make variable as public so that it is easily
available outside of the class...
Please guide me why do we use as private ????
Answer Posted / mmr
procedural oriented:-
int i=0;
int j=0;
int showi(){
print i;
}
void main(){
i++;// using i var with out knowing the intention of its use
could leads to unexpected behaviour
showi();
}
Object oriented:-
class mydata{
private int i=0;
int j=0;
private showi(){
print i;
}
void main(){
i++; // not allowed as i can be accessble only thru the
//member function that means the data will be operated thru
//the method exposed to access it which are private to the
//class
showi();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why java is oop language?
Is java a high level language?
What are the four types of J2EE modules?
Is java safe to download?
Where is java used?
What is java awt event?
for example we are login into the irctc server from there it will go to the selected bank and deduct amount and come back to the irctc. so if we are developing this in java means will it be run on the same session. but as per my knowledge bank is separate and irctc is separate URL's so it will use two different sessions then how it is maintaining same session through out application and even it uses the payment gateway? how it is working can any one help me on that??
What is considered as a web component?
What is interpreter in java?
Describe the ear, war, and jar.
What is urn?
What is platform independent in java?
What is j2ee specification?
What is setfocusable in java?
Is j2ee a programming language?