0

When we declare a variable private then why Java dont allow it to access from outside the class?

Since public data members can be accessed from outside the class and private can't. So how java does this.

29th Apr 2020, 5:30 PM
parag sahu
parag sahu - avatar
3 odpowiedzi
+ 2
It is choice by design and is common in almost all programming languages that use these keywords. How the language handles it is something out of my knowledge and would let someone else answer it.
29th Apr 2020, 5:49 PM
Avinesh
Avinesh - avatar
0
A private variable can be accessed through getter and setter methods which must be public. Since a private variable can be accessed within the class only, you get them inside get and set which are public a later access them from outside the class. I have explained the access levels well in detail in the below thread. https://www.sololearn.com/discuss/2262605/?ref=app
29th Apr 2020, 5:39 PM
Avinesh
Avinesh - avatar
0
Avinesh I am not asking how they can be accessed ?? I am asking how java handles them. What java does to them so that public can be accessed from outside the class and private can't.
29th Apr 2020, 5:41 PM
parag sahu
parag sahu - avatar