開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
vc++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
winsock
if (bind(s, (struct sockaddr *)&server, sizeof(server)) == SOCKET_ERROR)
{
exit(EXIT_FAILURE);
}
今天工作發現一個問題, 就是在c++ 使用 bind , 結果bind 編譯過不了
網路上找資料後來加上:: 變成 ::bind 才可以編譯過
想請問一下加上:: 作用是什麼?
還有個疑問是bind 是有區分不同lib 的bind 函數嗎?
謝謝