1

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

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

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
}

本质上,我希望能够链接仿函数。如上所述,我目前通过将函数指针与变量 x、y 和 z 一起传递给 B 来做到这一点。在我的代码中,B 是模板化的,目标是编写一次,以后无需任何修改即可重用它,这意味着将 x、y 和 z 交给 B 并不理想。另一方面,将为我编写的每个程序定制 A。我不介意 B 很乱,但我希望 A 干净整洁,因为这是要暴露的部分。

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

4

1 回答 1

3

使用参考?

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

class B
{
    A &a;

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

    // ...
};
于 2012-04-12T11:08:26.793 回答