From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../global_objects/array/@@species/index.html | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 files/ja/web/javascript/reference/global_objects/array/@@species/index.html (limited to 'files/ja/web/javascript/reference/global_objects/array/@@species') diff --git a/files/ja/web/javascript/reference/global_objects/array/@@species/index.html b/files/ja/web/javascript/reference/global_objects/array/@@species/index.html new file mode 100644 index 0000000000..24bb647f43 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/array/@@species/index.html @@ -0,0 +1,73 @@ +--- +title: 'get Array[@@species]' +slug: Web/JavaScript/Reference/Global_Objects/Array/@@species +tags: + - Array + - JavaScript + - Method + - Prototype +translation_of: Web/JavaScript/Reference/Global_Objects/Array/@@species +--- +
{{JSRef}}
+ +

Array[@@species] アクセサープロパティは、Array コンストラクターを返します。

+ +

構文

+ +
Array[Symbol.species]
+
+ +

返値

+ +

{{jsxref("Array")}} コンストラクターです。

+ +

解説

+ +

species アクセサープロパティは、 Array オブジェクトの既定のコンストラクターを返します。サブクラスのコンストラクターはコンストラクターに代入することで、これをオーバーライドすることができます。

+ +

+ +

通常のオブジェクトの spicies

+ +

species プロパティは、Array オブジェクトの既定のコンストラクター関数である Array コンストラクターを返します。

+ +
Array[Symbol.species]; // Array() 関数
+ +

派生オブジェクトの spicies

+ +

派生コレクションオブジェクト (たとえば、独自の配列である MyArray) では、MyArray の species は MyArray コンストラクターです。しかし、派生クラスのメソッドで、親である Array オブジェクトを返すためにこれをオーバーライドしたいかもしれません。

+ +
class MyArrayBuffer extends ArrayBuffer {
+  // MyArray species を親である ArrayBuffer コンストラクタにオーバーライド。
+  static get [Symbol.species]() { return ArrayBuffer; }
+}
+ +

仕様書

+ + + + + + + + + + + + +
仕様書
{{SpecName('ESDraft', '#sec-get-array-@@species', 'get Array [ @@species ]')}}
+ +

ブラウザーの互換性

+ +
+ + +

{{Compat("javascript.builtins.Array.@@species")}}

+
+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf