
MFC
SailorPan
明天的你一定会感谢今天努力的自己!
展开
-
CString, string, char*互转
CString cstr = "Let's do something to improve!"; char* ch = "The most valuable thing is your thought!"; string str = "If you can't measure it, you can't improve it!"; //CString to char* USES_CONVERSI...原创 2018-03-15 14:47:53 · 250 阅读 · 0 评论 -
读取本机IP
WSADATA wsaData; WSAStartup(MAKEWORD(2, 2), &wsaData); // hostent *host; char hostName[20]; gethostname(hostName, 20); host = gethostbyname(hostName); //get ip CString strIPaddr; strIPaddr = inet_...原创 2018-06-22 17:09:08 · 325 阅读 · 0 评论