謎's キッチン

謎のひとりごと。Amazon欲しい物リストはこちら: https://www.amazon.co.jp/hz/wishlist/ls/CCPOV7C6JTD2

2005-10-26から1日間の記事一覧

nsISimpleEnumeratorをラッピング

Fx

function list(_enum,type){ this._enum=_enum; this.type=type; } list.prototype={ cache:new Array(), get:function(aNum){ if(aNum==-1)return; if(this.cache[aNum])return this.cache[aNum]; while(this._enum.hasMoreElements()){ this.cache.push(th…

デザインパターン

VBA->JS(非オブジェクト)->VB.NET/C#.NET(かじる程度に)->JS(オブジェクト)->Dと入っていったんですがデザインパターンというのがまるっきり分からない。 というか必要に感じなかったのですがStructure Wikiの作成中にどういう風に実装すればいいのか迷った…