0
What is private static in java?
1 Answer
+ 4
private : access specifier for class properties. And properties accessible only within class in which declared.
static : access modifier used for a class properties. So then property available as class member rather than object property.
For more, about, read the lessons and example there...
edit:
from search : similars
https://www.sololearn.com/discuss/2815297/?ref=app
https://www.sololearn.com/discuss/438269/?ref=app