gpt4 book ai didi

javascript - 构造函数的 "instance"是否有严格的定义?

转载 作者:行者123 更新时间:2023-12-03 10:56:05 25 4
gpt4 key购买 nike

function Foo() {}

var f1 = new Foo(); // This is clearly an instance of Foo.

var f2 = Object.create(Foo.prototype); // Is this an instance of Foo?

显然f2 instanceof Foo返回true,但我是在更一般的面向对象的意义上谈论的。

最后,f1f2 之间有什么区别,以便 Chrome 在将它们打印到控制台时能够区分它们?

console.log(f1); //  Foo {}
console.log(f2); // Object {}

最佳答案

Is there a rigorous definition of an “instance” of a constructor function?

没有。您可以使用instanceof的定义,即一个对象需要继承各自的原型(prototype)对象。但在 OOP 意义上,通常也暗示该对象是通过调用构造函数来构造的;或者至少以某种方式实现接口(interface)(相同的属性),因为它将在构造函数中设置。

Finally, what is the difference between f1 and f2 such that Chrome can distinguish between them when printing them to the console?

这是 Chrome 内部的东西,仅用于在控制台中进行 pretty-print (好吧,也许 V8 基于这样的标签做了一些其他优化)。

从 JavaScript 的 Angular 来看,这两个对象是无法区分的。

关于javascript - 构造函数的 "instance"是否有严格的定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28263242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com