What are different types of access modifiers?
Answers were Sorted based on User's Feedback
Answer / venki
Private : It can access with in the class only
public :It can Access Any where
proteced:It can access with in the package and sub class of
the package also
default:it access with in the package only.
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / shekhar suchak
private:it can be access within the block or we can aslo say that within the class.
public:"every where,any where" just one line ans.
protected:it can be access within package and outside of package.but there should be inheritense.
default:it will be access within the package.
class can not be private and protected.its only default and public.we dont have to mention 'default' keywords it always be there,but invisible.
Thanks & Regards
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nani
Private : It can access with in the class only
public :It can Access Any where in java program
proteced:It can access with in the package and sub class of
the package also
default:it access with in the java program.
| Is This Answer Correct ? | 0 Yes | 2 No |
What do bitwise operators do?
Can an unreferenced object be referenced again?
What is methods and methodology?
What is Vector?Can you elaborate how Vector is Thread safe?
what is difference between prepare stetement and callable starement with example?
How do I convert a string to an int in java?
what is Vector class?
Is there memory leaks in java?
What checkbox method allows you to tell if a checkbox is checked?
What are thread priorities and importance of thread priorities in java?
Difference between a MenuItem and a CheckboxMenuItem?
When to use runnable interface vs thread class in java?