假设我有一个充满布尔值的数组,我想知道有多少元素是真的。
private bool[] testArray = new bool[10] { true, false, true, true, false, true, true, true, false, false };
int CalculateValues(bool val)
{
return ???
}
如果 val 为真,CalculateValues 应返回 6,如果 val 为假,则应返回 4。
明显的解决方案:
int CalculateValues(bool val)
{
int count = 0;
for(int i = 0; i<testArray.Length;i++)
{
if(testArray[i] == val)
count++;
}
return count;
}
有没有“优雅”的解决方案?