Today I have encountered a problem that required me to determine the maximum index of an array in perl. I used to do it this way:
my @array = (1, 2, 3);
print $array[@array - 1];
But today I have stumbled upon this code:
my @array = (1, 2, 3);
print $array[$#array];
I couldn't find anything on that matter in the docs. What exactly is that $# construct? Is that an operator? And how does it work, is it faster than the first piece of code? Does it always return the maximum array index? Is it deprecated or not?
I know that's a lot of questions, but they all can be summed up by one, and that's what I really want to know: How does it work?
$#arraywill tell you the number of the last index, but if you just want to get the last item (and you don't care about its actual index) it's much easier to use$array[-1]– friedo Dec 23 '11 at 18:36