摘要: 写了一个对应让其出的错误(其实也挺不容易的喔 )错误如下:1>d:\work\win32project\testeachotherclude\testeachotherclude\test2.h(9): error C2143: 语法错误 : 缺少“;”(在“*”的前面)1>d:\work\win32project\testeachotherclude\testeachotherclude\test2.h(9): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int1>d:\work\win32project\testeachoth 阅读全文
posted @ 2014-03-26 15:22 yufenghou 阅读(2805) 评论(0) 推荐(0)
摘要: error C2440: “类型转换”: 无法从“void (__thiscall GameLayer::* )(cocos2d::CCTime)”转换为“cocos2d::SEL_SCHEDULE”1> 指向成员的指针有不同的表示形式;无法在它们之间进行类型转换解决方案把定时器回调函数void GameLayer::updateGame(CCTime dt)改为voidGameLayer::updateGame(float dt) 阅读全文
posted @ 2014-03-26 13:49 yufenghou 阅读(338) 评论(0) 推荐(0)