gpt4 book ai didi

c++ - std::function 在 VS2012 中无法编译

转载 作者:可可西里 更新时间:2023-11-01 16:10:22 30 4
gpt4 key购买 nike

我正在尝试编译以下取自 here 的代码但我收到编译错误。有没有人知道可能出了什么问题?

代码

#include <iostream>
#include <functional>

struct Foo {
Foo(int num) : num_(num) {}
void print_add(int i) const { std::cout << num_+i << '\n'; }
int num_;
};


int main()
{
// store a call to a member function
std::function<void(const Foo&, int)> f_add_display = &Foo::print_add;
Foo foo(314159);
f_add_display(foo, 1);
}

编译错误:

Error   1   error C2664: 'std::_Func_class<_Ret,_V0_t,_V1_t>::_Set' : 
cannot convert parameter 1 from '_Myimpl *' to 'std::_Func_base<_Rx,_V0_t,_V1_t> *'

谢谢。

最佳答案

这看起来像是 VS2012 中的错误,我已经提交了错误报告 here .

目前以下工作:

编辑:根据 Xeo 使用 std::mem_fn 的建议编辑

#include <iostream>
#include <functional>

struct Foo {
Foo(int num) : num_(num) {}
void print_add(int i) const { std::cout << num_+i << '\n'; }
int num_;
};

int main()
{
// store a call to a member function
std::function<void(const Foo&, int)> f_add_display = std::mem_fn(&Foo::print_add);
Foo foo(314159);
f_add_display(foo, 1);
}

关于c++ - std::function 在 VS2012 中无法编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13096162/

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