'Javascript: The Good Parts'提供有关“构造函数调用模式”(第29-30页)的示例。

var Quo = function (string) {
    this.status = string;
};

Quo.prototype.get_status = function() {
    return this.status;
};

var myQuo = new Quo("confused");

document.writeln(myQuo.get_status()); // returns confused


该部分以"Use of this style of constructor functions is not recommended. We will see better alternatives in the next chapter."结尾

该示例有什么意义,强烈建议不要使用此模式?

谢谢。

最佳答案

本节结尾为:


  不建议使用这种样式的构造函数。在下一章中,我们将看到更好的替代方法。


粗体文本表示您应该阅读下一章以找到更好的替代方法。

因此,继续进行。

10-06 00:48