release buffer_putpixel函数

release buffer_putpixel函数CString中存储的字符的数据类型为wchar_t类型。一、CString转换为char *(1)方法一:使用wcstombs()#include <iostream>using namespace std;#includ

CString中存储的字符的数据类型为wchar_t类型。

一、CString转换为char *

(1)方法一:使用wcstombs()

#include <iostream> using namespace std; #include <atlstr.h> int main() { CString str = L"liuxijiao计算机网络"; wchar_t *pWChar = str.GetBuffer(); //获取str的宽字符用数组保存 str.ReleaseBuffer(); int nLen = str.GetLength(); //获取str的字符数 char *pChar = new char[nLen * 2 + 1]; memset(pChar, 0, nLen * 2 + 1); int rtnVal = (int)wcstombs(pChar, pWChar, nLen * 2 + 1); //宽字符转换为多字节字符 cout<<pChar<<endl; delete[] pChar; return 0; }

输出结果:

release buffer_putpixel函数

注意到结果没有输出“计算机网络”,那是因为wcstombs()不支持中文。

(2)方法二:使用WideCharToMultiByte();

#include <iostream> using namespace std; #include <atlstr.h> int main() { CString str = L"liuxijiao计算机网络"; int n = str.GetLength(); //获取str的字符数 int len = WideCharToMultiByte(CP_ACP, 0, str, n, NULL, 0, NULL, NULL); //获取宽字节字符的大小,大小是按字节计算的 char *pChar = new char[len + 1]; //以字节为单位 WideCharToMultiByte(CP_ACP, 0, str, n, pChar, len, NULL, NULL); //宽字节编码转换成多字节编码 pChar[len + 1] = '\0'; //多字节字符以'\0'结束 cout<<pChar<<endl; delete[] pChar; return 0; }

输出结果:

release buffer_putpixel函数

二、char *转换为CString

(1)方法一:使用_T()宏

 CString str = _T("liuxijiao计算机网络");

(2)方法二:使用API的函数MultiByteToWideChar()

#include <iostream> using namespace std; #include <atlstr.h> #include <stdio.h> #include <string.h> int main() { //将char数组转换为wchar_t数组 char *pChar = "liuxijiao计算机网络"; int charLen = strlen(pChar); //计算pChar所指向的字符串大小,以字节为单位,一个汉字占两个字节 int len = MultiByteToWideChar(CP_ACP, 0, pChar, charLen, NULL, 0); //计算多字节字符的大小,按字符计算 wchar_t *pWChar = new wchar_t[len + 1]; //为宽字节字符数申请空间, MultiByteToWideChar(CP_ACP, 0, pChar, charLen, pWChar, len); //多字节编码转换成宽字节编码 pWChar[len] = '\0'; //将wchar_t数组转换为CString CString str; str.Append(pWChar); delete[] pChar; delete[] pWChar; return 0; }

在str.Append(pWChar);这条语句处设断点,调试运行,可查看到str的内容为”liuxijiao计算机网络”。

(三)方法三:使用A2T()、A2W()

char *pChar = "liuxijiao计算机网络"; USES_CONVERSION; CString str = A2T(pChar);
 char *pChar = "liuxijiao计算机网络"; USES_CONVERSION; CString str = A2W(pChar);

最后,如果你想学C/C++可以私信小编“01”获取素材资料以及开发工具和听课权限哦!

2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/15855.html

(0)
上一篇 2024年 9月 18日
下一篇 2024年 9月 18日

相关推荐

关注微信