Which is better?
List list = ... //get list from somewhere
for (int i=0; list != null && i < list.size(); i++){
// ...
}
or?
List list = ... //get list from somewhere
if (list != null){
for (int i = 0; i < list.size(); i++){
// ...
}
}
I got the idea from here: Scala or Java? Exploring myths and facts
?operator to check for null more succinctly. – BlackVegetable Jan 15 at 18:31?can only be used as a wildcard in generics or in the? :ternary operators - both have been there since Java 1.5 – assylias Jan 15 at 18:33