博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cocos2d-x类型转换(CCstring int string char UTF-8互转)
阅读量:5214 次
发布时间:2019-06-14

本文共 1243 字,大约阅读时间需要 4 分钟。

http://www.cnblogs.com/leehongee/p/3642308.html

 

//int 转 CCstringint num=5; CCString* ns=CCString::createWithFormat("%d",num);  //CCstring 转 intint px = ns->intValue();//将CCString 转换为int的方法,转成float类型有 floatValue()//====================================== //CCString 转    charconst char *string= ns->getCString(); //char 转    CCStringCString.Format(”%s”,char *)//char 转cstring  CCString* ns=CCString::createWithFormat("%s",char *);//====================================== //string 转  charconst char *string=std::string("STRING").c_str();char 转 stringstring s(char *);//====================================== //string  转 intstd::string s("1234");int n = std::atoi(s.c_str());//函数原型int atoi(const char *); //int 转 stringint a=3;CCString* ns=CCString::createWithFormat("%d",a);string s=ns->m_sString;//======================================//string 转 CCStringstd::string str = "123";CCString* ns=CCString::createWithFormat("%s",str.c_str());CCString 转 stringstd::string s= ns->m_sString;//ns是一个CCString*类型//======================================//char 转  int char *buf = "1122"; int n = std::atoi(buf);//int 转 charint a=3;CCString* ns=CCString::createWithFormat("%d",a);const char* s=ns->getCString();

转载于:https://www.cnblogs.com/Xujg/p/7008254.html

你可能感兴趣的文章
[转]ASP数组全集,多维数组和一维数组
查看>>
我的中兴五年:加班为何成了底层员工心中永远的痛
查看>>
git学习
查看>>
C# winform DataGridView 常见属性
查看>>
逻辑运算和while循环.
查看>>
Nhiberate (一)
查看>>
c#后台计算2个日期之间的天数差
查看>>
安卓开发中遇到的小问题
查看>>
ARTS打卡第3周
查看>>
HDU 2189 悼念512汶川大地震遇难同胞――来生一起走 --生成函数
查看>>
js知识梳理3:创建对象的模式探究
查看>>
linux后台运行和关闭SSH运行,查看后台任务
查看>>
cookies相关概念
查看>>
android动态权限获取
查看>>
CAN总线波形中ACK位电平为什么会偏高?
查看>>
siebel 中 join 使用心得
查看>>
剑指Offer:重建二叉树
查看>>
MyBatis课程2
查看>>
桥接模式-Bridge(Java实现)
查看>>
java面试题之hashcode相等两个类一定相等吗?equals呢?相反呢?
查看>>