c – 我可以定义一个指向std :: function类型对象的函数指针吗?

前端之家收集整理的这篇文章主要介绍了c – 我可以定义一个指向std :: function类型对象的函数指针吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
类似以下内容
#include <functional>

int main()
{
    std::function<int(int)> func = [](int x){return x;};
    int* Fptr(int) = &func; //error
}

我得到的错误

temp.cpp: In function ‘int main()’:
temp.cpp:6:15: warning: declaration of ‘int* Fptr(int)’ has ‘extern’ and is initialized
  int* Fptr(int) = &func; //error
               ^
temp.cpp:6:20: error: invalid pure specifier (only ‘= 0’ is allowed) before ‘func’
  int* Fptr(int) = &func; //error
                    ^
temp.cpp:6:20: error: function ‘int* Fptr(int)’ is initialized like a variable

从lambda函数函数指针的更直接的方法也是有用的.

解决方法

int* Fptr(int)

声明一个函数“Fptr”,它接受一个int并返回int *.

函数指针声明看起来像

int (*Fptr)(int)

此外,标准::功能< INT(INT)>不是您的lambda函数的类型,但是您的lambda函数可以隐式转换为该类型.

幸运的是,(非捕获)lambda函数也可以隐式转换为函数指针,所以从lambda函数函数指针的最直接的方法

int (*Fptr)(int) = [](int x){return x;};
原文链接:https://www.f2er.com/c/111763.html

猜你在找的C&C++相关文章