首页 > 学院 > 开发设计 > 正文

string与char[]

2019-11-10 19:35:05
字体:
来源:转载
供稿:网友
字符串str 与 char数组的赋值//可行1char str[256] = "I am a boy";    string stemp ;    stemp = str;    //直接指针赋值。    CCLog("stemp = %s", stemp.c_str());//可行2char* str = "I am a boy";    string stemp ;    stemp = str;    CCLog("stemp = %s", stemp.c_str());//可行3char str[256]={};    string stemp  = "I am a boy.";    memcpy(str, stemp.c_str(), sizeof(stemp));    CCLog("stemp = %s", str);//可行4char str[256]={};    string stemp  = "I am a boy.";    char *temp = &stemp[0];    CCLog("stemp = %s", temp);
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表