devxlogo

Use ObjPtr to test whether two object variables point to the same object

Use ObjPtr to test whether two object variables point to the same object

The standard way to test whether two object variables point to the same object is through the Is operator, as in:

If obj1 Is obj2 Then ...

However, when both object are of the same type, or point to the same secondary interface, you can slightly optimize your code by testing whether the values returned by the ObjPtr() function match:

If ObjPtr(obj1) = ObjPtr(obj2) Then ...

This second line of code is about 40% faster than the Is operator. However, both statements are so efficient that you should perceive a difference only if the comparison is inside a time-critical loop that is executed some hundreds thousand times.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
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