Why non nested classes in java are not having marked as
protected access specifier
Answers were Sorted based on User's Feedback
Answer / udita bose
Sorry, but previous answer by Yayati Pavan does not answer the question. If that answer is true then there should not be a problem with a "protected" class, as "protected" keyword is wider than default one.
There are no protected class because it is unnecessary to have them. Access modifiers for classes determine 2 things
i) If a class can create instance of other class ?
ii)If a class can extend other class ?
Now, any class within the same package will be able to create an instance of "protected" class - this is true for default-accessor and public classes. No class outside the package will be able to create an instance of "protected" class - this holds good for default-accessor classes.
Again, for a "protected" class by its definition will be extendible by any class within its package - so is default-accessor class, and extendible for any class outside its package - so are all public classes.
Both of this reason nullifies the reason for a protected class.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / yayati pavan
When the non nested class declared as public or
default(public) the jvm can access the class and execute.
So non nested class must always public. other wise jvm can't
access the class.
| Is This Answer Correct ? | 7 Yes | 9 No |
when to for abstract class and when to go for interface
Explain the difference between the public, private, final, protected, and default modifiers?
What is the difference between Byte stream and Charecter Stream?
import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }
My application URL : http://localhost:8080/Application/Login.jsp. When a user enter this url in IE then, how it get Login.JSP Page exactly? what are the processes will happen from when we submit the URL to get Login.jsp?
Have you used any version control ? if so explain about it?
What is the multilevel inheritance. and also give the Example of it ?
What does the three dot emoji mean?
What is nested interface?
Why is string buffer better than string ?
In Java, what’s the purpose of static methods and static variables?
what is connection pooling with example?