0 votes
in JAVA by

What are different types of access modifiers in Java?

1 Answer

0 votes
by

public: Any thing declared as public can be accessed from anywhere. private: Any thing declared as private can’t be seen outside of its class. protected: Any thing declared as protected can be accessed by classes in the same package and subclasses in the other packages. default modifier : Can be accessed only to classes in the same package.

Related questions

0 votes
asked May 2, 2021 in JAVA by sharadyadav1986
0 votes
asked May 5, 2021 in JAVA by SakshiSharma
...