javascript多维对象

发布于 2024-11-06 00:21:56 字数 609 浏览 0 评论 0原文

我试图使用以下代码在 JavaScript 中定义一个多维对象:

function A(one, two) {
    this.one = one;
    this.inner.two = two;
}

A.prototype = {
    one: undefined,
    inner: {
        two: undefined
    }
};
A.prototype.print = function() {
    console.log("one=" + this.one + ", two=" + this.inner.two);
}

var a = new A(10, 20);
var b = new A(30, 40);
a.print();
b.print();

结果是:

one=10, two=40
one=30, two=40

,但我期望

one=10, two=20
one=30, two=40

我做错了什么? 变量inner是类变量,而不是实例吗?

JavaScript 引擎:Google V8。

I'm trying to define a multidimensional object in JavaScript with the following code:

function A(one, two) {
    this.one = one;
    this.inner.two = two;
}

A.prototype = {
    one: undefined,
    inner: {
        two: undefined
    }
};
A.prototype.print = function() {
    console.log("one=" + this.one + ", two=" + this.inner.two);
}

var a = new A(10, 20);
var b = new A(30, 40);
a.print();
b.print();

The result is:

one=10, two=40
one=30, two=40

, but I expect

one=10, two=20
one=30, two=40

What am I doing wrong?
Is a variable inner a class variable, not an instance?

JavaScript engine: Google V8.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

年华零落成诗 2024-11-13 00:21:56

因为 inner 的对象字面量为所有实例共享。它属于原型,因此每个实例共享相同的对象。为了解决这个问题,您可以在构造函数中创建一个新的对象文字。

Because the object literal for inner gets shared for all instances. It belongs to the prototype and thus every instance shares the same object. To get around this, you can create a new object literal in the constructor.

你是暖光i 2024-11-13 00:21:56

inner 部分是一个全局对象,未绑定到一个实例。

The inner part is a global object not bound to one instance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文