What is the difference? I always use ByVal, but, I don't really have a good idea of when should I and when not...
feedback
|
|
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. | |||||||||
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 | |||
|
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:
EDIT: Also, consider if this function was called:
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. | ||||
|
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: Why Not to Use Byref: | |||||
feedback
|