C++函子作为函数指针

发布于 2024-11-30 22:52:34 字数 101 浏览 1 评论 0原文

我有一个 Functor,需要将其发送到一个接收函数指针作为参数的函数(例如 CreateThread)。

我可以以某种方式将其转换为静态方法地址吗?如果没有,我该怎么做?

I have a Functor which I need to send to a function which receives a function pointer as a parameter (such as CreateThread).

Can I convert it to a static method address somehow? And if not, how can I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟沫凡尘 2024-12-07 22:52:34

不,您不能将类类型对象转换为函数指针。

但是,您可以编写一个非成员包装函数来调用正确实例上的成员函数。许多API,包括CreateThread,允许您提供一个指针,当它调用您的回调时,它将返回给您(对于CreateThread,这是lpParameter< /代码> 参数)。例如:

DWORD WINAPI FunctorWrapper(LPVOID p)
{
    // Call operator() on the functor pointed to by p:
    return (*static_cast<FunctorType*>(p))();
}

// Used as:
FunctorType f;
CreateThread(0, 0, &FunctorWrapper, &f, 0, 0);

No, you can't convert a class-type object to a function pointer.

However, you can write a non-member wrapper function that calls the member function on the right instance. Many APIs, including CreateThread, allow you to provide a pointer that it will give back to you when it calls your callback (for CreateThread, this is the lpParameter parameter). For example:

DWORD WINAPI FunctorWrapper(LPVOID p)
{
    // Call operator() on the functor pointed to by p:
    return (*static_cast<FunctorType*>(p))();
}

// Used as:
FunctorType f;
CreateThread(0, 0, &FunctorWrapper, &f, 0, 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文