vote up 5 vote down star
1

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?

flag

75% accept rate
I changed $# to $#array in the title. You should realize that $# by itself is a is a magical variable (though I think it got removed in Perl 5.10) – Leon Timmermans Oct 27 '08 at 21:19
1  
Also, I'd like to point out you have a potential bug in your script. You should not return (undef), but simply say return. In list context, your function will evaluate as true! – Leon Timmermans Oct 27 '08 at 21:23

3 Answers

vote up 18 vote down check

$# 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

print scalar @ret;
link|flag
Also, if @ret has nothing in it, $#ret will return -1. – Barry Brown Oct 27 '08 at 21:22
vote up 15 vote down

edg is correct, but the original code is unnecessarily obtuse. In most cases, $#foo is a red flag that the code could be written more simply using scalar @foo.

return (undef) unless ($#ret >= 0);

unless foo >= bar is difficult to puzzle out. First, turn it into a positive statement.

return (undef) if ($#ret < 0);

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...

return (undef) if scalar @ret <= 0;

But you can't have a negative length array, so...

return (undef) if scalar @ret == 0;

And == is in scalar context, so that "scalar" is redundant...

return (undef) if @ret == 0;

But that's just a wordy way of saying "if @ret is false".

return (undef) if !@ret;

Which I think for simple statement modifiers is better expressed with unless.

return (undef) unless @ret;

Isn't that easier to follow?

As a final side-note, return undef is discouraged because it does the wrong thing in list context. You get back a list containing one undef element, which is true. Instead, just use a blank return which returns undef in scalar context and an empty list in list context.

return unless @ret;
link|flag
1  
And one place where $#foo isn't a red flag would be in an array slice... my @five_to_end = @foo[ 5 .. $#foo ]; – draegtun Oct 27 '08 at 23:42
Mighty fine simplification! – fatcat1111 Oct 20 at 18:44
vote up 4 vote down

Be aware that the $#array expression will return -1 when array has zero elements.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.