2

boost::signals2::signals在一个组件中使用,UpdateComponent. 此组件的特定聚合类型为Updateable. 我希望Updateable能够连接到UpdateComponent. boost::signals2::signal我应该注意到Updateable'sslotpure-virtual.

下面是代码的具体示例:

// This is the component that emits a boost::signals2::signal.
class UpdateComponent {
    public:
        UpdateComponent();
        boost::signals2::signal<void (float)> onUpdate; // boost::signals2::signal
}

UpdateComponent's 代码中的某个时刻,我执行onUpdate(myFloat); 我相信这类似于向boost::signals2::signal所有“听众”“开火”。

// The is the aggregate that should listen to UpdateComponent's boost::signals2::signal
class Updateable {
    public:
        Updateable();
    protected:
        virtual void onUpdate(float deltaTime) = 0; // This is the pure-virtual slot that listens to UpdateComponent.
        UpdateComponent* m_updateComponent;
}

Updateable的构造函数中,我执行以下操作:

Updateable::Updateable {
    m_updateComponent = new UpdateComponent();
    m_updateComponent->onUpdate.connect(&onUpdate);
}

我收到以下两个错误:

  1. ...Updateable.cpp:8: error: ISO C++ forbids taking the address of an unqualified or parenthesized non-static member function to form a pointer to member function. Say '&BalaurEngine::Traits::Updateable::onUpdate' [-fpermissive]
  2. /usr/include/boost/function/function_template.hpp:225: error: no match for call to '(boost::_mfi::mf1<void, BalaurEngine::Traits::Updateable, float>) (float&)'

我应该提到我将 Qt 与 boost 结合使用。但是,我已经添加CONFIG += no_keywords到我的.pro文件中,因此两者应该可以顺利协同工作,如 boost 网站上所述。我不使用 Qtsignalsslots(效果很好)的原因是:我不想Updateable成为QObject.

如果有人可以帮助我弄清楚为什么会出错,将不胜感激!

4

1 回答 1

6

您传递到的插槽connect必须是函子。要连接到成员函数,您可以使用boost::bind或 C++11 lambda。例如使用 lambda:

Updateable::Updateable {
    m_updateComponent = new UpdateComponent();
    m_updateComponent->onUpdate.connect(
        [=](float deltaTime){ onUpdate(deltaTime); });
}

或使用bind

Updateable::Updateable {
    m_updateComponent = new UpdateComponent();
    m_updateComponent->onUpdate.connect(
        boost::bind(&Updateable::onUpdate, this, _1));
}
于 2012-05-06T16:49:31.297 回答