将仿函数的实例传递给另一个仿函数

时间:2012-04-12 11:05:08

标签: c++ functor

由于结构原因,我希望能够将仿函数的实例传递给另一个仿函数。目前,我通过将指向函数的指针交给我的仿函数来实现等效的东西。

我试图将这个想法封装在下面的一些最小代码中:

class A
{
private:
    double _x, _y, _z;

public:
    A (double x, double y, double z) : _x(x), _y(y), _z(z) {};

    void operator() (double t) const
    {
        // Some stuff in here that uses _x, _y, _z, and t.
    }
};

class B
{
private:
    // What is the type of the functor instance?
    ??? A ???

public:
    // How do I pass the instance of A into B at initialisation?
    B (??? A ???) :  ??? : {};

    void operator() (double tau) const
    {
        // Something that uses an instance of A and tau.
    }
};

int main(void)
{
    // I want to do something like this:
    A Ainst(1.1, 2.2, 3.3); // Instance of A.
    B Binst(Ainst);         // Instance of B using instance of A.

    Binst(1.0);             // Use the instance of B.

    return 0
}

从本质上讲,我希望能够将仿函数链接起来。如上所述,我目前通过将函数指针传递给B以及变量x,y和z来实现此目的。在我的代码中,B是模板化的,目标是将其写入一次,然后在不进行任何修改的情况下重复使用它,这意味着将x,y和z交给B并不理想。另一方面,A将针对我编写的每个程序进行定制。我不介意B很乱,但我希望A好看,干净,因为这是暴露的部分。

对于那些了解量子力学的人来说,B是薛定谔方程(或主方程),A是时间依赖的哈密顿量。变量x,y和z用于构造哈密顿量,t是时间,允许我使用odeint库(所以我使用ublas和其他一些Boost位)。

1 个答案:

答案 0 :(得分:3)

使用参考文献?

class A { /* ... */ };

class B
{
    A &a;

public:
    B(const A &my_a)
        : a(my_a)
    { }

    // ...
};