[Solved] I’m not understanding what the error comment is trying to tell me


Change

     public Circle(radius,x, y){
       this(5, 3, 6);
   }

To

  public Circle(int radius,int x, int y){  //need to add types to parameters
              this.radius=radius;
              this.x=x;
              this.y=y;
   }

Or if you plan to use 5,3,6 as constant values add

  public Circle(){ 
              this.radius=5;
              this.x=3;
              this.y=6;
   }

1

solved I’m not understanding what the error comment is trying to tell me