博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
std::string char* CCString 区别和转换
阅读量:4980 次
发布时间:2019-06-12

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

1.赋值方式

string str = "hello world";

 char *b="helllo2";

 

2.转化1

 char *b="helllo2";

string m=b;

3.转化2

string str = "hello world";

 const char* u;

 

  u= str.c_str()

  即str.c_str() = u;

4.CCString是Cocos2d-x自己封装的字符串类,只要是Cocos2d-x封装的类,都能自动管理内存,一般不需要我们关心。

CCString有个getCString函数,可以获取const char*对象。

转载于:https://www.cnblogs.com/ruzhuan/p/3344207.html

你可能感兴趣的文章
找出第3名学生的成绩
查看>>
[转载]typedef常见用法
查看>>
MVC我来了
查看>>
动态期末成绩
查看>>
如何判断用户是否是第一次进入应用程序(仿微信进入动画)
查看>>
2012.12.1 随笔
查看>>
JENKINS 打包发布脚本
查看>>
机器学习基础
查看>>
iOS7初体验(1)——第一个应用程序HelloWorld
查看>>
DataGridView 的 CurrentCellDirtyStateChanged事件用法
查看>>
Equals和GetHashcode
查看>>
Window Server 2008 R2 Exception from HRESULT: 0x800A03EC
查看>>
DBlink传输bBLOB,CLOB类型数据
查看>>
设计模式之策略模式
查看>>
rand函数
查看>>
URL解析器urllib2
查看>>
Hibernate学习——API学习
查看>>
卷积FFT、NTT、FWT
查看>>
分布式缓存之Ehcache与terracotta - Terracotta服务器概念篇
查看>>
mysql--->innodb引擎什么时候表锁什么时候行锁?
查看>>