Java: Acess Modifiers

a thread...

(Cheatsheet Included)

What is an access modifier?

Access Modifiers are a way of providing limited visibility to methods, variables, classes.

Different access modifiers provide different visibility due to which our program because less prone to unwanted changes.
Java has four access modifiers, let's see each one by one

public:
It's the least restrictive access modifier when any class, method, or variable is defined as public then it is accessible from anywhere.
protected:
Protected methods & variables can be accessed within the same package and also accessible to all child classes.

default:
When no access modifier is specified then java treats it as default. With default methods & variables are accessible within the same package.
private:
It's the most restrictive access modifier, when given to any methods & variable it is only accessible within the same class.
Access Modifier Cheat Sheet:

More from Vikas Rajput

You May Also Like

1/“What would need to be true for you to….X”

Why is this the most powerful question you can ask when attempting to reach an agreement with another human being or organization?

A thread, co-written by @deanmbrody:


2/ First, “X” could be lots of things. Examples: What would need to be true for you to

- “Feel it's in our best interest for me to be CMO"
- “Feel that we’re in a good place as a company”
- “Feel that we’re on the same page”
- “Feel that we both got what we wanted from this deal

3/ Normally, we aren’t that direct. Example from startup/VC land:

Founders leave VC meetings thinking that every VC will invest, but they rarely do.

Worse over, the founders don’t know what they need to do in order to be fundable.

4/ So why should you ask the magic Q?

To get clarity.

You want to know where you stand, and what it takes to get what you want in a way that also gets them what they want.

It also holds them (mentally) accountable once the thing they need becomes true.

5/ Staying in the context of soliciting investors, the question is “what would need to be true for you to want to invest (or partner with us on this journey, etc)?”

Multiple responses to this question are likely to deliver a positive result.