From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/glossary/constructor/index.html | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 files/zh-cn/glossary/constructor/index.html (limited to 'files/zh-cn/glossary/constructor') 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 +--- +

 

+ +

构造函数属于被实例化的特定类{{glossary("Object","对象")}} 。构造函数初始化这个对象,并提供可以访问其私有信息的方法。构造函数的概念可以应用于大多数{{glossary("OOP","面向对象")}}的编程语言。本质上,{{glossary("JavaScript")}} 中的构造函数通常在{{glossary("class","类")}}的实例中声明。

+ +

语法

+ +
// 这是一个通用的默认构造函数类 Default
+function Default() {
+}
+
+// 这是一个带参数声明的重载构造函数类 Overloaded
+function Overloaded(arg1, arg2, ...,argN){
+}
+
+ +

要调用 JavaScript 中类的构造函数,请使用 new 操作符将新的{{glossary("object reference","对象引用")}}分配给一个{{glossary("variable","变量")}}。

+ +
function Default() {
+}
+
+// 分配给局部变量 defaultReference 的一个新的 Default 对象引用
+var defaultReference = new Default();
+ +

 

+ +

了解更多

+ +

基本常识

+ + + +

技术参考

+ + -- cgit v1.2.3-54-g00ecf