C++中string与char*相互转换

C++中string与char*相互转换

一、string转换为char*有3中方法:

1.data
string str="good boy";
const char *p=str.data();
2.c_str
string str="good boy";
const char *p=str.c_str();
3. copy
string str="good boy";
char p[20];
str.copy(p,5,0); //这里5,代表复制几个字符,0代表复制的位置
*(p+5)='\0'; //要手动加上结束符
或者:
string str="good boy";
char *p;
int len = str.length();
p=(char *)malloc((len+1)*sizeof(char));
str.copy(p,len,0);

二、char*转换为string

char* s="good boy";
string str=s;
或者

char s[20]="good boy";
string str=s;

三、string转换成char[]

string str = "good boy";
char p[20];
for(int i=0;i

或者

string str="good boy";
char p[20];
str.copy(p,5,0); 
*(p+5)='\0'; 

你可能感兴趣的:(C++11/17,c++,开发语言)