socket绑定功能的编译错误

时间:2014-08-06 01:41:35

标签: c++ sockets compiler-errors

一开始我包含以下文件,并且绑定功能

的一切正常
#include "stdafx.h"
#undef UNICODE

#define WIN32_LEAN_AND_MEAN

#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdlib.h>
#include <stdio.h>
#include <iostream>

绑定功能

iResult = bind(ListenSocket, result->ai_addr, (int)result->ai_addrlen);

当我包含mysql库时,事情开始变得混乱

#include "stdafx.h"
#undef UNICODE

#define WIN32_LEAN_AND_MEAN

#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdlib.h>
#include <stdio.h>
#include <iostream>

//mysql connections
#include "mysql_connection.h"
#include <cppconn/driver.h>
#include <cppconn/exception.h>
#include <cppconn/resultset.h>
#include <cppconn/statement.h>

我开始调试,它给了我这个错误

IntelliSense: no suitable conversion function from "std::_Bind<false, void, SOCKET &, sockaddr *&, int>" to "int" exists    

error C2440: '=' : cannot convert from 'std::_Bind<false,void,SOCKET &,sockaddr *&,int>' to 'int'

请帮忙。

1 个答案:

答案 0 :(得分:12)

我想问题不在于包含Mysql库,我遇到了这个问题,我修复了它删除

using namespace std;

或另一种解决方案是从全局命名空间调用bind来避免这种问题;

我忘了写这个从全局命名空间调用bind是这样的:

::bind(...);

希望这有帮助。