我可以从Typescript中的父类的构造函数触发子类的成员函数吗?

问题描述 投票:0回答:1
class Person {
    contructor() {
        this.someSubclassMember();
    }
}

class Student {
    contructor() {
        super();
        this.someSubclassMember.bind(this); 
    }

    someSubclassMember() {

    }
}

我知道我可以为somSubclassMember定义protected,但我想从父类迭代子类原型?

这可行吗?谢谢

PS:我看到它在coffeescript中可行。这是coffeescript编译的代码

  module.exports = ProviderOS = (function(superClass) {
    extend(ProviderOS, superClass);

    function ProviderOS() {
      this.doInternalGetJobCollection = bind(this.doInternalGetJobCollection, this);
      this.doCreateJob = bind(this.doCreateJob, this);
      this.doCreateOnetimeJob = bind(this.doCreateOnetimeJob, this);
      this.doCreateHourlyJob = bind(this.doCreateHourlyJob, this);
      this.doCreateDailyJob = bind(this.doCreateDailyJob, this);
      this.doExecuteJob = bind(this.doExecuteJob, this);
      this.doGetServerInformation = bind(this.doGetServerInformation, this);
      this.getBaseName = bind(this.getBaseName, this);
      this.onInit = bind(this.onInit, this);
      return ProviderOS.__super__.constructor.apply(this, arguments);
    }

在这种情况下,我可以从超类访问子类成员。但是在访问之前需要调用super的打字稿。

typescript class inheritance coffeescript super
1个回答
0
投票

我自己解决了。超类有一个名为(init)的成员函数,子类会覆盖它。在这种情况下,超类做init()是调用子类的init。从子类,我可以使用它作为子类的构造函数。

© www.soinside.com 2019 - 2024. All rights reserved.