[Solved] Field without Access modifiers , java [duplicate]


In Java if you leave the access specifier off then the member is “package” level. Package level members can be seen by the class that defines the member and other classes in the same package. The difference between that and private are private members may only be seen by the class which defines it.

10

solved Field without Access modifiers , java [duplicate]