首先說明這個問題因爲重複定義引發的編譯錯誤。c++
先說明解決方法,而後再說是什麼緣由致使了這個問題。shell
解決方法:windows
下列任何一種方法均可以。api
1. 在全部包含windows.h的代碼以前加上socket
#define WIN32_LEAN_AND_MEAN函數
2. 或者直接在工程的properties( vc6 以上)/Setting(vc6) -> c/c++ -> preprocessor 中添加WIN32_LEAN_AND_MEANrpc
問題根由:編譯
由於windows.h中包含了<winsock.h>,這個是早期版本(windows socket 1.1)的windows socket 的頭文件,而當你本身的文件中因使用最新版本windows socket的函數,須要包含 winsock2.h。而這兩個版本都定義fd_set一系列的結構和函數,因此就出現這樣的問題。sso
好,咱們看下windows.h的定義,其實看一下這個定義就知道致使問題的緣由和解決問題的方法:方法
#ifndef WIN32_LEAN_AND_MEAN
#include <cderr.h>
#include <dde.h>
#include <ddeml.h>
#include <dlgs.h>
#ifndef _MAC
#include <lzexpand.h>
#include <mmsystem.h>
#include <nb30.h>
#include <rpc.h>
#endif
#include <shellapi.h>
#ifndef _MAC
#include <winperf.h>
#include <winsock.h>
#endif
#ifndef NOCRYPT
#include <wincrypt.h>
#include <winefs.h>
#include <winscard.h>
#endif
注意查看我加粗的兩行。