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

后端 未结 5 1488
栀梦
栀梦 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 15:02

    All your implementations of method output takes arguments. Supply the arguments and you should be able to compile.

    Like this:

    fresh.output(1, 2, 3, 4);
    

提交回复
热议问题