Let's assume I have a file named Main.java
with the following code:
public class Main {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
Is it put in a specific package, in (maybe?) an unnamed package?
A class that is not in a named package is in an unnamed package. Thus the full class name is
Main
.Such classes cannot be used from a named package, except via reflection.
The JLS says that: