我可以使用 boost::bind 来存储不相关的对象吗?

Can I use boost::bind to store an unrelated object?

我可以使用 boost::bind 使生成的函数对象存储一个未声明为绑定目标函数参数的对象吗?例如:

void Connect(const error_code& errorCode)
{
    ...
}

// Invokes Connect after 5 seconds.
void DelayedConnect()
{
    boost::shared_ptr<boost::asio::deadline_timer> timer =
        boost::make_shared<boost::asio::deadline_timer>(ioServiceFromSomewhere);

    timer->expires_from_now(
        boost::posix_time::seconds(5));

    // Here I would like to pass the smart pointer 'timer' to the 'bind function object'
    // so that the deadline_timer is kept alive, even if it is not an actual argument
    // to 'Connect'. Is this possible with the bind syntax or similar?
    timer->async_wait(
        boost::bind(&Connect, boost::asio::placeholders::error));
}

ps。我最感兴趣的是已经存在的这样做的语法。我知道我可以自己制作自定义代码。我也知道我可以手动让计时器保持活动状态,但我想避免这种情况。

是的,您可以简单地绑定 "too many" 参数,它们不会传递给底层处理程序。参见 Why do objects returned from bind ignore extra arguments?

没关系,除非您需要 "talk to" 计时器对象从 Connect 中删除。

PS。另外,不要忘记在计时器被破坏时用 operation_abandoned 期待计时器完成。

是的,您可以通过绑定额外的参数来做到这一点。我经常用 asio 这样做,例如为了在异步操作期间保持缓冲区或其他状态有效。

之后您还可以通过扩展处理程序签名来使用它们来从处理程序访问这些额外参数:

void Connect(const error_code& errorCode, boost::shared_ptr<asio::deadline_timer> timer)
{
}

timer.async_wait(
    boost::bind(&Connect, boost::asio::placeholders::error, timer));