计算对象中的值的数量

时间:2012-09-10 14:26:49

标签: java

我写了这样的代码:

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)...请告诉我怎么做...

1 个答案:

答案 0 :(得分:0)

使用静态计数器

private static counter = 0 ;

在检查lfp

的值后,在函数中增加此值