在不花很长时间查看 boost 源代码的情况下,有人可以快速了解一下 boost 绑定是如何实现的吗?
Brian R. Bondy
问问题
12050 次
3 回答
25
我喜欢这个bind
来源:
template<class R, class F, class L> class bind_t
{
public:
typedef bind_t this_type;
bind_t(F f, L const & l): f_(f), l_(l) {}
#define BOOST_BIND_RETURN return
#include <boost/bind/bind_template.hpp>
#undef BOOST_BIND_RETURN
};
告诉你几乎所有你需要知道的,真的。
标bind_template
头扩展为内联operator()
定义列表。比如最简单的:
result_type operator()()
{
list0 a;
BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
}
我们可以看到BOOST_BIND_RETURN
宏在这一点上展开,return
所以这条线更像return l_(type...)
.
一个参数版本在这里:
template<class A1> result_type operator()(A1 & a1)
{
list1<A1 &> a(a1);
BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
}
这很相似。
这些listN
类是参数列表的包装器。这里有很多深奥的魔法,虽然我不太了解。他们还重载operator()
了调用神秘unwrap
函数。忽略一些编译器特定的重载,它不会做很多事情:
// unwrap
template<class F> inline F & unwrap(F * f, long)
{
return *f;
}
template<class F> inline F & unwrap(reference_wrapper<F> * f, int)
{
return f->get();
}
template<class F> inline F & unwrap(reference_wrapper<F> const * f, int)
{
return f->get();
}
命名约定似乎是:F
是函数参数的类型bind
。R
是返回类型。L
往往是参数类型的列表。还有很多复杂性,因为对于不同数量的参数有不少于九个重载。最好不要过多关注。
于 2008-09-22T04:10:20.280 回答
2
顺便说一句,如果bind_t
通过包含折叠和简化boost/bind/bind_template.hpp
,它会变得更容易理解,如下所示:
template<class R, class F, class L>
class bind_t
{
public:
typedef bind_t this_type;
bind_t(F f, L const & l): f_(f), l_(l) {}
typedef typename result_traits<R, F>::type result_type;
...
template<class A1>
result_type operator()(A1 & a1)
{
list1<A1 &> a(a1);
return l_(type<result_type>(), f_, a, 0);
}
private:
F f_;
L l_;
};
于 2009-12-03T13:10:25.687 回答
0
我认为它是一个模板类,它为要绑定的参数声明一个成员变量,并为其余参数声明重载 ()。
于 2008-09-22T01:19:41.533 回答