分享一下cocos2dx 返回字符串中字符串拼接的源代码,大家如果在写这方面的代码的时候可以参考一下,代码如下:

  1. for(int i=1;i<5;i++){
  2.         char str[3];
  3.         sprintf(str,"%d",i);

  4.         char totalFilename[30]; 
  5.         strcpy(totalFilename, "game_loading") ;
  6.         const char* suffix = ".png";
  7.         strcat(totalFilename, str);
  8.         strcat(totalFilename, suffix);
  9.         log(totalFilename);
  10.         animation->setDelayPerUnit(0.2f);
  11.         log("%d",sizeof(str[0]));

  12.         char t = 'q';
  13.         log("char %d",sizeof(t));

  14.         float a = 10.30;

  15.         log("t %d",sizeof(&a));
  16.         
  17.         animation->addSpriteFrame(SpriteFrameCache::getInstance()->getSpriteFrameByName(totalFilename));
  18.     }