使用count方法并为每个循环计算数组中元素的数量

时间:2014-10-20 04:20:05

标签: java arrays methods foreach count

我知道如何计算数组中元素的数量而不是每个循环,但我必须为每个循环使用它。这是我到目前为止所得到的。我无法弄清楚如何使用每个循环来计算数组中元素的数量。结果应该是6.我将不胜感激任何帮助。非常感谢你。

public class Count{
 public Count(){
    int a[] = {7, 8, 9, 9, 8, 7};
    System.out.println(count(a));        
 }

 public int count(int count[]){
    for (int c : count)
    return c;
 }
}

1 个答案:

答案 0 :(得分:0)

public int count(int count[])
{
    int i = 0;
    for (int c : count) {
        i++;
    }
    return i;
}

对于数组中的每个元素,这会将i增加1,最终返回i,这将是6(在您的情况下)