How can one prove that the array is not null but empty using one line of code?

Q

How can one prove that the array is not null but empty using one line of code?

✍: Guest

A

Print args.length. It will print 0. That means it is empty. But if it would have been null then it would have thrown a NullPointerException on attempting to print args.length.

2013-05-07, 1957👍, 0💬