Java Extending class containing main method

11,600

Solution 1

Java allows you to define multiple classes within a single .java file with the condition that you can have at most one public class and if you do then the name of that public class must match the name of the .java file. In your case, the class declared public is Factorial and hence your file name has to be Factorial.java.

The inheritance is working as usual here and the public static void main() is inherited by Factorial which is why you see your output on executing java Factorial.

Solution 2

You can have more than one class in the same file, but only one public , as Base isn't a public class, but it's not a recommended practice.

Share:
11,600
user1107888
Author by

user1107888

Updated on July 23, 2022

Comments

  • user1107888
    user1107888 almost 2 years

    I have the following code as part of an assignment

    class Base {
      public static void main(String[] args){
        System.out.println("Hello World");
      }
    }
    
    public class Factorial extends Base{
    
    
    }
    

    My task is run the code and then explain the output.The name of the file is Factorial.java. The code runs without problem and Hello World is printed which to me is surprising. Before typing the code, I was thinking that it wont compile because the parent class, which is being extended should be in another file but now I am not so sure. Would appreciate soome clarification.