std::tr1::function<bool(bool)> f4 =
std::tr1::bind(
std::logical_and<bool>(),
std::tr1::bind(std::logical_not<bool>(), std::tr1::placeholders::_1),
true);
std::tr1::bind(
std::logical_and<bool>(),
std::tr1::bind(std::logical_not<bool>(), std::tr1::placeholders::_1),
true);
想在vs2010里玩一玩function programming,却被郁闷了,又发现了一个别人发现过的bug