VBScript運行時對象幫助我們完成各種任務。本節將幫助您了解如何實例化對象並使用它。
Syntax
爲了無縫地處理對象,我們需要聲明對象並使用Set關鍵字實例化它。
Dim objectname 'Declare the object name Set objectname = CreateObject(object_type)
Example
在下面的示例中,我們正在創建一個Scripting.Dictionary類型的對象。
Dim obj Set obj = CreateObject("Scripting.Dictionary")
Destroying the Objects
銷毀對象的意義在於釋放內存並重置對象變量。
Syntax
爲了銷毀對象,我們需要使用Set關鍵字後跟對象名,並將其指向Nothing。
Set objectname = Nothing 'Destroy the object.
Example
在下面的示例中,我們正在創建一個Scripting.Dictionary類型的對象。
Dim obj Set obj = CreateObject("Scripting.Dictionary") Set obj = Nothing.
Object Usage
請單擊每個給定的對象類型以了解更多信息。