博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
win32 wstring <-> string
阅读量:6279 次
发布时间:2019-06-22

本文共 805 字,大约阅读时间需要 2 分钟。

  hot3.png

static std::string w2c(std::wstring str)	{		int nlength = str.length();		int nbytes = WideCharToMultiByte(0,0,str.c_str(),nlength,NULL,0,NULL,NULL);		if(nbytes == 0) return "";		char*buff = new char[nbytes+1];		WideCharToMultiByte(0,0,str.c_str(),nlength,buff,nbytes,NULL,NULL);		buff[nbytes] = '\0';		std::string ret_str = std::string(buff);		delete [] buff;		return ret_str;			}static std::wstring c2w(std::string str)	{		if(str.length() == 0) return std::wstring();		int nu = str.length();		size_t n =(size_t)MultiByteToWideChar(CP_ACP,0,str.c_str(),nu,NULL,0);		wchar_t*wbuff = new wchar_t[n+1];		MultiByteToWideChar(CP_ACP,0,str.c_str(),(int)nu,wbuff,(int)n);		wbuff[n] = 0;		std::wstring wstr_ret = std::wstring(wbuff);		delete []wbuff;		return wstr_ret;	}

转载于:https://my.oschina.net/lyr/blog/375799

你可能感兴趣的文章
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
运维基础命令
查看>>
入门到进阶React
查看>>
SVN 命令笔记
查看>>
检验手机号码
查看>>
重叠(Overlapped)IO模型
查看>>
Git使用教程
查看>>
使用shell脚本自动监控后台进程,并能自动重启
查看>>
Flex&Bison手册
查看>>
solrCloud+tomcat+zookeeper集群配置
查看>>
/etc/fstab,/etc/mtab,和 /proc/mounts
查看>>
Apache kafka 简介
查看>>
socket通信Demo
查看>>
技术人员的焦虑
查看>>
js 判断整数
查看>>
建设网站应该考虑哪些因素
查看>>
mongodb $exists
查看>>
js实现页面跳转的几种方式
查看>>