I created a public and private class in the same java file.It is not getting compiled. But if I keep a public class and a class with out an access specifier.it is gets compiles. what is the reason for this ?
|
|
Toplevel private class is nonsense, because no other class can access to this class. That is why you get compilation error.. JLS states that ;
|
|||
|
|
|
If you try to create a .java file structured so that there are more than one public class definition or a private class definition in the root structure, as so:
or
there will be an error. However, you can define your private class within a public class class, like this:
with only one base class within the java file, and this will compile. EDIT: Corrected information about legal class structures based on Joachim Sauer's comment. |
|||||||||
|
|
It's illegal to specify outer classes as More info: http://en.wikibooks.org/wiki/Java_Programming/Access_Modifiers |
|||
|
|
|
You can not declare class private unless is enclosed within another class. This is by specification, JLS - 8.1.1 Class Modifiers |
|||
|
|