vote up 2 vote down star

Suppose I have a class module clsMyClass with an object as a member variable. Listed below are two complete implementations of this very simple class.

Implementation 1:

Dim oObj As New clsObject

Implementation 2:

Dim oObj As clsObject

Private Sub Class_Initialize()
    Set oObj = New clsObject
End Sub

Private Sub Class_Terminate()
    Set oObj = Nothing
End Sub

Is there any functional difference between these two? In particular, is the lifetime of oObj the same?

flag

3 Answers

vote up 2 vote down check

In implementation 1 the clsObject will not get instantiated until it is used. If it is never used, then the clsObject.Class_Initialize event will never fire.

In implementation 2, the clsObject instance will be created at the same time that the clsMyClass is instantiated. The clsObject.Class_Initialize will always be executed if clsMyClass is created.

link|flag
Also note that Implementation 1 will be perform worse than Implementation 2 because the compiler will add checks every time oObj is accessed – rpetrich Sep 18 '08 at 8:27
vote up 0 vote down

If in implementation 1 the declaration is inside the class and not a sub, yes the scope is the same for both examples.

link|flag
vote up 0 vote down

The object variable will be destroyed whenever garbage collection determines there are no more references to said object. So in your two examples, assuming the scope of clsObject is the same, there is no difference in when your object will be destroyed.

link|flag
We are talking about VB6, there is no garbage collection. This is the world of reference counting. – Darrel Miller Sep 17 '08 at 19:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.