I'm looking at the following code snippet:
my @ret = <someMethod>
return (undef) if( $DB_ERROR );
return (undef) unless ($#ret >= 0);
Does $# just give you a count of elements in a array?
|
1
|
I'm looking at the following code snippet:
Does
|
||||||
|
|
|
$# gives you the index of the last element, so if array @ret has 2 elements then $#ret == 1. And, as noted by Barry Brown, an empty array gives $#ret == -1. To get the length use
|
|||
|
|
|
edg is correct, but the original code is unnecessarily obtuse. In most cases,
When is $#ret < 0? When it's -1. A $#ret of -1 is an array of length 0. So the above can be written much more simply as...
But you can't have a negative length array, so...
And == is in scalar context, so that "scalar" is redundant...
But that's just a wordy way of saying "if
Which I think for simple statement modifiers is better expressed with unless.
Isn't that easier to follow? As a final side-note,
|
||||||
|
|
|
Be aware that the $#array expression will return -1 when array has zero elements. |
||
|
|