vba - 如何在 VBA 中为类模块声明静态变量?

标签 vba excel class oop

我想跟踪 Excel-VBA 中特定类的所有实例,例如 VB.Net 中的静态成员。所以这是我的类模块:

类模块:clsClass

Private pName as String
'Static pCount Commented as it doesnt work

Property Set Name(arg as String)
    pName=arg
End Property

Private Sub Class_Initialize()
    'pCount = pCount + 1  Commented as it doesnt work 
End Sub

Public Function GetCount()
    GetCount = pCount
End Function

和我的通用模块
模块:模块1
Sub ABC()

Dim instance1 As New clsClass
Dim instance2 As New clsClass
Dim instance3 As New clsClass
Dim instance4 As New clsClass
'Debug.Print instance4.GetCount() This Should Return 4, but doesnt
End Sub

我究竟做错了什么 ?我如何声明一个在所有实例之间共享的变量?

最佳答案

最小的代码
基于 Class (Static) Methods in VBA 中描述的逻辑.
静态属性 StaticCountConstructor 中递增方法。 Get 和 Let Property 过程 (If Singleton Is Nothing Then ... Else ... End If) 中提到了支持静态属性的最重要代码。
这里的缺点是它使用 End清除全局/静态变量以便打印 2每次调用ABC ,但它也会清除您可能不希望的 VBProject 的所有全局变量。如果 End未使用,它将打印 2 , 4 , 6 , 每次调用 ABC 时 +2 .请参阅下一章中的解决方法。
模块 Module1 :

Sub ABC()
    Set instance1 = New_clsClass()
    Set instance2 = New_clsClass()
    Debug.Print "Result: " & instance1.StaticCount 'This returns 2
    End ' Reset Global/Static memory to clear "Static Singleton" (and whole VBProject memory)
End Sub

Function New_clsClass() As clsClass
    Set Object = New clsClass
    Static Singleton As clsClass
    If Singleton Is Nothing Then
        Set Singleton = New clsClass
    End If
    Set Object.Singleton = Singleton
    Call Object.Constructor
    Set New_clsClass = Object
End Function
类(class)模块clsClass :
Private StaticCount_ As Integer
Private Singleton_ As clsClass

Private Static Property Get Singleton() As Object
    Set Singleton = Singleton_
End Property

Private Property Set Singleton(Object As Object)
    Set Singleton_ = Object
End Property

Public Property Get StaticCount() As Integer
    If Singleton Is Nothing Then
        StaticCount = StaticCount_
    Else
        StaticCount = Singleton.StaticCount
    End If
End Property

Private Property Let StaticCount(value As Integer)
    If Singleton Is Nothing Then
        StaticCount_ = value
    Else
        Singleton.StaticCount = value
    End If
End Property

Public Sub Constructor()
    StaticCount = StaticCount + 1
End Sub
最小的代码 + 控制您重置的全局/静态变量的方法,而不是使用 End
此解决方案基于保留单例的全局变量,因此您可以在运行 ABC 时重置单例.在这里,除了类 clsClass74 之外的所有单例都被重置。和 clsClass75这是为了“一直”保持它们的静态属性。
模块 Module1 :
Global goSingletons As New Collection

Sub ABC()
    Call ResetGlobalMemory
    Set instance1 = New_clsClass()
    Set instance2 = New_clsClass()
    Debug.Print "Result: " & instance1.StaticCount 'This returns 2
End Sub

Sub ResetGlobalMemory()
    ' Reset all singletons except the one of clsClass7
    For i = goSingletons.count To 1 Step -1
        Select Case TypeName(goSingletons(i))
            Case "clsClass74", "clsClass75"
            Case Else
                Call goSingletons.Remove(i)
        End Select
    Next
End Sub

Function New_clsClass() As clsClass
    Set Object = New clsClass
    Set Object.Singleton = GetSingleton("clsClass")
    Call Object.Constructor
    Set New_clsClass = Object
End Function

Function GetSingleton(ClassName As String)
    On Error Resume Next
    Set Singleton = goSingletons(ClassName)
    If Err.Number <> 0 Then
        On Error GoTo 0
        Select Case ClassName
            Case "clsClass": Set Singleton = New clsClass
            Case "clsClass2": Set Singleton = New clsClass2
            Case Else: Err.Raise 9999, , "Singleton not managed by class " & ClassName
        End Select
        Call goSingletons.Add(Singleton, ClassName)
    End If
    Set GetSingleton = Singleton
End Function
类(class)模块clsClass :
Private StaticCount_ As Integer
Private Singleton_ As clsClass

Private Static Property Get Singleton() As Object
    Set Singleton = Singleton_
End Property

Private Property Set Singleton(Object As Object)
    Set Singleton_ = Object
End Property

Public Property Get StaticCount() As Integer
    If Singleton Is Nothing Then
        StaticCount = StaticCount_
    Else
        StaticCount = Singleton.StaticCount
    End If
End Property

Private Property Let StaticCount(value As Integer)
    If Singleton Is Nothing Then
        StaticCount_ = value
    Else
        Singleton.StaticCount = value
    End If
End Property

Public Sub constructor()
    StaticCount = StaticCount + 1
End Sub
构造函数的最小代码+参数
(此处建议以防万一您不确定如何将 passing arguments to constructor in VBA 的解决方案与上面的代码混合使用)
模块 Module1 :
Sub ABC()
    Set instance1 = New_clsClass(41)
    Set instance2 = New_clsClass(42)
    Debug.Print "Result: " & instance1.StaticCount 'This returns 2
    End ' Reset Global/Static memory to clear "Static Singleton" (and whole VBProject memory)
End Sub

Function New_clsClass(arg1 As Integer) As clsClass
    Set Object = New clsClass
    Static Singleton As clsClass
    If Singleton Is Nothing Then
        Set Singleton = New clsClass
    End If
    Set Object.Singleton = Singleton
    Call Object.Constructor(arg1)
    Set New_clsClass = Object
End Function
类(class)模块clsClass :
Private arg1_ As Integer
Private StaticCount_ As Integer
Private Singleton_ As clsClass

Private Static Property Get Singleton() As Object
    Set Singleton = Singleton_
End Property

Private Property Set Singleton(Object As Object)
    Set Singleton_ = Object
End Property

Public Property Get StaticCount() As Integer
    If Singleton Is Nothing Then
        StaticCount = StaticCount_
    Else
        StaticCount = Singleton.StaticCount
    End If
End Property

Private Property Let StaticCount(value As Integer)
    If Singleton Is Nothing Then
        StaticCount_ = value
    Else
        Singleton.StaticCount = value
    End If
End Property

Public Function Constructor(arg1 As Integer)
    arg1_ = arg1
    StaticCount = StaticCount + 1
End Function

关于vba - 如何在 VBA 中为类模块声明静态变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43909886/

相关文章:

ruby-on-rails - ruby on rails 中的类变量未初始化错误

c++ - 如何在源文件中定义一个类并在头文件中声明它(不必使用 `class::method` 语法定义类方法)?

vba - 如何在VBA中合并两个集合?

excel - 在 VBA 中打开与 Excel 电子表格的 ADO 连接

excel - 在工作表之间高效复制和粘贴信息

vba - Excel VBA : There must be a better way to use a loop to delete rows based on cell contents

Excel vba 直方图 bin

excel - 如果查找值在单个单元格中包含多个值,如何使用 vlookup

python - 尝试使用 python 在 xlwt 中设置单元格颜色时丢失属性错误

java - Java中的类扩展实现