问题:
你有一个由 dlsym() 返回的 void 指针,并且你需要调用这个void指针指向的函数。您已尝试使用 static_cast 和 reinterpret_cast 进行强制转换,但都不起作用。你有什么选择?
答案:
C 98/03 中不允许直接将 void 指针转换为函数指针。它可能在 C 0x 中有条件地支持,但其行为是实现定义的。
非标准解决方案:
尽管标准含糊不清,但仍有一些非标准解决方案:
可能适用于大多数平台的标准解决方案,尽管它们被视为未定义行为:
<code class="cpp">typedef void (*fptr)(); fptr my_fptr = reinterpret_cast<fptr>(reinterpret_cast<long>(gptr));</code>
<code class="cpp">fptr my_fptr = 0; reinterpret_cast<void*&>(my_fptr) = gptr;</code>
<code class="cpp">void (**object_ptr)() = &my_ptr; void **ppv = reinterpret_cast<void**>(object_ptr); *ppv = gptr;</code>
这些选项利用了函数指针的地址是对象指针的事实,允许间接使用reinterpret_cast进行转换。
注意:
这些解决方案不保证在所有平台上工作,并且不被视为标准 C 。使用它们需要您自担风险。以上是如何在 C 中安全地将 void 指针转换为函数指针?的详细内容。更多信息请关注PHP中文网其他相关文章!