1、char*转string
char*cp="char"; std::stringsp=cp;
2、string转char*
//1 std::stringstr="string"; constchar*cp=str.data(); //2 std::stringstr="string"; constchar*cp=str.c_str(); //3 std::stringstr="hello"; charp[10]; str.copy(p,4,1);//这里4,代表复制几个字符,1代表复制的开始位置index *(p+4)='\0';//要手动加上结束符
3、int转string
intnumber=32; chartemp[10]; sprintf(temp,"%d",number,10); std::strings=temp;
4、Cocos2d专有的转换方法
intindex=100; std::stringstr=Value(index).asString(); intindex2=Value(str).asInt();原文链接:https://www.f2er.com/cocos2dx/345085.html