vote up 4 vote down star
1

_com_ptr_ has an overloaded operator&() with a side effect. If I have a variable:

_com_ptr_t<Interface> variable;

How could I retrieve its address (_com_ptr_t<Interface>* pointer) without calling the overloaded operator and triggering the side effect?

flag

69% accept rate
Do you want an _com_ptr_t<Interface>* or an Interface* ? – MSalters Jul 17 at 11:11
I want a com_ptr_t<>. – sharptooth Jul 17 at 11:11

3 Answers

vote up 7 vote down check

I've seen this case pop up in an ISO meeting as it broke some offsetof() macro implementations (LWG 273). The solution: &reinterpret_cast<unsigned char&>(variable)

link|flag
Could this ever bite me in some surprising case? – sharptooth Jul 17 at 11:11
use boost::address_of. It is based on implementation provided in this post. I think it will a part of the upcoming standard. – ovanes Jul 17 at 11:38
@sharptooth: Probably not. This solution has quite reasonable behavior. Taking the address of an unsigned char lvalue is perfectly well defined, and reinterpret_cast to unsigned char& should work even if the casted object defines operator unsigned char itself. – MSalters Jul 17 at 13:29
vote up 4 vote down

I define this utility function:

template<typename T>
T *GetRealAddr(T &t)
    { return reinterpret_cast<T*>(&reinterpret_cast<unsigned char &>(t)); }
link|flag
vote up -1 vote down

&variable.GetInterfacePtr();

link|flag
1  
This retrieves the address of the pointer stored in the smart pointer. However, I think question is about how to get the address of the smart pointer. – Martin Liversage Jul 17 at 11:12
Ah ... my bad :( – Goz Jul 17 at 11:21

Your Answer

Get an OpenID
or

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