[Solved] Main method not found in class Base [closed]


If you want to run the Base class, you should create a class Base (in a File Base.java, and delete the file Child.java before…) and write this inside it:

package my.stuff;

 class Child extends Base
{
   void get(int x,int y)
   {
      this.x=x;
      this.y=y;
   }


}

public class Base
{
   int x;
   int y;
   void show()
   {
      System.out.println(x);
      System.out.println(y);
   }

   public static void main(String[] args)
   {
      Child c1=new Child();
      c1.get(10,20);
      c1.show();
   }
}

solved Main method not found in class Base [closed]