gpt4 book ai didi

c++ - 如何在 VS2010 中将 lambda 降级为函数指针?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:59:27 24 4
gpt4 key购买 nike

这是我失败的尝试:

#define decltype(...) std::identity<decltype(__VA_ARGS__)>::type

template<typename T>
auto* degrade(const T& f) -> decltype(&T::operator())
{
return &T::operator();
}

int main()
{
std::array<void(int), 1> stuff =
{
degrade([](int){})
};
}

最佳答案

在你说的评论中,

VS2010 doesn't support it. - Nawaz the library I'm using has a method that takes a function pointer, It would be slightly cleaner to use a lambda (it's not a big deal, but I wanted to see if it was possible in VS2010)

在这种情况下,您可以使用局部结构并在其中定义一个静态函数。 Something like this (well if it helps you) :

#include <iostream>

void call(void (*f)(int))
{
for(int i = 0 ; i < 10 ; i++)
f(10 * i);
}

int main()
{
struct local
{
static void print(int i) { std::cout << i << std::endl; }
};
call(&local::print);
}

它很方便 - 或多或少类似于 C++11 lambda。您可以在本地定义静态成员函数,并将其传递给其他函数。

关于c++ - 如何在 VS2010 中将 lambda 降级为函数指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11511046/

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