Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In any Java file, why can we have only one public class whose name is same as the Java file name?

share|improve this question
21  
Because he said so!! – jjnguy Aug 26 '10 at 18:57
To allow the compiler found easily the class definition. Its easier to compile that way. I don't have a reference ( that's why this is a comment ) but I think the answers below point to that. – OscarRyz Aug 26 '10 at 19:01
1  
In other words, invent your own programming language if you disagree :) – BalusC Aug 26 '10 at 19:01
@Balus, or use C# – jjnguy Aug 26 '10 at 19:08
@Justin, oh is that C#? :) – BalusC Aug 26 '10 at 19:16

6 Answers

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.

share|improve this answer
+1, totally agree, hell I miss this in C#. Even if I always use a separate file for each class/enum/struct I have seen horrible things :-) – Darin Dimitrov Aug 26 '10 at 19:01
3  
It should be even more strict and also apply to non-public classes. Most people do it the right way, but some still manage to make a mess by putting many default visible classes in one file. – starblue Aug 26 '10 at 21:34
Do you have a citation to support the claim that code readability was the reason why the designers chose this restriction? – Rohit Dec 21 '11 at 13:39
@starblue Don't get private classes and inner classes mixed up. Inner classes (that are not static; which, I agree, should be in their own file) allow direct access of the parent object, and all instances must be instantiated with an object.Class instead of just a Class. In contrast, they are functionally very different. – Qix Jan 16 at 7:48
@Qix I'm not talking about inner classes. – starblue Jan 16 at 9:44
show 1 more comment

According to this source, it is for efficient compilation :

In the sidebar it explains why: "This restriction is not yet enforced by the compiler, although it's necessary for efficient package importation"

It's pretty obvious - like most things are once you know the design reasons - the compiler would have to make an additional pass through all the compilation units (.java files) to figure out what classes were where, and that would make the compilation even slower.

The same applies also for imports of source files in IDEs. Another reason would be reasonable source sizes.

share|improve this answer

These are the rules. Although it is not quite true. You can define internal classes inside you "main" class like this:

public class A {  
   public class B {  
       ...  
   }  
}
share|improve this answer
1  
same valid for non-public top-level classes – Carlos Heuberger Aug 27 '10 at 23:11

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.

  1. Any two Java classes or interfaces in the same package cannot have the same name. File names would conflict.
  2. Any two Java packages in the same parent package could not have the same name. Folder paths would conflict.
  3. A class has visibility to all classes in the same package without modification to the classpath.
share|improve this answer

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.

share|improve this answer
Wrong about the runtime class-loading. If I have a file X.java that contains public class X and non-public class Y, then the compiler will create two files, X.class and Y.class. The class loader doesn't care whether the classes are public, and it has no way of telling whether they came from the same file. – Mike Baranczak Aug 26 '10 at 19:15
This does not impact the class loader lookup performance. Once compiled, it's not relevant to know from which source file the class comes from. For the compiler however, a reference to the not-yet-compiled class Y will force the compiler to examine each *.java files within the current package (typically, all the source files of the directory of the package). That's rather a minor detail. – gawi Aug 26 '10 at 20:11

Courtesy of Dr Heinz Kabutz and his excellent newsletter....

Why is each public class in a separate file?

This is a question that I have frequently been asked during my courses. Up to now I have not had a good answer to this question. In section 1, we read: "Although each Oak compilation unit can contain multiple classes or interfaces, at most one class or interface per compilation unit can be public".

In the sidebar it explains why: "This restriction is not yet enforced by the compiler, although it's necessary for efficient package importation"

It's pretty obvious - like most things are once you know the design reasons - the compiler would have to make an additional pass through all the compilation units (.java files) to figure out what classes were where, and that would make the compilation even slower.

share|improve this answer

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.