Re: items in array

[email protected] (Gunnar Hjalmarsson)
Newsgroups perl.beginners
Message-ID <[email protected]>
[ Please do not top-post! ]

Tech list wrote:
> Dr.Ruud wrote:
>> "Li, Jialin" schreef:
>>> On Wed, May 14, 2008 at 4:01 PM, Tech list
>>> <[email protected]> wrote:
>>>> what is the correct way to get the number of items in an array?
>>>>
>>>> I used to use $#array
>>>
>>> $#array is the index of the last item, so the number should be
>>> $#array + 1, or
>>> scalar @array
>> 
>> Please read perlvar about $[. Normally it is 0, but you can set it to a
>> different value, like -3 or 27.
>> 
>> The $#array is the last index of @array, so $array[$#array] is
>> equivalent to $array[-1].
>> 
>> The number of items in an array is returned by @array in scalar context,
>> examples:
>> 
>>     scalar(@array)
>> 
>>     (0+ @array)
>> 
>>     if (0 < @array) { ... }
>> 
>>     if (@array) { ... }
> 
> Is $#array deprecated or not?

It's not deprecated. But, as others already have explained, it does not 
represent the number of items in an array, which is what you asked 
about, after all.

-- 
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.