摘要:
方法一: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... 阅读全文
摘要:
方法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... 阅读全文