我有以下代碼:使用Boost適配器用的std :: bind表達式
#include <boost/range/adaptor/transformed.hpp>
#include <boost/range/algorithm.hpp>
#include <iostream>
#include <functional>
#include <memory>
struct A {
A() = default;
A(const A&) = delete;
A& operator=(const A&) = delete;
};
struct B {
B() = default;
B(const B&) = delete;
B& operator=(const B&) = delete;
int foo(const A&, int b) {
return -b;
}
};
int main() {
A a;
auto b = std::make_shared<B>();
std::vector<int> values{1, 2, 3, 2};
using std::placeholders::_1;
auto fun = std::bind(&B::foo, b.get(), std::ref(a), _1);
int min = *boost::min_element(values | boost::adaptors::transformed(fun));
std::cout << min << std::endl;
}
當我嘗試編譯它,鐺提供了以下錯誤消息(全光輸出here):
/usr/local/include/boost/optional/optional.hpp:674:80: error: object of type 'std::_Bind<std::_Mem_fn<int (Base::*)(const A &, int)> (Base *, std::reference_wrapper<A>, std::_Placeholder<1>)>' cannot be assigned because its copy assignment operator is implicitly deleted
看來,雖然綁定對象有一個拷貝構造函數,但它的拷貝賦值操作符被刪除。如果我嘗試使用lambda代替bind
,我會得到相同的錯誤。
這是C++ 11標準,libstdC++實現還是Boost適配器實現中的錯誤?
這是最好的解決方法是什麼?我可以把它包裝成
std::function
。看來boost::bind
也有效。哪個更有效率,還是真的很重要?
2)'boost :: bind'比'std :: function'效率更高 – David