#include <memory>
#include <functional>
class A{ //non-copyable
std::unique_ptr<int> a;
public:
void operator()(){} //non-const
};
void func(std::function<void(void)> f)
{}
int main()
{
A fobj;
func(fobj);
return 0;
}
如上,需要传递一个A的函数对象给func,并且fobj不能是const型的。怎样实现呢?
有以下方案:
用A的引用。缺点:A被销毁时引用随之失效。
通过移动语义构造一个shared_ptr。缺点:额外的运行时开销,需要A可移动构造。
或者通过一个在拷贝时移动对象的wrapper来实现(需要A可移动构造):