long long max = 123123123123; sprintf(temp,"%lld",max);
long long my_atoll(char *instr)
{
long long retval;
int i;
retval = 0;
for (; *instr; instr++) {
retval = 10*retval + (*instr - '0');
}
return retval;
}
typedef void (CCObject::*SEL_MenuHandler)(CCObject*); // 声明
SEL_MenuHandler sm = (SEL_MenuHandler)(&UILayer::onBeiBaoClicked);// 赋值
(m_pListener->*m_pfnSelector)(this); // 调用
参考 LINK
void CCDirector::popScene(void)
vsvoid CCDirector::popScene()
C++ 上面2种相等 都表示无参数http://baike.baidu.com/view/4024151.htm
私有基类中的成员 在私有派生类中的访问属性
私有成员 不可访问
公用成员 私有
保护成员 私有
虚函数,纯虚函数
对象多态,函数的后期动态绑定,调用的时候才知道调用哪个方法
struct就是简单的类
http://www.cppblog.com/pjqblues/archive/2007/10/23/34945.html
http://dev.yesky.com/193/2568193.shtml
http://blog.csdn.net/windy_net/article/details/6096812
unsigned short bs_version = (pBuffer[offset++] & 0xff) + ((pBuffer[offset++] & 0xff) << 8); // 错误
保险起见写成下面这种:
unsigned short bs_version = (pBuffer[offset] & 0xff) + ((pBuffer[offset+1] & 0xff) << 8);
offset +=2;
try-catch is not supported on android NDK
CCLog CCLOG
char buf[10]; sprintf(buf,"%d",100); string b= buf;
string char* to int
string str= "12345 ";
int b = atoi(str.c_str());
C++中对sprintf()函数的说明(转)
== /* Nothing to do */
相当于空语句
#include "CCNS.h"
char msg[256] = {0};
sprintf(msg, "文件读取出错: %s", pszFilename);
CCAssert(!pBuffer, msg);
#define CCAssert(cond, msg) CC_ASSERT(cond)
改成:
#define CCAssert(cond, msg) CC_ASSERT(msg && cond)
http://blog.sina.com.cn/s/blog_61d2d3f50100zgz8.html
有问题 msg显示不出来
// 全路径
const char *fullPath = CCFileUtils::sharedFileUtils()->fullPathFromRelativePath(pszFilename);
// 读取文件
unsigned long nSize = 0;
unsigned char* pBuffer = CCFileUtils::sharedFileUtils()->getFileData(fullPath, "rb", &nSize);
CCDictionary添加对象
CCArray添加对象
CCNode
CCSet
CCAction
直接放在cpp里声明?,作用域只在本文件,一般当成单例用。
static CCSpriteFrameCache *pSharedSpriteFrameCache = NULL;
.h文件里,作用域只在本类
private
static CCSpriteFrameCache *pSharedSpriteFrameCache
但返回值值和域名需要。
选中 - 左键点选中的区域