本文介绍了如何将std :: wstring转换为TCHAR *的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
std :: wstring.c_str()返回一个wchar_t *。
std::wstring.c_str() returns a wchar_t*.
如何从wchar_t *到TCHAR *,或从std :: wstring到TCHAR *
How do I get from wchar_t* to TCHAR*, or from std::wstring to TCHAR*
感谢
推荐答案
#include <atlconv.h>
TCHAR *dst = W2T(src.c_str());
在ANSI或Unicode构建中将做正确的事。
Will do the right thing in ANSI or Unicode builds.
这篇关于如何将std :: wstring转换为TCHAR *的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!