Saturday 16 March 2013

What are different types of access modifiers?


What are different types of access modifiers?
 -  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 sub classes in the other packages. default modifier : Can be accessed only to classes in the same package.

Blog Author: Vijay Kumar



No comments: