I am using java. I know by using private access modifier we can restrict. But using Reflection API still I can access the variable outside the class. Then what is the use of private modifier here?
|
|
Because reflection breaks encapsulation. You can prevent the use of the reflection api if your application is running in a security managed environment. See Java Security Manager |
|||
|
|
|
Note: some libraries like Serialization need to be able to access private fields to work. |
|||||||||
|
The Sure, users can use reflection to access the data in |
|||
|
|
|
I'm no expert on the java Security stuff, but I think you have to provide your own SecurityManager and override checkMemberAccess(). e.g., to prevent all reflection
Obviously, in the real world, you might want to check for only a certain subset of "important" classes in the first argument. And, as noted in many other responses, this will cause problems for a lot of 3rd party libraries. |
|||
|
|