Как объяснено в разделе Переменные-члены как цели :
Указатель на переменную-член на самом деле не функция, а первый аргумент для [boost::lambda::bind
] функция, тем не менее, может быть указателем на переменную-член.Вызов такого выражения привязки возвращает ссылку на элемент данных.
Таким образом, чтобы создать лямбда-выражение, которое обращается к члену z
, вы можете использовать:
boost::lambda::bind(&Imath::V3f::z, boost::lambda::_1)
Возвращенный объект сам может быть использован в других выражениях.Например,
boost::lambda::bind(&Imath::V3f::z, boost::lambda::_1) = 0.0
означает «получить ссылку double
на z
член первого аргумента (тип Imath::V3f&
) и присвоить значение 0,0».
Youзатем можно использовать эту лямбду с Boost.Function и std::for_each
:
boost::function<void(Imath::V3f&)> f = boost::lambda::bind(&Imath::V3f::z, boost::lambda::_1) = 0.0;
std::for_each(vec.begin(), vec.end(), f);
. Для справки приведем полный компилируемый пример:
#include <algorithm>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <boost/function.hpp>
#include <boost/lambda/bind.hpp>
#include <boost/lambda/lambda.hpp>
namespace Imath
{
class V3f
{
public:
double x, y, z;
V3f(double x_, double y_, double z_)
: x(x_), y(y_), z(z_)
{
}
friend std::ostream& operator<<(std::ostream& os, const V3f& pt) {
return (os << '(' << pt.x << ", " << pt.y << ", " << pt.z << ')');
}
};
}
int main()
{
std::vector<Imath::V3f> vec(5, Imath::V3f(1.0, 1.0, 1.0));
boost::function<void(Imath::V3f&)> f = boost::lambda::bind(&Imath::V3f::z, boost::lambda::_1) = 0.0;
std::for_each(vec.begin(), vec.end(), f);
std::vector<Imath::V3f>::iterator it, end = vec.end();
for (it = vec.begin(); it != end; ++it) {
std::cout << *it << std::endl;
}
return EXIT_SUCCESS;
}
Выходы:
(1, 1, 0)
(1, 1, 0)
(1, 1, 0)
(1, 1, 0)
(1, 1, 0)