Pixel Pedals of Tomakomai

北海道苫小牧市出身の初老の日常

2007-07-19から1日間の記事一覧

undefinedの作り方

"賢い初期かだなー。" に同感。こちらのエントリより。 // Global undefined variable window.undefined = window.undefined; 思わず唸ってしまいました。JavaScriptの仕様をよく考えた上での、洗練されたいいコードですね。

メソッドはインスタンスにboundされる

メソッドと関数は違うものっぽいです。 >>> class MyClass(object): ... def print_hello(self=None): print "hello! just say Hello!" ... >>> MyClass.print_hello() Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unbound method </module></stdin>…