【问题标题】:boost::asio async_send errorboost::asio async_send 错误
【发布时间】:2011-05-21 14:48:25
【问题描述】:

以下使用 boost::asio 的代码将无法编译:

#pragma once
#include <ctime>
#include <iostream>
#include <string>
#include <stdint.h>
#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <boost/asio.hpp>

class Connection
: public boost::enable_shared_from_this<Connection>
{
public:
  typedef boost::shared_ptr<Connection> pointer;
  static pointer create(boost::asio::io_service& io_service){return pointer(new Connection(io_service));}
  virtual ~Connection();
  boost::asio::ip::tcp::socket& socket();

  virtual void Send(uint8_t* buffer, int length);
  void handler(const boost::system::error_code& error, std::size_t bytes_transferred );

private:
  explicit Connection(boost::asio::io_service& io_service);
  boost::asio::ip::tcp::socket socket_;
  boost::asio::ip::tcp::endpoint remote_endpoint_;
};


------------------------------------------------------------------------------------------------
#include "Connection.h"

Connection::Connection(boost::asio::io_service& io_service)
    : socket_(io_service)
  {
  }

Connection::~Connection()
{
    //dtor
}


boost::asio::ip::tcp::socket& Connection::socket(){
    return socket_;
}

void Connection::Send(uint8_t* buffer, int length){
    socket_.async_send(boost::asio::buffer(buffer, length), 0, handler);

}
                 // Result of operation.               // Number of bytes sent.
void Connection::handler(const boost::system::error_code& error, std::size_t bytes_transferred ){
  }

这些是这段代码在 Visual C++ 中产生的错误:

Error   1   error C3867: 'Connection::handler': function call missing argument list; use '&Connection::handler' to create a pointer to member   d:\c++\ugs\accountserver\connection.cpp 19
Error   2   error C2780: 'void boost::asio::basic_stream_socket<Protocol>::async_send(const ConstBufferSequence &,WriteHandler)' : expects 2 arguments - 3 provided d:\c++\ugs\accountserver\connection.cpp 19

为什么会出现这些错误,我可以做些什么来修复它们?

【问题讨论】:

    标签: c++ sockets visual-c++ boost boost-asio


    【解决方案1】:
    Error   1   error C3867: 'Connection::handler': function call missing argument list; use '&Connection::handler' to create a pointer to member   d:\c++\ugs\accountserver\connection.cpp 19
    

    第一个错误告诉您: 要获取成员函数的“地址”,您需要使用以下语法:

    &amp;Connection::handler

    Error   2   error C2780: 'void boost::asio::basic_stream_socket<Protocol>::async_send(const ConstBufferSequence &,WriteHandler)' : expects 2 arguments - 3 provided d:\c++\ugs\accountserver\connection.cpp 19
    

    第二个错误告诉您传递给函数的参数数量不匹配

    所以调用async_send的正确方法是

    socket_.async_send(boost::asio::buffer(buffer, length), boost::bind(&Connection::handler, this, boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred));
    

    【讨论】:

      【解决方案2】:

      您对 async_send 的调用应如下所示:

      socket_.async_send(boost::asio::buffer(buffer, length), boost::bind(&Connection::handler, this, boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred));
      

      【讨论】:

        猜你喜欢
        • 2016-12-26
        • 1970-01-01
        • 1970-01-01
        • 2013-12-21
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2016-09-17
        相关资源
        最近更新 更多