From 468e010db1e94a43a906d9800caa85061d65f7f1 Mon Sep 17 00:00:00 2001 From: Xevion Date: Wed, 4 Mar 2020 00:41:07 -0600 Subject: [PATCH] access privileges (still needs more work) --- study/STUDY.MD | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/study/STUDY.MD b/study/STUDY.MD index c8c7875..ad54af2 100644 --- a/study/STUDY.MD +++ b/study/STUDY.MD @@ -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 \ No newline at end of file +`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)` + - ? \ No newline at end of file