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 is static and final keyword in java?
Difference between final and effectively final ? Why is effectively final even required ?
How many techniques can be employed to create a string object?
What does 3 dots mean in java?
Explain about global variables in Java?
what are the jsp tags with example?
2) Suppose there are 5 directories having lot of files (say txt files) in each directory. 2 things :- 2.1) You want to search for filenames which have a particular pattern. 2.2) Out of these filtered files you want to search for a particular keyword or a search string. How can you achieve this?
What is a heavyweight component?
Explain abstract class in java?
What is string intern in java?
What is the importance of hashcode() and equals() methods?
Does java support multi dimensional arrays ?