+ 1
Fourth Access modifier in Java?
I know of the basic modifiers (public, private, protected) but a friend asked me about a fourth one called "default". Can anyone help me please?
1 Odpowiedź
+ 2
its package level access, its available to every other part of the code as long as its in the same package. its like public, but limited to its own package