string与wstring互转 C++ Code 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
06_列表与string的互相转换 07_元组 08_列表生成式 09_列表切片 10_进制转换 11_类型转换 12_range 13_for循环 14常用的数学运算 15_指数最大最小函数 16_有参数的函数与没有参数的函数 17_map函数 18_in_any用法 19_zip函数 20_递归函数 21_匿名函数 22IO操作 案例一:爬虫爬豆瓣实例 案例二:判断身份...
WideCharToMultiByte(CP_ACP,0, pwBuf, nwLen, pBuf, nLen,NULL,NULL); std::string strRet = pBuf; delete[]pBuf; delete[]pwBuf; pBuf =NULL; pwBuf =NULL; returnstrRet; } // std:string转UTF8 std::string string_To_UTF8(conststd::string& str) { intnwLen = ::MultiByteToWideChar(CP_AC...