gpt4 book ai didi

c++ - 将标准函数对象转换回仿函数结构

转载 作者:可可西里 更新时间:2023-11-01 16:38:05 24 4
gpt4 key购买 nike

在这种情况下:

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

有没有办法稍后将 f 转换回 Functor 类型?

最佳答案

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);
}

关于c++ - 将标准函数对象转换回仿函数结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35590810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com