Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 298 Bytes

File metadata and controls

13 lines (10 loc) · 298 Bytes

Package-Private Fields

Fields that are marked neither public nor private are "package-private."

package village;

public class Well {
    // Neither of these can be used outside of the "village" package
    static final int NUMBER_OF_DEMONS = 4;
    boolean exorcismPerformed;
}