我正在尝试使用指向成员的指针获得对对象字段的只读访问权限,但是我收到“访问冲突读取位置...”错误。
template<typename X, typename Y>
class a
{
public:
a(Y X::*field): f([&](const X &x) { return x.*field; }) {} // error
a(Y (X::*method)() const): f([=](const X &x) { return (x.*method)(); }) {}
a(std::function<Y(const X &)> f): f(f) {}
Y operator()(const X &x) const { return f(x); }
private:
std::function<Y(const X &)> f;
};
class X
{
public:
X(): x(1) {}
int x;
int f() const { return x + 1; }
};
int main()
{
X x;
a<X const, int> a1(&X::x);
a<X, int> a2(&X::f);
a<X, int> a3([](const X &x) { return x.f() + x.x; });
std::cout << a1(x) << a2(x) << a3(x) << std::endl;
return 0;
}
我尝试将 const 限定符添加到字段定义中,但这没有帮助。