如何转换“wchar_t *”到“const char *”
如何将 'wchar_t
*' 转换为 'const char *
' ?
使用C++ MFC VS2010。
谢谢。
How can I convert 'wchar_t
*' to 'const char *
' ?
using C++ MFC VS2010.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于问题是关于 MFC 的,我建议如下:
我通常需要以下转换:
CStringW 和 CStringA 分别具有运算符 LPCWSTR 和 LPCSTR。
As the question is about MFC, I would suggest the following:
I typically need the following conversions:
CStringW and CStringA have operators LPCWSTR and LPCSTR respectivelly.