gpt4 book ai didi

c++ - 指向成员字段的指针的适配器

转载 作者:行者123 更新时间:2023-11-30 04:33:01 26 4
gpt4 key购买 nike

是否有STL方法/boost 类,例如:

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 但用于字段。

最佳答案

您可以为此使用boost::bindboost::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;
}

关于c++ - 指向成员字段的指针的适配器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7259452/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com