c++ 获取数字字符串的子串数值,比如给定字符串"123456",要获取第三位和第四位的数值,这里是34。
方法
1.使用substr
使用substr截取字串,再使用c_str()获取字符数组,再使用atoi()转换为数字
2.构造字符数组
直接使用索引获取字符,构建字符数组,再使用atoi()转换为数字
代码
#include <string>
#include <iostream>
#include <chrono>
using namespace std;
int main(int argc, char* argv[]) {
string val = "123";
int total = 1000000;
std::chrono::time_point<std::chrono::system_clock> start = std::chrono::system_clock::now();
for (int i = 0; i < total; i++) {
int tmp = atoi(val.substr(1, 2).c_str());
}
std::chrono::time_point<std::chrono::system_clock> end = std::chrono::system_clock::now();
std::chrono::microseconds diff = std::chrono::duration_cast<std::chrono::microseconds>(end - start);
cout << "using substr:" << diff.count() << "ms" << endl;
start = std::chrono::system_clock::now();
for (int i = 0; i < total; i++) {
char vals[2] = { val[1],val[2] };
int tmp = atoi(vals);
}
end = std::chrono::system_clock::now();
diff = std::chrono::duration_cast<std::chrono::microseconds>(end - start);
cout << "using char[]:" << diff.count() << "ms" << endl;
return 0;
}
执行结果
结论
使用字符直接构造,性能是substr的十倍左右
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。