• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

“{}”:间的差异和“new Object”

用户头像
it1352
帮助1

问题说明


可能重复:

创建对象 - 新对象或对象文字符号?

以下内容之间究竟有什么区别:

What exactly is the difference between the following:

var myData = new Object();
myData["name"] = "ATOzTOA";
myData["site"] = "atoztoa";

var myData = {};
myData["name"] = "ATOzTOA";
myData["site"] = "atoztoa";

更新

我得到的是这个......

What I got is this...

var myData = {
    "name" : "ATOzTOA",
    "site" : "atoztoa",
};

var myData = new Object({
    "name" : "ATOzTOA",
    "site" : "atoztoa",
});

我是对的吗?

正确答案

#1

没有区别(技术上)。 {} 只是新对象()快捷方式

There is no difference (technically). {} is just a shortcut for new Object().

但是,如果指定对象文字,则可以直接形成具有多个属性的新对象。

However, if you assign an object literal, you may directly form a new object with multiple properties.

var myData = {
    name:   'ATOzTOA',
    size:   'atoztoa'
};

..这可能会更方便。此外,它减少了对象的访问,并最终更快。但这是关于微观优化的。更重要的是打字要少得多。

..which might feel more convenient. Also, it reduces the access on the object and is ultimately faster. But that is about microoptimizations. More important is that its a lot less to type.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcggcfe
系列文章
更多 icon
同类精品
更多 icon
继续加载