wchar_t与char、wstring与string的相互转换
个人倾向于使用优秀的开源库做这个。
最近使用boost进行转换,代码极其简单:
boost::filesystem::path src(wchar_t); char = src.string().c_str();
当然也支持wstring和string的转换
尊重自己的内心,尊重别人的选择。
个人倾向于使用优秀的开源库做这个。
最近使用boost进行转换,代码极其简单:
boost::filesystem::path src(wchar_t); char = src.string().c_str();
当然也支持wstring和string的转换