2017年6月6日

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 阿兴的平凡世界 阅读(6148) 评论(0) 推荐(0)

导航