教堂数字可以用 C++0x (C++11?) 使用语言的新 lambda 部分表达,如下所示:
typedef function<int(int)> F;
static const F id = [=](int x) { return x; };
function<F(F)> church(unsigned int i)
{
if(i == 0) {
return [=] (F f) { return id; };
}
return [=] (F f) {
F tmp = [=](int x) { return f(church(i-1)(f)(x)); };
return tmp;
};
}
是否可以使用 Boost.Bind 和 C++03 来表达 Church 数字?如果是这样,怎么做?