- $#
-
$#
was a variable that could be used to format printed numbers. After a deprecation cycle, its magic was removed in Perl v5.10.0 and using it now triggers a warning:$# is no longer supported
.$#
は、表示番号をフォーマットするために使われていました。 非推奨化の後、このマジックは Perl v5.10.0 で取り除かれ、警告を 引き起こします:$# is no longer supported
.This is not the sigil you use in front of an array name to get the last index, like
$#array
. That's still how you get the last index of an array in Perl. The two have nothing to do with each other.これは
$#array
のように最後のインデックスを得るために配列名の前に付ける 印ではありません。 これは今でも Perl で配列の最後のインデックスを得る方法です。 これら二つには互いに何の関係もありません。Deprecated in Perl 5.
Perl 5 で非推奨となりました。
Removed in Perl v5.10.0.
Perl v5.10.0 で削除されました。