エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
I need closure | Mike Friedman [blogs.perl.org]
Musings about Perl, programming, and the art of good software Suppose you wanted to create a list... Musings about Perl, programming, and the art of good software Suppose you wanted to create a list of closures, each of which spits out a new number in sequence. Pretty easy: my @subs; foreach my $num( 1 .. 10 ) { push @subs, sub { return $num }; } print $_->(), "\n" for @subs; This is a simplified example of something I needed to do in Javascript, but I did it wrong. var funcs = [ ]; for( var i =
2010/03/01 リンク