access privileges (still needs more work)

This commit is contained in:
Xevion
2020-03-04 00:41:07 -06:00
parent c70d7e401c
commit 468e010db1

View File

@@ -490,4 +490,13 @@ For each character in the array, compare for equality until one does not match.
### Access Privileges
`public`, `protected` and `private` are the three possible
`public`, `protected`, `private` and *a lack of a modifier* are the three possible *access modifiers* one can set for *classes, interfaces, variables and methods*.
- `public`
- Anything and everything can access this.
- `protected`
- ?
- `private`
- ?
- `(no modifier)`
- ?