2010年9月24日
摘要: 方法一: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)(LPCT... 阅读全文
posted @ 2010-09-24 20:47 一路前行 阅读(1649) 评论(0) 推荐(1) 编辑
摘要: 方法1:用c/c++自身的字符串数组#include <string.h>void test(){ // 用法 1 - 1 char szInfo[100] = {0}; strcpy(szInfo, "hello, world\r\n"); printf(szInfo); // 用法 1- 2 char *pInfo = "hello, guys\r\n"; printf(pInf... 阅读全文
posted @ 2010-09-24 13:32 一路前行 阅读(272) 评论(0) 推荐(0) 编辑