2008-07-04から1日間の記事一覧

サブルーチンのリファレンス

Perl › サブルーチン › here サブルーチンのリファレンスとは、サブルーチンを指し示すもののことです。 # リファレンスを作成 my $twice_ref = \&twice; # デリファレンスして呼び出し my $twice_num = $twice_ref->($num); sub twice { return $_[0] * 2; …