这是我的代码
<%@ 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 ()
请帮我解决这个问题。
答案 0 :(得分:2)
您正在尝试调用接收两个输入参数(int a
和int b
)的方法,但您没有传递任何参数。
你应该这样做:
<%
pro(5,7);//5 and 7 are just an example
%>
而不是你所在的地方pro
。