Why only one Class is public in one file? Explain in
details. Thanks in Advance.
Answer Posted / sadhi
In java we have 4 specifiers i.e:
1.public
2.private
3.protected
4.default
public: we can access these instance variables and instance
methods at out side the class and inside the class.
2.private:using this specifier only we can access with in
the class. there is no possibility to access the outside.
3.protected:we can access the class with in the package.
4.default:Is generally act as public when we not specify
anything specifier.
so,we can use public class any where that mean these
variables and methods accessed by another class that's why
there is no need to create more public classes in single file
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
What is currentthread()?
What are the two environment variables that must be set in order to run any java programs?
What is the file extension for java?
Why char array is preferred over string for storing password?
What's the difference between comparison done by equals method and == operator?
What’s meant by anonymous class?
What are the advantages and disadvantages of object cloning?
Which of the classes will have more memory allocated?
What is anonymous inner class?
How hashset works internally in java?
What are the difference between string, string builder, and string buffer in java?
Why array is used in java?
Name four container classes.
What is the differences between c++ and java? Explain
What is an 8 bit word?