10

看起来我不能将无捕获 lambda 作为模板参数传递给由函数指针函数模板化的函数。我做错了,还是不可能?

#include <iostream>

// Function templated by function pointer
template< void(*F)(int) >
void fun( int i )
{
    F(i);
}

void f1( int i )
{
    std::cout << i << std::endl;
}

int main()
{
    void(*f2)( int ) = []( int i ) { std::cout << i << std::endl; };

    fun<f1>( 42 ); // THIS WORKS
    f2( 42 );      // THIS WORKS
    fun<f2>( 42 ); // THIS DOES NOT WORK (COMPILE-TIME ERROR) !!!

    return 0;
}
4

2 回答 2

11

这主要是语言定义中的一个问题,以下使其更加明显:

using F2 = void(*)( int );

// this works:
constexpr F2 f2 = f1;

// this does not:
constexpr F2 f2 = []( int i ) { std::cout << i << std::endl; };

活生生的例子

这基本上意味着您的希望/期望是相当合理的,但语言目前没有以这种方式定义 - lambda 不会产生适合作为constexpr.

但是,有一个解决此问题的建议:N4487

于 2015-06-24T16:45:10.863 回答
4

这是不可行的,因为f2它不是constexpr(即,是一个运行时变量)。因此,它不能用作模板参数。您可以通过以下方式更改代码并使其更通用:

#include <iostream>

template<typename F, typename ...Args>
void fun(F f, Args... args) {
  f(args...);
}

void f1( int i ) {
    std::cout << i << std::endl;
}

int main() {
    auto f2 = []( int i ) { std::cout << i << std::endl; };
    fun(f1, 42);
    f2( 42 );
    fun(f2, 42 );
    return 0;
}
于 2015-06-24T16:37:57.983 回答