+ 2
Access specifier??
what is the use of default access specifie4r in java???
2 Respostas
+ 3
ok thanks
+ 9
It is below public,
public access specifier allows the member to be accessible from everywhere,
default on the other hand, can be able to access from same class, derived class and same package but not from any other package.