devxlogo

ByVal with object references

ByVal with object references

When you write a procedure and you want to be sure that the procedure does not affect the value of any variable passed to it as an argument in the procedure call, you just have to declare that parameter using the ByVal keyword. However, if you declare an object parameter using the ByVal keyword, the procedure is still capable to modify the object’s properties. For example:

Sub ClearInvoice (ByVal inv As CInvoice)  ' the next line of code will change a property of the INV  ' object, even if it is passed by value  inv.Total = 0End Sub

If you used ByVal in your program hoping that it would protect the passed object from being modified by the called procedure you’re going to experience several logical errors.

This is not VB a bug, rather it is a consequence of object variables being just pointers to data: even if the procedure cannot change the value of the pointer passed by value, it can still access (and modify) all the properties of the object pointed to by that variable. However, this doesn’t mean that ByVal has no effect when used with an object parameter. For instance, the following procedures seem equivalent, but aren’t:

Sub DestroyInvoice (inv As CInvoice)  Set inv = Nothing    ' this worksEnd SubSub DestroyInvoice2 (ByVal inv As CInvoice)  Set inv = Nothing       ' this doesn't work  Set inv = New Invoice   ' neither does this oneEnd Sub

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist