在AngularJS Typescript中从父类创建子实例

如何从父方法为子类创建实例?

例如:

class Vehicle {
    public getNewInstance(): ICar {
        // What should be here? 
        return new XXXXXXXX; 
    }
}

class Car extends Vehicle {
    public getWheels(): Number {
        return 4;
    }
}

现在,我需要这样做以获得一个新的Car实例:

Car.getNewInstance();

车辆有许多扩展类,我防止在每个孩子中重复代码.此外,儿童班也有更多的孩子.

解决方法

您的代码不会这样做,因为您需要静态方法而不是实例方法.

你可以这样做:

class Vehicle {
    public static getNewInstance(): Vehicle {
        return new this();
    }

    public getWheels(): Number {
        throw new Error("unknown number of wheels for abstract Vehicle");
    }
}

class Car extends Vehicle {
    public getWheels(): Number {
        return 4;
    }
}

因为Vehicle现在有一个静态getNewInstance方法,所以所有扩展类也都有.
所以:

let v = Vehicle.getNewInstance();
console.log(v); // Vehicle {}
console.log(v.getWheels()); // Uncaught Error: unknown number of wheels for abstract Vehicle

let c = Car.getNewInstance();
console.log(c); // Car {}
console.log(c.getWheels()); // 4

编辑

如果我误解了你并且你确实想在现有实例上调用getNewInstance,那么你可以这样做:

abstract class Vehicle {
    public abstract getNewInstance(): Vehicle;
}

class Car extends Vehicle {
    public getNewInstance(): Vehicle {
        return new Car();
    }

    public getWheels(): Number {
        return 4;
    }
}

或这个:

class Vehicle {
    private ctor: { new (): Vehicle };

    constructor(ctor: { new (): Vehicle }) {
        this.ctor = ctor;
    }

    public getNewInstance(): Vehicle {
        return new this.ctor();
    }
}

class Car extends Vehicle {
    constructor() {
        super(Car);
    }

    public getWheels(): Number {
        return 4;
    }
}

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...