我有一个带有方法的类,我也希望能够将其用作谓词。
class MyClass {
bool ParticleHasAncestor(const Particle &particle, int id) const;
class AncestorPredicate {
int mId;
public:
AncestorPredicate(int idCode) : mId(idCode) { }
bool operator()(const Particle &particle) const { return ParticleHasAncestor(particle, mId); }
};
};
但是,编译器抱怨没有ParticleHasAncestor()
MyClass 的实例就无法使用。我需要使用朋友课程吗?或者有更好的解决方案吗?
我没有使用 C++11,所以不能使用 lambda 函数。
更新: ParticleHasAncestor()
不能设为静态,因为它使用 MyClass 的成员。