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

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular