diff options
Diffstat (limited to 'files/zh-cn/glossary/constructor/index.html')
-rw-r--r-- | files/zh-cn/glossary/constructor/index.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/constructor/index.html b/files/zh-cn/glossary/constructor/index.html new file mode 100644 index 0000000000..83c959efad --- /dev/null +++ b/files/zh-cn/glossary/constructor/index.html @@ -0,0 +1,44 @@ +--- +title: Constructor +slug: Glossary/Constructor +translation_of: Glossary/Constructor +--- +<p> </p> + +<p><strong>构造函数</strong>属于被实例化的特定类{{glossary("Object","对象")}} 。构造函数初始化这个对象,并提供可以访问其私有信息的方法。构造函数的概念可以应用于大多数{{glossary("OOP","面向对象")}}的编程语言。本质上,{{glossary("JavaScript")}} 中的构造函数通常在{{glossary("class","类")}}的实例中声明。</p> + +<h2 id="语法">语法</h2> + +<pre class="brush: js">// 这是一个通用的默认构造函数类 Default +function Default() { +} + +// 这是一个带参数声明的重载构造函数类 Overloaded +function Overloaded(arg1, arg2, ...,argN){ +} +</pre> + +<p>要调用 JavaScript 中类的构造函数,请使用 <code>new</code> 操作符将新的{{glossary("object reference","对象引用")}}分配给一个{{glossary("variable","变量")}}。</p> + +<pre class="brush: js">function Default() { +} + +// 分配给局部变量 defaultReference 的一个新的 Default 对象引用 +var defaultReference = new Default();</pre> + +<p> </p> + +<h2 id="了解更多">了解更多</h2> + +<h3 id="基本常识">基本常识</h3> + +<ul> + <li>维基百科上的 {{Interwiki("wikipedia", "Constructor_%28object-oriented_programming%29", "构造函数")}}</li> +</ul> + +<h3 id="技术参考">技术参考</h3> + +<ul> + <li>MDN 上的 <a href="/zh-CN/docs/Learn/JavaScript/Objects">JavaScript 面向对象编程中的构造函数</a> </li> + <li>MDN 上的 <a href="/zh-CN/docs/Web/JavaScript/Reference/Operators/new">JavaScript 的 New 操作符</a></li> +</ul> |