java programming error: actual and formal argument lists differ in length
This question already has an answer here:
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上一篇: *方法*调用布尔值