0

我有一些伪类共享它们的大部分初始化。我决定取消这个初始化并创建一个基类,它们将从中继承。

function BaseClass(param1, param2) {
    ...
}

function SubClassA(param1) {
    ...
}

function SubClassB(param1) {
    ...
}

我想SubClass1并以下列方式SubClass2继承:BaseClass

SubClassA(param1)构造函数调用BaseClass(param1, "I am A.")

SubClassB(param1)构造函数调用BaseClass(param1, "I am B.")

因此BaseClass为它们添加了一些属性。然后两个子类自己做一些初始化。

现在我不能只做SubClassA.prototype = new BaseClass(),因为我希望超级构造函数接受参数。如何优雅地做到这一点?

4

5 回答 5

2

为此,我制作了一个名为Class.js - https://github.com/eppz/eppz-js - soley 的Objective-JavaScript 助手(无需应用任何额外的样板代码,也减少了原型的麻烦)。

使用它,您可以轻松地进行此设置:

var BaseClass = Class.extend
({
    param1: null,
    param2: null,

    construct: function(param1, param2)
    {
        this.param1 = param1;
        this.param2 = param2;
    },
});

var SubClassA = BaseClass.extend
({
    construct: function(param1)
    {
        this.super.construct(param1, 'This is A.');
    },
});

var SubClassB = BaseClass.extend
({
    construct: function(param1)
    {
        this.super.construct(param1, 'This is B.');
    },
});

var a = new SubClassA('A stuff.');
var b = new SubClassB('B stuff.');

console.log(a.param1); // A stuff.
console.log(b.param1); // B stuff.

console.log(a.param2); // This is A.
console.log(b.param2); // This is B.
于 2014-01-13T18:02:05.037 回答
2
function SubClassA(param1) {
    BaseClass.call(this, param1, "I Am A.");
}

function SubClassB(param1) {
    BaseClass.call(this, param1, "I Am B.");
}

当您执行new SubClassA(param1)new SubClassB(param1)基本构造函数时,将使用适当的参数调用。

SubClassA.prototype = new BaseClass()此外,除了定义基类之外,还有其他方法。您可以查看问题以获取一些详细信息。(免责声明:这个问题是我提出的。)

于 2012-04-04T14:25:35.720 回答
1

我有类似的东西,我这样做:

function SubClass (param1) {
    BaseClass.call(this, param1, "I am A.");
}

这为我提供了BaseClass的实例对象上的所有属性SubClass

编辑:这是关于call 函数的一些信息。它很有用,因为您可以指定this调用期间的内容并提供参数列表。

于 2012-04-04T14:26:23.913 回答
1

在 Rectangle 的原型中添加 area 方法。创建一个 Square 类,满足以下条件:

  1. 它是 Rectangle 的子类。
  2. 它包含一个构造函数,没有其他方法。
  3. 它可以使用 Rectangle 类的 area 方法来打印 Square 的面积

    class Rectangle {
    
      constructor(w, h) {
       this.w = w;
        this.h = h;
      }
    } 
    Rectangle.prototype.area = function()
    {
      var a = this.w * this.h;
      return a;
     }
     class Square extends Rectangle{
         constructor(r) {
            super(r, r)
           }
      }
    
      const rec = new Rectangle(3, 4);
      const sqr = new Square(3);
    
      console.log(rec.area());
      console.log(sqr.area());
    
于 2017-12-06T13:05:47.293 回答
0

这是一个带有 super 关键字的继承示例

    class Animal {
  constructor(animalName, country) {
    this.animalName = animalName;
    this.country = country;
  }

  update(animalName=null, country=null) {
    if (animalName) {
      this.animalName = animalName;
    }
    if (country) {
      this.country = country;
    }
  }

  show() {
    console.log("A");
    console.log("Animal Name: ", this.animalName);
    console.log("Animal Country: ", this.country);
  }
}

animal = new Animal("Elephant", "India");
animal.show();
animal.update();
animal.show();
animal.update("Dog");
animal.show();
animal.update(null, "Africa");
animal.show();
animal.update("Whale", "Antartica");
animal.show();

class Whale extends Animal {
  constructor(name, animalName, country) {
    super(animalName, country);
    this.name = name;
  }

  updateName(name=null) {
    if (name) {
      this.name = name;
    }
  }

  show() {
    console.log("W");
    super.show();
    console.log("Penguin Name: ", this.name);
  }
}

whale = new Whale("Ele", "Whale", "Goa");
whale.show();
whale.updateName();
whale.show();
whale.updateName("Molly");
whale.show();
whale.updateName(null);
whale.show();
animal.update("Ants");
whale.show();
animal.update(null, "Australia");
whale.show();
animal.update("Mites", "New Zealand");
whale.show();

class Penguin extends Animal {
  constructor(name, animalName, country) {
    super(animalName, country);
    this.name = name;
  }

  updateName(name=null) {
    if (name) {
      this.name = name;
    }
  }

  show() {
    console.log("P");
    super.show();
    console.log("Penguin Name: ", this.name);
  }
}

penguin = new Penguin("Molly", "Penguin", "Goa");
penguin.show();
penguin.updateName();
penguin.show();
penguin.updateName("Pikachu");
penguin.show();
penguin.updateName(null);
penguin.show();
animal.update("Cat");
penguin.show();
animal.update(null, "Russia");
penguin.show();
animal.update("Seal", "Artic");
penguin.show();

您可以在此处尝试此代码:https ://repl.it/@VinitKhandelwal/inheritance-javascript

于 2019-07-15T10:46:22.170 回答