java.util.List.isEmpty()
リスト自体がであるかどうかを確認しますかnull
、それとも自分で確認する必要がありますか?
例えば:
List<String> test = null;
if (!test.isEmpty()) {
for (String o : test) {
// do stuff here
}
}
NullPointerException
テストがであるため、これはスローされnull
ますか?