Typescript 从Array 继承时碰到的问题

Posted krucecoder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Typescript 从Array 继承时碰到的问题相关的知识,希望对你有一定的参考价值。

class TestArray extends Array<number>
{
    private _values;
    constructor(value) {
        super();
        this._values = value;
       
    }

    TestMethod() {
        alert("hello, world");
    }
}

var testArr = new TestArray([]);
testArr.TestMethod();

上面的代码可以编译通过,运行时提示TestMethod不存在,在构造函数中加上Object["setPrototypeOf"](this, TestArray.prototype); 就好了。

相关的链接

https://github.com/Microsoft/TypeScript/wiki/FAQ#why-doesnt-extending-built-ins-like-error-array-and-map-work

 

https://stackoverflow.com/questions/14000645/extend-native-javascript-array

 

标准的Error, Array, Map 都有这个问题。

 

class TestArray extends Array<number>
{
    private _values;
    constructor(value) {
        super();
        this._values = value;
        Object["setPrototypeOf"](this, TestArray.prototype);
    }

    TestMethod() {
        alert("hello, world");
    }
}

var testArr = new TestArray([]);
testArr.TestMethod();

 

以上是关于Typescript 从Array 继承时碰到的问题的主要内容,如果未能解决你的问题,请参考以下文章

从 Tree 类继承 Typescript(访问父元素的属性)

Typescript中的协变和逆变

Typescript中的协变和逆变

Typescript中的协变和逆变

Typescript中的协变和逆变

从 Typescript 项目中的外部文件继承并声明放大生成的类型