我写了这样的代码:
public void SetPosition(int lfp, int lhp, int rfp, int rhp)
{
leftFront = lfp;
leftHind = lhp;
rightFront = rfp;
rightHind = rhp;
System.out.print((lfp+1) + "...");
System.out.print((lhp+1) + "...");
System.out.print((rfp+1) + "...");
System.out.println((rhp+1) + "...");
}
现在我想算一下我的输出中有多少(lfp + 1)...请告诉我怎么做...
答案 0 :(得分:0)
使用静态计数器
private static counter = 0 ;
在检查lfp
的值后,在函数中增加此值