我在想是否可以轻松地将 printf 或 cout 重定向到套接字?
我目前正在使用 Windows VC++ 编程...
不,但您可以使用sprintf
函数族:
// Make sure this buffer is big enough; if the maximum size isn't known, use
// _vscprintf or a dynamically allocated buffer if you want to avoid truncation
char buffer[2048];
_snprintf_s(buffer, sizeof(buffer), _TRUNCATE, "format %s etc.", args...);
send(mySocket, buffer, strlen(buffer)+1, 0); // +1 for NUL terminator
请注意,这_snprintf_s
是 Microsoft 仅运行时功能,因此如果您正在编写可移植代码,请snprintf
在其他平台上使用。
在 C++ 中,您也可以使用 astd::ostringstream
来获得类似的结果:
std::ostringstream buffer;
buffer << "test: " << myvar << somethingelse << etc;
send(mySocket, buffer.str().c_str(), buffer.str().size() + 1, 0);
// +1 for NUL terminator
Linux 有 dprintf() 允许您写入套接字文件描述符。
int dprintf(int fd, const char *format, ...);
不是微不足道的。在 WinSock (MS Windows) 世界中,套接字与文件描述符不同。