码迷,mamicode.com
首页 > 编程语言 > 详细

CString to char 数组

时间:2015-07-23 13:28:28      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

方法一:
char *p;
CString str="hello";
p=str.GetBuffer(str.GetLength());
str.ReleaseBuffer();
方法二:
CString str="hello";
char ch[20];
memcpy(ch,str,str.GetLength());
方法三:
char *ch;
CString str="hello";
ch=(LPSTR)(LPCTSTR)str;

CString to char 数组

标签:

原文地址:http://www.cnblogs.com/zerolu/p/4670047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!