C++函子模板

发布于 2024-11-08 05:26:02 字数 759 浏览 0 评论 0原文

给定以下类,它简单地将内部函子 f 映射到稍后运行的函数:

class A {
private:
   int (A::*f)(int);
   int foo(int x) { return x; }
   int bar(int x) { return x*2; }
public:
   explicit A(bool foo=true) { f = foo ? &A::foo : &A::bar; }
   int run(int x) { return (this->*f)(x); }
};

现在假设我有另一个类, B

class B {
public:
   int foo(int) { return x*x; }
};

和函数 foo< /code>:

int foo(int x) { return 0; }

我知道不可能让 A 分配并运行 B::foofoo 因为它们的原型不同:int (A::*)(int)int (B::*)(int)int (*)(int)

我要问的是,他们有什么方法可以模板化 A::f 以便它可以采用其中任何一个吗?

Given the following class, which simply maps an internal functor f to a function to be run later:

class A {
private:
   int (A::*f)(int);
   int foo(int x) { return x; }
   int bar(int x) { return x*2; }
public:
   explicit A(bool foo=true) { f = foo ? &A::foo : &A::bar; }
   int run(int x) { return (this->*f)(x); }
};

Now say I have another class, B:

class B {
public:
   int foo(int) { return x*x; }
};

And function foo:

int foo(int x) { return 0; }

I know it is not possible to have A assign and run B::foo or foo as their prototypes differ: int (A::*)(int) vs int (B::*)(int) vs int (*)(int).

What I am asking, is their any way to templatize A::f such that it could take any of them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

↙温凉少女 2024-11-15 05:26:02

通常,您使用 std::/boost::/std::tr1 ::function; 对于这种工作。它可以采用具有正确签名的任何函数对象(包括指针)。您可以使用同一个包中提供的 bind 创建调用成员函数的函数对象。

Normally, you use a std::/boost::/std::tr1 ::function<int(int)> for this kind of job. It can take any function object (including pointer) with the correct signature. You can create function objects that call member functions using bind, available in the same package.

乙白 2024-11-15 05:26:02

我不太确定你想要实现什么,但你可能想看看:

I am not exactly sure what you are trying to achieve, but you may want to look into:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文