Hello,
Is the following statements legal (0 is actualy
a pointer parameter that could be '0' and relevant
to the casts) ?
MyClass* p = reinterpret_cas t<MyClass*>(0) ;
MyClass* p = static_cast<MyC lass*>(0);
Thanks and best regards,
Wenjie
Is the following statements legal (0 is actualy
a pointer parameter that could be '0' and relevant
to the casts) ?
MyClass* p = reinterpret_cas t<MyClass*>(0) ;
MyClass* p = static_cast<MyC lass*>(0);
Thanks and best regards,
Wenjie
Comment