2008-07-01から1ヶ月間の記事一覧

追記

Pythonチュートリアルにしっかりと書いてありますね。 http://www.python.jp/doc/release/tut/node6.html#SECTION006710000000000000000 4.7.1 デフォルトの引数値 デフォルト値は、関数が定義された時点で、関数を 定義している 側のスコープ (scope) で評…

C#でもやってみる

C#でも同じことをやってみました。これではだめで、 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Func<int, int, int>[] lams = new Func<int, int, int></int,></int,>…

Pythonのリスト内包のスコープ

http://d.hatena.ne.jp/EnogunoCap/20080703/1215056587 「Pythonで遊んでたら疑問点が・・・」を見ていたら C#で同じ話があったことを思い出しました。http://www.atmarkit.co.jp/fdotnet/csharp20/csharp20_05/csharp20_05_02.html上のリンク先で載ってま…