使用 boost::bind 和 boost::lambda::new_ptr 返回一个shared_ptr构造函数
给定一个 A 类,
class A {
public:
A(B&) {}
};
我需要一个 boost::function
对象。
我不想创建一个临时函数
boost::shared_ptr<A> foo(B& b) {
return boost::shared_ptr<A>(new A(b));
}
来解决我的问题,我正在尝试通过绑定 lambda::new_ptr 来解决它。
boost::function<boost::shared_ptr<A> (B&)> myFun
= boost::bind(
boost::type<boost::shared_ptr<A> >(),
boost::lambda::constructor<boost::shared_ptr<A> >(),
boost::bind(
boost::type<A*>(),
boost::lambda::new_ptr<A>(),
_1));
也就是说,我分两步绑定了A的new_ptr和shared_ptr的构造函数。显然它不起作用:
/usr/include/boost/bind/bind.hpp:236: error: no match for call to ‘(boost::lambda::constructor<boost::shared_ptr<A> >) (A*)’
/usr/include/boost/lambda/construct.hpp:28: note: candidates are: T boost::lambda::constructor<T>::operator()() const [with T = boost::shared_ptr<A>]
/usr/include/boost/lambda/construct.hpp:33: note: T boost::lambda::constructor<T>::operator()(A1&) const [with A1 = A*, T = boost::shared_ptr<A>]
我应该如何进行绑定? 提前致谢, 弗朗西斯科
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
boost::lambda::bind
而不是boost::bind
。Use
boost::lambda::bind
instead ofboost::bind
.