Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If arrays are returned by reference, why doesn't the following work:

'Class1 class module
Private v() As Double
Public Property Get Vec() As Double()
    Vec = v()
End Property
Private Sub Class_Initialize()
    ReDim v(0 To 3)
End Sub
' end class module

Sub Test1()
    Dim c As Class1
    Set c = New Class1
    Debug.Print c.Vec()(1) ' prints 0 as expected
    c.Vec()(1) = 5.6
    Debug.Print c.Vec()(1) ' still prints 0
End Sub
share|improve this question

1 Answer

up vote 3 down vote accepted

In VBA, arrays are never returned by reference unless they are returned through a ByRef parameter. Furthermore, whenever you use = to assign an array to a variable, you've made a new copy of the array, even if you're assigning it to a ByRef argument inside of a procedure, so you're pretty much out of luck trying to make this work.

Some alternative are...

  • Use a VBA.Collection instead of an array.
  • Make your own class that encapsulates an array and exposes procedures for indirectly accessing and manipulating the internal array.
share|improve this answer
I think this is spot on. It matches what I've observed. I wish these things were better documented, though. Do you have a good source (beyond experience) where stuff like this is spelled out? – jtolle Apr 10 '11 at 18:34
Chip Person, an Excel consultant and MVP, says on his site that "Arrays are always passed by reference" cpearson.com/excel/byrefbyval.aspx Is he mistaken? – ThomasMcLeod Apr 10 '11 at 18:41
His site is certainly good. I meant more "official" sources, though - i.e. the help, old MS manuals for VB, etc. It drives me nuts that basic stuff like "assignment with = copies arrays" is left for MVPs to provide, or for users to discover through experimentation. – jtolle Apr 10 '11 at 18:52
@jtolle, I agree. But in this case I am confused, since the Person site contradicts this answer and also my observations. – ThomasMcLeod Apr 10 '11 at 19:11
1  
@ThomasMcLeod the VBA specification confirms that arrays are shallow-copied on assignment except for objects and class instances inside the array, see msdn.microsoft.com/en-us/library/ee157009(prot.20).aspx – Renaud Bompuis Nov 21 '12 at 4:00
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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