int无法转换为int []

时间:2016-01-06 01:11:18

标签: arrays

我计算了数组中的所有具体数字但是我一直收到错误int cannot be converted to int[]

之前已在程序中定义变量valtwo,因此这不是错误。

public static int[] removeVal(int[] two, int val)
{
    int count=0;
    for (int a=0; a<two.length; a++)
    {
        if (two[a]==val)
            count++;
    }
    return count;
}

1 个答案:

答案 0 :(得分:-1)

该方法返回一个int数组,但是你只返回一个int,而不是一个int数组。