What is the difference? I always use ByVal, but, I don't really have a good idea of when should I and when not...

link|improve this question

80% accept rate
95%+ of the time you want ByVal, so it's possibly you've been making the right choice all along :) But +1 for the initiative to learn about it. – R. Martinho Fernandes Feb 5 '11 at 18:29
Preface: I am not a VB programmer. If it's anything like C or C++, passing ByVal can be expensive if the object is expensive to copy. If you know you're not going to modify it, ByRef could be faster and the function would behave the same. – Kris R. Feb 5 '11 at 18:37
I commented the same thing below, but just in case... ByVal does not create a copy of the object (with the exception of value type variables). It creates a new reference to the same object. You are right that ByRef may be faster (doesn't have to create a new reference) but the difference would be insignificant at best. – Smudge202 Apr 19 '11 at 15:05
feedback

4 Answers

up vote 4 down vote accepted

If you pass in a reference, when you modify the value in the method, the variable in the call site will also be modified.

If you pass value, it's the same as if another variable is created at the method, so even if you modify it, the original variable (at the call site) won't have its value changed.

So, indeed, you should usually pass variables as value. Only pass as reference if you have an explicit need to do so.

link|improve this answer
3  
I think it's very important to note that although the original object, when passed byval, cannot be changed, it's child members can be – Smudge202 Apr 19 '11 at 14:59
Indeed, Smudge202, that's important... you can mutate the object members (or, in other words, you can mutate the object). What you can't mutate is the reference, meaning that you can't replace the object with a new object or a null. – Bruno Brant Apr 19 '11 at 22:06
+1 for clarifying your answer. Also, see the edit on my post below for an interesting point – Smudge202 Apr 19 '11 at 22:16
feedback

ByRef is like a second return value. It passes a reference to the object into the function rather than the object itself. If you change the value of a ByRef parameter in the function, you will see those changes after the function ends. If that wasn't clear enough, read this and this.

link|improve this answer
feedback

I know this question has pretty much been answered, but I just wanted to add the following...

The object you pass to a function is subject to ByRef/ByVal, however, if that object contains references to other objects, they can be modified by the called method regardless of ByRef/ByVal. Poor explanation, I know, see code below for a better understanding:

Public Sub Test()
    Dim testCase As List(Of String) = GetNewList()
    ByRefChange1(testCase)
    'testCase = Nothing
    testCase = GetNewList()

    ByValChange1(testCase)
    'testCase is unchanged
    testCase = GetNewList()

    ByRefChange2(testCase)
    'testCase contains the element "ByRef Change 2"
    testCase = GetNewList()

    ByValChange2(testCase)
    'testCase contains the element "ByVal Change 2"

End Sub

Public Function GetNewList() As List(Of String)
    Dim result As List(Of String) = New List(Of String)
    result.Add("Value A")
    result.Add("Value B")
    result.Add("Value C")
    Return result
End Function

Public Sub ByRefChange1(ByRef aList As List(Of String))
    aList = Nothing
End Sub

Public Sub ByValChange1(ByVal aList As List(Of String))
    aList = Nothing
End Sub

Public Sub ByRefChange2(ByRef aList As List(Of String))
    aList.Add("ByRef Change 2")
End Sub

Public Sub ByValChange2(ByVal aList As List(Of String))
    aList.Add("ByVal Change 2")
End Sub

EDIT:

Also, consider if this function was called:

Public Sub ByValChange3(ByVal aList As List(Of String))
    aList.Add("ByVal Change 3")
    aList = New List(Of String)
    aList.Add("ByVal Change 4")
End Sub

What happens in this case is "ByVal Change 3" is added to the callers list, but at the point you specify that "aList = New List" you are then pointing the new reference, to a new object, and become detached from the callers list. Both common sense and might catch you out one day, so something to bear in mind.

link|improve this answer
feedback

ByRef = You give your friend your term paper (the original) he marks it up and can return it to you.

ByVal = You give hime a copy of the term paper and he give you back his changes but you have to put them back in your original yourself.

As simple as I can make it.

Why to use Byref:
ByRef will pass the POINTER to the object you are passing. If you are in the same memory space, this means passing just the 'word' not the object. The method you are passing it to can make changes in the origuinal object, and does not need to pass them back at all, as they are in the original object. Useful for making large data passes faster. You can also use ByRef to allow use of a SUB rather then a FUNCTION (In VB) since it does not need to pass back the object.

Why Not to Use Byref:
Since the method has access to the original, anychanges made will be immediate and permanent. If the method fails, the oblect could be corrupted. Using ByVal will make a copy, pass the whole copy into the method, and then the metod will process the info and either retunr a copy back, report information or do nothing.

link|improve this answer
I disagree almost entirely. Using ByVal does NOT make a copy of the object. It creates a new reference pointing to the same object.n You cannot do anything to the original reference, but you can modify the object. Attempting to set the new reference to nothing does not dispose the object, because the previous reference still exists (which keeps the object alive in the eyes of the GC) – Smudge202 Apr 19 '11 at 15:02
I believe you are correct, but not right :) with By Val, the new object has the scope of the procedure you are calling, and is totally and distinctly editable within the scope of the procedure. Once processing leaves the procedure the object goes out of scope and is recycled (and unavalable). So it does make a full copy of the object you pass in when using by val. By ref passes the pointed to the object, and no additional copy of the object is created. – Tom Vande Stouwe May 23 '11 at 18:11
feedback

Your Answer

 
or
required, but never shown

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