Counting sheep...
Posted 391halsey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Counting sheep...相关的知识,希望对你有一定的参考价值。
public class Counter {
public int countSheeps(Boolean[] arrayOfSheeps) {
int counter = 0;
for (Boolean sheep : arrayOfSheeps) {
if (sheep != null && sheep) {
counter++;
}
}
return counter;
}
}
刚开始,用的if (sheep)
,报错java.lang.NullPointerException空指针异常。
当一个对象的值为空时,并且没有判断为空的情况。可以试着把下面的代码前加一行代码:
if(rb!=null);
以上是关于Counting sheep...的主要内容,如果未能解决你的问题,请参考以下文章
CodeForces - 948A Protect Sheep水题