gpt4 book ai didi

c++ - 套接字绑定(bind)函数的编译错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:15:26 27 4
gpt4 key购买 nike

一开始我包含了以下文件,绑定(bind)函数一切正常

#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>

绑定(bind)函数

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'

请帮忙。

最佳答案

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

using namespace std;

或者另一种解决方案是从全局命名空间调用绑定(bind)来避免此类问题;

我忘了写从全局命名空间调用绑定(bind)是这样完成的:

::bind(...);

希望这对您有所帮助。

关于c++ - 套接字绑定(bind)函数的编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25151035/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com