cocos2dx中如何进行类型转,把整数换为字符串,这了我们就可以找到答案了。

用char类型数组存放
char  a【10】;
int i = 789;
sprintf(a,"%d",i);