How to fix “No overload for method ' ' takes 0 arguments”?

后端 未结 5 1474
栀梦
栀梦 2020-11-30 14:24

How can I fix this error?

\"No overload for method \'output\' takes 0 arguments\".

The error is at the very bottom at \"fresh.o

5条回答
  •  粉色の甜心
    2020-11-30 14:52

    You're calling the output method with 0 (zero) parameters, but you have declared it to receive 4 double values. The compiler doesn't know what it should call, since there is no output method with no parameter.

提交回复
热议问题