You need to sign in to do that
Don't have an account?

best way to check null in collections.....
Hi All,
Could you please let me know which are the best practice to check null in List, Map, Set to avoid nullpointer exception....
Regards
Could you please let me know which are the best practice to check null in List, Map, Set to avoid nullpointer exception....
Regards
In some cases, you might face some weird issues with such comparisons, the workaround then is to check for both :D
For Collections I use size() method.
...
}