gpt4 book ai didi

c++ - 在 C++ 中将函数指针转换为仿函数

转载 作者:太空狗 更新时间:2023-10-29 20:12:47 24 4
gpt4 key购买 nike

我有一个从另一个 .hpp 文件导入的函数指针类型。像这样的东西:

typedef void (*PFN_func)(int i);

我想创建一个相同类型的仿函数:

std::function<PFN_func>

但这行不通。我不想要这样的解决方案

std::function<void(int)>

因为mt函数指针定义要复杂得多

最佳答案

你可以这样做:

std::function<std::remove_pointer<PFN_func>::type>

void (*)(int) 中删除指针会得到函数类型 void(int)

对于一般可调用的情况,请参阅 Is it possible to figure out the parameter type and return type of a lambda?

关于c++ - 在 C++ 中将函数指针转换为仿函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25753494/

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