Can anybody explain to the meaning of this expression ??

Posted by de costo on Stack Overflow See other posts from Stack Overflow or by de costo
Published on 2010-05-13T17:41:33Z Indexed on 2010/05/14 16:14 UTC
Read the original article Hit count: 178

Filed under:
|
|
 void* GetData()
 {
    return reinterpret_cast<unsigned char*>(this);
 }

Is there a case of automatic type coercion happening in this case ??? How could I convert the object of my class to an unsigned char* ??

© Stack Overflow or respective owner

Related posts about c++

Related posts about type-conversion