In Uno suppose i have Interface of UNO type.... i need to access its value or address which method should i call?

link|improve this question
Uno? – James McNellis Feb 7 '11 at 5:35
Mr James UNO Means UNIVERSAL NETWORK OBJECT. – Balaji Feb 7 '11 at 6:06
feedback

1 Answer

Like any C++ object, you get the address of an object with &. A reference itself doesn't have an address, but you can still use & to get the address of the object refered to.

"value" is a bit more complex. What's the value of an iLaunchRocket* interface? Many interfaces offer only functions and do not have (publicly visible) data. In such cases, the notion of a "value" is tricky.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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