发布时间:2013-08-08 10:51:13
最近碰到以下问题:1>libcocos2d.lib(libcocos2d.dll) : error LNK2005: "public: class cocos2d::CCScene * __thiscall cocos2d::CCDirector::getRunningScene(void)" (?getRunningScene@CCDirector@cocos2d@@QAEPAVCCScene@2@XZ) 已经在 inc.Framework.obj 中定义1>libcocos2d.lib(libcocos2d.dll) : error LNK2005: "p.........【阅读全文】
发布时间:2013-07-17 10:38:54
引子: string& s="hi" 为什么编译不通过因为如果通过的话,“hi"是常量字符串,s改变就会改变"hi"的内容,所以编译不通过。const string& s="hi"这样才可以#include <iostream>class test{public: test() {std::cout<<"bbb"<<std::endl;} test(const test& t) {std::cout<<"c.........【阅读全文】
发布时间:2013-06-17 13:27:48
一个事务包含几个步骤,其中任意一个步骤都有可能失败导致需要回滚。 怎么实现呢用一个链表表示所有步骤,正向遍历,表示事务操作;如果反向遍历,则表示回滚。http://bigwhite.blogbus.com/logs/171461415.html......【阅读全文】