Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
perl コードの一部を囲むサブルーチンの名前を取得する方法はありますか? 例えば:
sub foo { print where_am_i(); }
を出力します'foo'。
'foo'
呼び出し元関数を使用します。
my $function = (caller(0))[3];