In any Java file, why can we have only one public class whose name is same as the Java file name?
|
|
It forces all Java code to be organized a certain way, which in the long run helps improve code readability. The Java designers chose a strict approach that enforces their idea of good design practices, and this is part of that theme. Contrast that with the anything-goes attitude in Perl. |
|||||||||||||
|
|
According to this source, it is for efficient compilation :
The same applies also for imports of source files in IDEs. Another reason would be reasonable source sizes. |
||||
|
|
|
These are the rules. Although it is not quite true. You can define internal classes inside you "main" class like this:
|
|||||
|
|
Java utilizes this convention to find class/interface bytecode by starting at the classpath and scanning for the package hierarchy in subdirectories. Filesystem representation of this hierarchy also enforces some basic rules.
|
|||
|
|
|
It enables a more efficient lookup of source (.java) and compiled (.class) files during compilation (import directive) and a more efficient classloading during execution. The idea being: if you know the name of a class, you know where it should be found for each classpath entry. No indexing required. |
|||||
|
|
Courtesy of Dr Heinz Kabutz and his excellent newsletter....
|
|||
|
|
protected by Joachim Sauer Feb 25 '11 at 10:15
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.