int char_leng;
Cstring str="abcd";
char_leng=str.GetLength();//获取字符串长度
char *str_temp=(char *)malloc(char_leng+1);//根据字符串长度申请一个长度=char_leng+1的内存
for(int i=0;i<char_leng;i++)
str_temp[i]=str.GetAt(i); //获取字符串
str_temp[char_leng]=' ';//char *字符串一‘、0’结束