是否有STL方法/提升类,例如:
template<class S, class T>
class mem_mem : std::unary_function<T, S>
{
public:
mem_mem(S T::*_m) : m(_m) {}
S operator()(T &t) const {
return t .* m;
}
const S operator()(const T &t) const {
return t .* m;
}
private:
S T::*m;
};
它与mem_fun
类似,但对于字段。
答案 0 :(得分:1)
boost::bind
有mem_fn,看起来就像你感兴趣的那样。
答案 1 :(得分:1)
您可以使用boost::bind
或boost::mem_fn
。如果传入的成员是字段的成员,则boost::bind
充当返回数据成员的函子。
#include <vector>
#include <boost/bind.hpp>
#include <iostream>
#include <iterator>
struct X {
X(): a(0) {};
X(int i) : a(i) {};
int a;
};
int main() {
std::vector<X> v1;
v1.reserve(10);
for(int i = 0; i < 10; ++i) {
v1.push_back(X(i));
}
std::vector<int> v2(10);
std::transform(v1.begin(), v1.end(), v2.begin(), boost::bind(&X::a, _1));
// or std::transform(v1.begin(), v1.end(), v2.begin(), boost::mem_fn(&X::a));
std::copy(v2.begin(), v2.end(), std::ostream_iterator<int>(std::cout,",") );
std::cout << std::endl;
}