看下例子吧:public int sumInt(int a,int b) //此处括号内的就是形参{return a+b;}..........//此处在某个方法的内部int mo=sumInt(77,110); //此处77与110即是实参,意思是调用时的实际参数