VBS類構(gòu)造函數(shù)與Default關(guān)鍵字使用介紹
更新時(shí)間:2011年10月26日 21:59:54 作者:
很多人并不知道 VBS 中還有個(gè) Default 關(guān)鍵字,更不用說(shuō)知道 Default 關(guān)鍵字的用法。
其實(shí) MSDN 的 VBScript 文檔中關(guān)于 Function 和 Sub 語(yǔ)句的部分提到過(guò) Default 關(guān)鍵字:
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ò)程是類的默認(rèn)方法。如果類中一個(gè)以上的過(guò)程被定義為 Default,那么會(huì)出現(xiàn)錯(cuò)誤。
一個(gè)簡(jiǎn)單的例子:
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)初始化類的對(duì)象,但是 VBS 卻沒有構(gòu)造函數(shù)的概念,只是提供了一個(gè)類初始化事件來(lái)初始化對(duì)象:
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ù),沒有辦法像其他語(yǔ)言那樣用特定的參數(shù)來(lái)初始化對(duì)象。
有了 Default 關(guān)鍵字之后,我們可以模擬實(shí)現(xiàn)構(gòu)造函數(shù)的功能:
'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
復(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ò)程是類的默認(rèn)方法。如果類中一個(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)初始化類的對(duì)象,但是 VBS 卻沒有構(gòu)造函數(shù)的概念,只是提供了一個(gè)類初始化事件來(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ù),沒有辦法像其他語(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
相關(guān)文章
VBS教程:方法-AddFolders 方法(Folders)
VBS教程:方法-AddFolders 方法(Folders)...2006-11-11利用VBS腳本修改聯(lián)想筆記本BIOS密碼的代碼分享
這篇文章主要介紹了利用VBS腳本修改聯(lián)想筆記本BIOS密碼的實(shí)現(xiàn)代碼,感覺這不科學(xué)!無(wú)意中找到的一些資料,喜歡的朋友可以試試2013-07-07VBS 提取狗狗影視中的ED2K連接的實(shí)現(xiàn)代碼
這篇文章主要介紹了通過(guò)VBS 提取狗狗影視中的ED2K連接,需要的朋友可以參考下2013-07-07改進(jìn)后的mkw3site.vbs(創(chuàng)建虛擬目錄)
改進(jìn)后的mkw3site.vbs(創(chuàng)建虛擬目錄)...2007-03-03