cocos2d-x杂记
//将数字类型转换成sting类型template<typename T>string Convert2String(const T &value){stringstream ss;ss<<value;return ss.str();}
??