婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁(yè) > 知識(shí)庫(kù) > VBS類(lèi)構(gòu)造函數(shù)與Default關(guān)鍵字使用介紹

VBS類(lèi)構(gòu)造函數(shù)與Default關(guān)鍵字使用介紹

熱門(mén)標(biāo)簽:新密防封卡外呼系統(tǒng)違法嗎 前鋒辦理400電話(huà)申請(qǐng) 外呼營(yíng)銷(xiāo)下單系統(tǒng) 辦理膠州400電話(huà)財(cái)稅 陜西高頻外呼回?fù)芟到y(tǒng)哪家好 打電話(huà)的外呼系統(tǒng)貴不貴 百度地圖標(biāo)注怎么卸載 海外美發(fā)店地圖標(biāo)注 加盟電銷(xiāo)機(jī)器人好的品牌
其實(shí) MSDN 的 VBScript 文檔中關(guān)于 Function 和 Sub 語(yǔ)句的部分提到過(guò) Default 關(guān)鍵字:
復(fù)制代碼 代碼如下:

Default
Used only with the Public keyword in a Class block to indicate that the Function procedure is the default method for the class. An error occurs if more than one Default procedure is specified in a class.

Default 只能在 Class 語(yǔ)句塊中與 Public 關(guān)鍵字一起使用來(lái)表明函數(shù)過(guò)程是類(lèi)的默認(rèn)方法。如果類(lèi)中一個(gè)以上的過(guò)程被定義為 Default,那么會(huì)出現(xiàn)錯(cuò)誤。
一個(gè)簡(jiǎn)單的例子:
復(fù)制代碼 代碼如下:

Class MyClass
Public Default Function SayHello(name)
SayHello = "Hello, " name
End Function
End Class
Set o = New MyClass
MsgBox o("demon")

很多面向?qū)ο蟮恼Z(yǔ)言都能使用構(gòu)造函數(shù)來(lái)初始化類(lèi)的對(duì)象,但是 VBS 卻沒(méi)有構(gòu)造函數(shù)的概念,只是提供了一個(gè)類(lèi)初始化事件來(lái)初始化對(duì)象:
復(fù)制代碼 代碼如下:

Class TestClass
' Setup Initialize event.
Private Sub Class_Initialize
MsgBox("TestClass started")
End Sub
' Setup Terminate event.
Private Sub Class_Terminate
MsgBox("TestClass terminated")
End Sub
End Class
' Create an instance of TestClass.
Set X = New TestClass
' Destroy the instance.
Set X = Nothing

雖然看起來(lái)很像構(gòu)造函數(shù),但是卻不能帶參數(shù),沒(méi)有辦法像其他語(yǔ)言那樣用特定的參數(shù)來(lái)初始化對(duì)象。
有了 Default 關(guān)鍵字之后,我們可以模擬實(shí)現(xiàn)構(gòu)造函數(shù)的功能:
復(fù)制代碼 代碼如下:

'Author: Demon
'Date: 2011/09/29
'Website: http://demon.tw
Class Rectangle
Private height, width
Public Default Function Construtor(h, w)
height = h : width = w
Set Construtor = Me
End Function
Public Property Get Area
Area = height * width
End Property
End Class
'看起來(lái)是不是很像構(gòu)造函數(shù)呢
Set r = (New Rectangle)(6, 8)
MsgBox r.Area

參考鏈接:VBScript's default keyword
原文:http://demon.tw/programming/vbs-default-keyword.html

標(biāo)簽:阜陽(yáng) 四平 河南 伊春 梅州 咸陽(yáng) 牡丹江 武威

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《VBS類(lèi)構(gòu)造函數(shù)與Default關(guān)鍵字使用介紹》,本文關(guān)鍵詞  VBS,類(lèi),構(gòu)造,函數(shù),與,Default,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《VBS類(lèi)構(gòu)造函數(shù)與Default關(guān)鍵字使用介紹》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于VBS類(lèi)構(gòu)造函數(shù)與Default關(guān)鍵字使用介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 寿阳县| 宁强县| 五大连池市| 河北省| 桂阳县| 池州市| 五家渠市| 太谷县| 尖扎县| 建始县| 宝鸡市| 宁夏| 沂南县| 连城县| 昌邑市| 广东省| 定日县| 昭苏县| 中方县| 莱阳市| 江西省| 德令哈市| 镇坪县| 洪泽县| 平塘县| 山阳县| 望都县| 黄浦区| 吴堡县| 民县| 英吉沙县| 肃南| 高尔夫| 曲沃县| 于田县| 和顺县| 泌阳县| 洞头县| 张家界市| 吉水县| 介休市|