std::string 转uint64方法:
摘要:#include <string>#include <sstream> uint64 stringToUINT64(const std::string s){ std::stringstream a; a << s; UINT64 ret = 0; a >> ret; return ret;}
阅读全文
posted @ 2017-06-06 14:42
posted @ 2017-06-06 14:42
posted @ 2017-05-19 15:27
posted @ 2017-05-04 21:35
posted @ 2017-05-04 21:34
posted @ 2017-04-20 17:52