How do dollar and number sign together work in perl?

前端 未结 3 620
天涯浪人
天涯浪人 2021-02-05 07:06

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 $         


        
3条回答
  •  青春惊慌失措
    2021-02-05 07:59

    The use is mentioned in first example in perldata. It denotes index of last item in the array.

    Btw, you can also use

    $array[-1]
    

    to get last item.

提交回复
热议问题