Hi I had a question related to Integer comparison.
say I have two Integer count1 and count2, I want to implement the following action:
if (count1 bigger than count2)
do something;
else
do something else;
I know I can use count1.compareTo(count2) > 0. however, when count1 or count2 is a null value, program will return a NullPointerException. Is there a way to implement that if count1 or count2 is a null value, return false when doing comparison between count1 and count2?