Welcome to jBasket Interviews, where you can ask questions and receive answers from other members about job interviews and job seeking tips.

What are different types of access modifiers?

0 votes
Explain the differences of access modifiers in Java
asked 2 years ago by vitas (120 points)

1 Answer

0 votes
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.
answered 2 years ago by victor (140 points)

Related questions