日々精進

新しく学んだことを書き留めていきます

2011-09-11から1日間の記事一覧

Class Systemその4

IT

3. Statics staticsプロパティでstaticメンバを定義できるよ。 Ext.define('Computer', { statics: { instanceCount: 0, factory: function(brand) { //staticメソッド内でのthisはクラスそのものを指すよ return new this({brand: brand}); } }, config: { …