2

问题

如何检索孩子的(任何继承深度级别的)构造函数名称?

解释

让我们有Cat一个扩展类的Model类。以及Kitten扩展类的Cat类。

我想要的是在创建类实例时打印到控制台(例如)字符串"Kitten",在创建Kitten类实例"Cat"时打印到字符串Cat

诀窍是输出构造函数名称的代码应该位于基Model类(对于所示示例)。

注意:我擅长 Ruby,与 Javascript 相比(在我自己的范围内)。所以“伪代码”应该是 Ruby-ish 的一个 =)

# pseudo-Ruby-code
class Model
  def initialize
    console.log(self.constructor.toString())
  end
end

class Cat << Model
  # something goes here
end

class Kitten << Cat
  # and here too
end

# shows "Model"
Model.new

# shows "Kitten"
Kitten.new

# shows "Cat"
Cat.new
4

1 回答 1

1

这就是我使用 Coffee-Script 的方式。

class Model

    constructor: (animal = "Model") ->

        console.log animal;



class Cat extends Model

    constructor: (animal = "Cat") ->

        super animal


class Kitten extends Cat

    constructor: (animal = "Kitten") ->

        super animal

new Kitten()

// => Kitten

这是编译后的 JavaScript:

var Cat, Kitten, Model,
  __hasProp = {}.hasOwnProperty,
  __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };

Model = (function() {

  function Model(animal) {
    if (animal == null) {
      animal = "Model";
    }
    console.log(animal);
  }

  return Model;

})();

Cat = (function(_super) {

  __extends(Cat, _super);

  function Cat(animal) {
    if (animal == null) {
      animal = "Cat";
    }
    Cat.__super__.constructor.call(this, animal);
  }

  return Cat;

})(Model);

Kitten = (function(_super) {

  __extends(Kitten, _super);

  function Kitten(animal) {
    if (animal == null) {
      animal = "Kitten";
    }
    Kitten.__super__.constructor.call(this, animal);
  }

  return Kitten;

})(Cat);

new Kitten();

你可以在这里自己尝试

于 2013-01-23T16:26:21.323 回答