//CCSprite *aSprite;
//CCNode *container1;
//CCNode *container2;
_container1->addChild(aSprite);
aSprite->removeFromParentAndCleanup(true);
_container2->addChild(aSprite);
CCNode 报错!~
CCAssert( child->m_pParent == NULL, “child already added. It can’t be added again”);
难道 aSprite 被 addChild 一次就不能再 addChild 了吗?