程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++ sprintf_s 字符串拼接

C++ sprintf_s 字符串拼接

編輯:關於C++

C++ sprintf_s  字符串拼接:定義一個buf 格式如下:

char buf[128] = {0};

例子:

sprintf_s(buf,128,"%s%d",appGetGlobal()->getText("id"),appGetGlobal()->getVersion());

m_versionLabel = CCLabelTTF::create(buf,"Arial",20,CCSizeMake(200,25),kCCTextAlignmentLeft,kCCVerticalTextAlignmentCenter);
m_versionLabel->setAnchorPoint(ccp(0,0.5));
m_versionLabel->setPosition(ccp(124,38));
this->addChild(m_versionLabel);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved