私は C/C++ 構文ファミリーから来ているので、ここにあるいくつかのことは私にはなじみがありません。
constructor: function(manufacturer, model, topSpeed, maxAltitude){
// initialise our config object
this.initConfig();
if(maxAltitude){
this.setMaxAltitude(maxAltitude);
}
// call the parent class' constructor
this.callParent([manufacturer, model, topSpeed]);
}
では、親のコンストラクターを呼び出すときに、[] にデータを含めるのはなぜでしょうか? C# で同様のことを行った場合、通常の関数と同じようにデータを送信するだけです。
これだけではありません:
this.callParent(manufacturer, model, topSpeed);
この例は
Ext-JS 4 Web アプリケーション開発クックブック
しかし、それは JavaScript の問題だと思います。
ありがとうございました。