C++11-字符串与数字转换
数字 => 字符串
1 | string to_string (int val); |
字符串 => 数字
1 | int stoi(const string& str, size_t *idx = 0, int base = 10); |
结论
优先使用
boost::lexical_cast
效率更高
接口统一,代码优雅
locale敏感
1 | string to_string (int val); |
1 | int stoi(const string& str, size_t *idx = 0, int base = 10); |
优先使用boost::lexical_cast
效率更高
接口统一,代码优雅
locale敏感