java programming error: actual and formal argument lists differ in length

This question already has an answer here:

  • Java Error - Actual and formal argument lists differ in length 2 answers

  • You should remove the parameter from the displayMenu method.

    Use

    public static int displayMenu()
    

    instead of

    public static int displayMenu(int userSelection)
    

    这个错误告诉你到底发生了什么错误:你在没有参数的情况下调用displayMenu,并且它需要一个int值。

    链接地址: http://www.djcxy.com/p/86630.html

    上一篇: *方法*调用布尔值

    下一篇: java编程错误:实际和形式参数列表的长度不同