Why only one Class is public in one file? Explain in
details. Thanks in Advance.
Answers were Sorted based on User's Feedback
Answer / ganesh slv
Sorry for all my answers above.. I misunderstood lot of things.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / madan
public static void main(String args[])
this is command line args.. we need to declare public because, this is the main method, from any class, any package, we have to call, so it will be public.. same as class is also public...suppose, if u declare two class as public, it show error, we have to save a file somefile.java...
i think u understood based on above explanation..
| Is This Answer Correct ? | 0 Yes | 2 No |
What are the benefits of operations?
What is the use of static methods?
Can you call a private data from an inner class?
How do you relate a Interface to a Class? Tell me in Detail?
Can a class have more than one object?
What is a concrete classes? Is Java object class is concrete class?
What is Vector?Can you elaborate how Vector is Thread safe?
how to create multithreaded program? Explain different ways of using thread? When a thread is created and started, what is its initial state? : Java thread
Does list maintain insertion order java?
Does java allow overriding static methods ?
what is Assertion?
Define interface?