首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

RegExp.@@species

RegExp[@@species]访问器属性返回RegExp的构造器。

语法

代码语言:javascript
复制
RegExp[Symbol.species]

描述

species访问器属性返回RegExp对象的默认构造器。子类构造器可能会覆盖它,来修改构造器的指派。

示例

species属性返回默认构造器函数,它是用于RegExp对象的RegExp构造器:

代码语言:javascript
复制
RegExp[Symbol.species]; // function RegExp()

在派生的正则类(也就是你自定义的正则类MyRegExp)中,MyRegExp的 species 是MyRegExp构造器。但是,你可能希望覆盖它,以便在你的派生类方法中,返回RegExp父类对象:

代码语言:javascript
复制
class MyRegExp extends RegExp {
  // Overwrite MyRegExp species to the parent RegExp constructor
  static get [Symbol.species]() { return RegExp; }
}

规范

Specification

Status

Comment

ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'get RegExp @@species ' in that specification.

Standard

Initial definition.

ECMAScript 2017 Draft (ECMA-262)The definition of 'get RegExp @@species ' in that specification.

Draft

?

浏览器兼容性

Feature

Chrome

Firefox (Gecko)

Internet Explorer

Opera

Safari

Basic support

?

49 (49)

?

?

?

Feature

Android

Chrome for Android

Firefox Mobile (Gecko)

IE Mobile

Opera Mobile

Safari Mobile

Basic support

?

?

49.0 (49)

?

?

?

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com