prosedure_jsp类型中的方法pro(int,int)不适用于arguments()

时间:2016-12-15 19:17:13

标签: java jsp

这是我的代码

<%@ page import="static java.lang.System.out"%>
<%!
    void pro(int a, int b)
    {
        a = 1;
        b = 3;
        int luas;
        luas = a*b;

        out.print(a);
    }
%>
<%
    pro();
%>

和按摩错误是:

An error occurred at line: 16 in the jsp file: /prosedure.jsp
The method pro(int, int) in the type prosedure_jsp is not applicable for the arguments ()

请帮我解决这个问题。

1 个答案:

答案 0 :(得分:2)

您正在尝试调用接收两个输入参数(int aint b)的方法,但您没有传递任何参数。

你应该这样做:

<%
    pro(5,7);//5 and 7 are just an example
%>

而不是你所在的地方pro