aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/object/index.html
blob: e143a7d49dceddc13b0e205932dc144abbb4a0d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
---
title: Object
slug: Web/JavaScript/Reference/Global_Objects/Object
tags:
  - Constructor
  - JavaScript
  - Object
  - 对象
  - 构造器
translation_of: Web/JavaScript/Reference/Global_Objects/Object
---
<div>{{JSRef}}</div>

<p><code><strong>Object</strong></code> 是 JavaScript 的一种 <a href="/zh-CN/docs/Web/JavaScript/Data_structures">数据类型</a> 。它用于存储各种键值集合和更复杂的实体。Objects 可以通过 <code>{{jsxref("Object.prototype.Object", "Object()")}}</code> 构造函数或者使用 <a href="/zh-CN/docs/Web/JavaScript/Reference/Operators/Object_initializer">对象字面量</a> 的方式创建</p>

<h2 id="描述">描述</h2>

<p>
  在JavaScript中,几乎所有的对象都是<code>Object</code>类型的实例,它们都会从<code>Object.prototype</code>继承属性和方法,虽然大部分属性都会被覆盖(shadowed)或者说被重写了(overridden)。
  除此之外,<code>Object</code> 还可以被故意的创建,但是这个对象并不是一个“真正的对象”(例如:通过 <code>{{jsxref("Object.create()", "Object.create(null)")}}</code>),或者通过一些手段改变对象,使其不再是一个“真正的对象”(比如说: <code>{{jsxref("Object.setPrototypeOf")}}</code>)。
</p>

<p>通过原型链,所有的 <code>object</code> 都能观察到 Object 原型对象(Object prototype object)的改变,除非这些受到改变影响的属性和方法沿着原型链被进一步的重写。尽管有潜在的危险,但这为覆盖或扩展对象的行为提供了一个非常强大的机制。</p>
<p>
  <code>Object</code> 构造函数为给定的参数创建一个包装类对象(object wrapper),具体有以下情况:
</p>

<ul>
 <li>如果给定值是 {{jsxref("null")}}{{jsxref("undefined")}},将会创建并返回一个空对象</li>
 <li>如果传进去的是一个基本类型的值,则会构造其包装类型的对象</li>
 <li>如果传进去的是引用类型的值,仍然会返回这个值,经他们复制的变量保有和源对象相同的引用地址</li>
</ul>

<p>当以非构造函数形式被调用时,<code>Object</code> 的行为等同于 <code>new Object()</code></p>

<p>可查看 <a href="/zh-CN/docs/Web/JavaScript/Reference/Operators/Object_initializer">对象初始化/字面量语法</a></p>

<h3>从一个对象上删除一个属性</h3>

<p> Object 自身没有提供方法删除其自身属性(Map 中的 <code>{{jsxref("Map.prototype.delete()")}}</code> 可以删除自身属性 )为了删除对象上的属性,必须使用 <a href="/zh-CN/docs/Web/JavaScript/Reference/Operators/delete">delete 操作符</a> </p>

<h2 id="构造函数">构造函数</h2>

<dl>
  <dt>{{jsxref("Object.prototype.Object()", "Object()")}}</dt>
  <dd>创建一个新的 <code>Object</code> 对象。该对象将会包裹(wrapper)传入的参数 </dd>
</dl>


<h2 id="静态方法">静态方法</h2>

<dl>
 <dt>{{jsxref("Object.assign()")}}</dt>
 <dd>通过复制一个或多个对象来创建一个新的对象。</dd>
 <dt>{{jsxref("Object.create()")}}</dt>
 <dd>使用指定的原型对象和属性创建一个新对象。</dd>
 <dt>{{jsxref("Object.defineProperty()")}}</dt>
 <dd>给对象添加一个属性并指定该属性的配置。</dd>
 <dt>{{jsxref("Object.defineProperties()")}}</dt>
 <dd>给对象添加多个属性并分别指定它们的配置。</dd>
 <dt>{{jsxref("Object.entries()")}}</dt>
 <dd>返回给定对象自身可枚举属性的 <code>[key, value]</code> 数组。</dd>
 <dt>{{jsxref("Object.freeze()")}}</dt>
 <dd>冻结对象:其他代码不能删除或更改任何属性。</dd>
 <dt>{{jsxref("Object.getOwnPropertyDescriptor()")}}</dt>
 <dd>返回对象指定的属性配置。</dd>
 <dt>{{jsxref("Object.getOwnPropertyNames()")}}</dt>
 <dd>返回一个数组,它包含了指定对象所有的可枚举或不可枚举的属性名。</dd>
 <dt>{{jsxref("Object.getOwnPropertySymbols()")}}</dt>
 <dd>返回一个数组,它包含了指定对象自身所有的符号属性。</dd>
 <dt>{{jsxref("Object.getPrototypeOf()")}}</dt>
 <dd>返回指定对象的原型对象。</dd>
 <dt>{{jsxref("Object.is()")}}</dt>
 <dd>比较两个值是否相同。所有 NaN 值都相等(这与==和===不同)。</dd>
 <dt>{{jsxref("Object.isExtensible()")}}</dt>
 <dd>判断对象是否可扩展。</dd>
 <dt>{{jsxref("Object.isFrozen()")}}</dt>
 <dd>判断对象是否已经冻结。</dd>
 <dt>{{jsxref("Object.isSealed()")}}</dt>
 <dd>判断对象是否已经密封。</dd>
 <dt>{{jsxref("Object.keys()")}}</dt>
 <dd>返回一个包含所有给定对象<strong>自身</strong>可枚举属性名称的数组。</dd>
 <dt>{{jsxref("Object.preventExtensions()")}}</dt>
 <dd>防止对象的任何扩展。</dd>
 <dt>{{jsxref("Object.seal()")}}</dt>
 <dd>防止其他代码删除对象的属性。</dd>
 <dt>{{jsxref("Object.setPrototypeOf()")}}</dt>
 <dd>设置对象的原型(即内部 <code>[[Prototype]]</code> 属性)。</dd>
 <dt>{{jsxref("Object.values()")}}</dt>
 <dd>返回给定对象自身可枚举值的数组。</dd>
</dl>


<h2 id="实例属性">实例属性</h2>

<dl>
  <dt>{{jsxref("Object.prototype.constructor")}}</dt>
  <dd>一个引用值,指向 Object 构造函数</dd>
  <dt>{{jsxref("Object.prototype.proto", "Object.prototype.__proto__")}}</dt>
  <dd>指向一个对象,当一个 object 实例化时,使用该对象作为实例化对象的原型</dd>
</dl>

<h2 id="实例属性">实例方法</h2>

<dl>
  <dt>{{jsxref("Object.prototype.__defineGetter__", "Object.prototype.__defineGetter__()")}}</dt>
  <dd>将一个属性与一个函数相关联,当该属性被访问时,执行该函数,并且返回函数的返回值。</dd>
  <dt>{{jsxref("Object.prototype.__defineSetter__", "Object.prototype.__defineSetter__()")}}</dt>
  <dd>将一个属性与一个函数相关联,当该属性被设置时,执行该函数,执行该函数去修改某个属性。</dd>
  <dt>{{jsxref("Object.prototype.__lookupGetter__", "Object.prototype.__lookupGetter__()")}}</dt>
  <dd>返回一个函数,该函数通过给定属性的 <code>{{jsxref("Object.prototype.__defineGetter__", "Object.prototype.__defineGetter__()")}}</code> 得出。</dd>
  <dt>{{jsxref("Object.prototype.__lookupSetter__", "Object.prototype.__lookupSetter__()")}}</dt>
  <dd>返回一个函数,该函数通过给定属性的 <code>{{jsxref("Object.prototype.__defineSetter__", "Object.prototype.__defineSetter__()")}}</code> 得出。</dd>
  
  <dt>{{jsxref("Object.prototype.hasOwnProperty", "Object.prototype.hasOwnProperty()")}}</dt>
  <dd>返回一个布尔值,用于表示一个对象自身是否包含指定的属性,该方法并不会查找原型链上继承来的属性。</dd>

  <dt>{{jsxref("Object.prototype.isPrototypeOf", "Object.prototype.isPrototypeOf()")}}</dt>
  <dd>返回一个布尔值,用于表示该方法所调用的对象是否在指定对象的原型链中。</dd>

  <dt>{{jsxref("Object.prototype.propertyIsEnumerable", "Object.prototype.propertyIsEnumerable()")}}</dt>
  <dd>返回一个布尔值,用于表示内部属性 <a href="/zh-CN/docs/Web/JavaScript/Data_structures#属性">ECMAScript [[Enumerable]] attribute</a> 是否被设置。</dd>

  <dt>{{jsxref("Object.prototype.toLocaleString", "Object.prototype.toLocaleString()")}}</dt>
  <dd>调用 <code>toString()。</code></dd>

  <dt>{{jsxref("Object.prototype.toString", "Object.prototype.toString()")}}</dt>
  <dd>返回一个代表该对象的字符串。</dd>

  <dt>{{jsxref("Object.prototype.valueOf", "Object.prototype.valueOf()")}}</dt>
  <dd>返回指定对象的原始值。</dd>
</dl>



<h2 id="Examples" name="Examples">示例</h2>

<h3 id="Example.3A_Using_Object_given_undefined_and_null_types" name="Example.3A_Using_Object_given_undefined_and_null_types">给定 <code>undefined</code><code>null</code> 类型使用 <code>Object</code></h3>

<p>下面的例子将一个空的 <code>Object</code> 对象存到 <code>o</code> 中:</p>

<pre class="brush: js">var o = new Object();
</pre>

<pre class="brush: js">var o = new Object(undefined);
</pre>

<pre class="brush: js">var o = new Object(null);
</pre>

<h3 id="使用_Object_生成布尔对象">使用 <code>Object</code> 生成布尔对象</h3>

<p>下面的例子将{{jsxref("Boolean")}} 对象存到 <code>o</code> 中:</p>

<pre class="brush: js">// 等价于 o = new Boolean(true);
var o = new Object(true);
</pre>

<pre class="brush: js">// 等价于 o = new Boolean(false);
var o = new Object(Boolean());
</pre>

<h3>Object prototypes</h3>
<p>
  当我们要修改现有的 <code>Object.prototype</code> 方法时,请你考虑一下在已经存在的逻辑之前或者之后通过包装扩展代码的方式来注入代码。
  比如说,有一段代码将会在执行内部逻辑或者是其他扩展之前, 有条件的执行一段自定义的逻辑。
</p>

<p>
  当一个函数被调用时,调用的参数被保存在一个类似数组的“变量”  <a href="/zh-CN/docs/Web/JavaScript/Reference/Functions/arguments">arguments</a>。
  比如说:在调用 <code>myFn(a, b, c)</code> 时,myFunc 函数体中的 arguments 将会包含三个类似数组的元素,对应 <code>(a, b , c)</code>
</p>

<p>
  When modifying prototypes with hooks, pass <code>this</code> and the arguments (the call state) to the current behavior by calling <code>apply()</code> on the function. This pattern can be used for any prototype, such as <code>Node.prototype</code>, <code>Function.prototype</code>, etc.
</p>

<pre class="brush: js notranslate">
var current = Object.prototype.valueOf;

// Since my property "-prop-value" is cross-cutting and isn't always
// on the same prototype chain, I want to modify Object.prototype:
Object.prototype.valueOf = function() {
  if (this.hasOwnProperty('-prop-value')) {
    return this['-prop-value'];
  } else {
    // It doesn't look like one of my objects, so let's fall back on
    // the default behavior by reproducing the current behavior as best we can.
    // The apply behaves like "super" in some other languages.
    // Even though valueOf() doesn't take arguments, some other hook may.
    return current.apply(this, arguments);
  }
}
</pre>

<p>Since JavaScript doesn't exactly have sub-class objects, prototype is a useful workaround to make a “base class” object of certain functions that act as objects. For example:</p>

<pre class="brush: js notranslate">
  var Person = function(name) {
    this.name = name;
    this.canTalk = true;
  };
  
  Person.prototype.greet = function() {
    if (this.canTalk) {
      console.log('Hi, I am ' + this.name);
    }
  };
  
  var Employee = function(name, title) {
    Person.call(this, name);
    this.title = title;
  };
  
  Employee.prototype = Object.create(Person.prototype);
  Employee.prototype.constructor = Employee; //If you don't set Object.prototype.constructor to Employee,
                                             //it will take prototype.constructor of Person (parent).
                                             //To avoid that, we set the prototype.constructor to Employee (child).
  
  Employee.prototype.greet = function() {
    if (this.canTalk) {
      console.log('Hi, I am ' + this.name + ', the ' + this.title);
    }
  };
  
  var Customer = function(name) {
    Person.call(this, name);
  };
  
  Customer.prototype = Object.create(Person.prototype);
  Customer.prototype.constructor = Customer; //If you don't set Object.prototype.constructor to Customer,
                                             //it will take prototype.constructor of Person (parent).
                                             //To avoid that, we set the prototype.constructor to Customer (child).
  
  var Mime = function(name) {
    Person.call(this, name);
    this.canTalk = false;
  };
  
  Mime.prototype = Object.create(Person.prototype);
  Mime.prototype.constructor = Mime; //If you don't set Object.prototype.constructor to Mime,
                                     //it will take prototype.constructor of Person (parent).
                                     //To avoid that, we set the prototype.constructor to Mime (child).
  
  var bob = new Employee('Bob', 'Builder');
  var joe = new Customer('Joe');
  var rg = new Employee('Red Green', 'Handyman');
  var mike = new Customer('Mike');
  var mime = new Mime('Mime');
  
  bob.greet();
  // Hi, I am Bob, the Builder
  
  joe.greet();
  // Hi, I am Joe
  
  rg.greet();
  // Hi, I am Red Green, the Handyman
  
  mike.greet();
  // Hi, I am Mike
  
  mime.greet();
  

</pre>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('ES1')}}</td>
   <td>{{Spec2('ES1')}}</td>
   <td>Initial definition. Implemented in JavaScript 1.0.</td>
  </tr>
  <tr>
   <td>{{SpecName('ES5.1', '#sec-15.2', 'Object')}}</td>
   <td>{{Spec2('ES5.1')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('ES6', '#sec-object-objects', 'Object')}}</td>
   <td>{{Spec2('ES6')}}</td>
   <td>Added Object.assign, Object.getOwnPropertySymbols, Object.setPrototypeOf, Object.is</td>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-object-objects', 'Object')}}</td>
   <td>{{Spec2('ESDraft')}}</td>
   <td>Added Object.entries and Object.values.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容">浏览器兼容</h2>

<p>{{Compat("javascript.builtins.Object")}}</p>

<h2 id="See_also" name="See_also">相关链接</h2>

<ul>
 <li><a href="/zh-CN/docs/Web/JavaScript/Reference/Operators/Object_initializer">初始化对象</a></li>
</ul>