发送注册表单时出现运行时错误: 我的代码:
public static int countLocationOccurrences(List<YourClass> collections, String location) {
int count = 0;
for(YourClass item : collections) {
if (item.getLocation().equals(location)) {
count++;
}
}
return count;
}
我收到错误:System.NullReferenceException 在线上errorText =&#34; test2&#34;
我需要做什么?
*编辑:不是它不重复,因为它的特定代码我得到了这个错误,我之前读的是NullReferenceException并且所有答案都没有帮助我。