将std函数对象转换回functor结构

时间:2016-02-24 00:07:18

标签: c++

在这种情况下:

struct Holder {
    std::function<void()> f;
};
struct Functor { void operator()(){ /**/ } };
int main() {
    Holder = { Functor{} };
    //...

以后是否可以将f转换回Functor类型?

1 个答案:

答案 0 :(得分:8)

target成员函数是std::function类型 - 不正常演员。您需要知道目标类型:

#include <cassert>
#include <functional>

struct Functor { void operator()(){ /**/ } };

int main()
{
    std::function<void()> f = Functor();
    Functor * p = f.target<Functor>();
    assert(p != nullptr);
}