JavaScript では、プロパティとメソッドを使用してカスタム オブジェクトを作成するための 2 つの異なるアプローチ、つまりプロトタイプの方法とクロージャの方法を提供します。
このメソッドは JavaScript によりネイティブであり、プロトタイプ検索プロパティを利用します。
function Shape(x, y) { this.x = x; this.y = y; } Shape.prototype.toString = function() { return 'Shape at ' + this.x + ', ' + this.y; }; function Circle(x, y, r) { Shape.call(this, x, y); // Invoke base constructor this.r = r; } Circle.prototype = new Shape(); // Set subclass prototype Circle.prototype.toString = function() { return 'Circular ' + Shape.prototype.toString.call(this) + ' with radius ' + this.r; };
このメソッドは、プロトタイプの継承を完全に回避し、インスタンスごとに新しいクロージャーを作成します。
function Shape(x, y) { var that = this; this.x = x; this.y = y; this.toString = function() { return 'Shape at ' + that.x + ', ' + that.y; }; } function Circle(x, y, r) { var that = this; Shape.call(this, x, y); // Invoke base constructor this.r = r; var _baseToString = this.toString; this.toString = function() { return 'Circular ' + _baseToString.call(that) + ' with radius ' + this.r; }; } var myCircle = Circle(); // Using `new` is optional here
どちらの方法にも利点があり、
プロトタイプの方法
クロージャ方法
最終的に、最良の選択は、特定のプロジェクトの要件と好みによって異なります。
以上がプロトタイプとクロージャ: JavaScript オブジェクトの作成方法はどれが適していますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。