原文链接:
化为int,有两种方式:
string s = “123”;
int c = atoi(s.c_str());
或者
int c = stoi(s);
将string转化为double,也是两种方式。
string s = “123.5”;
double c = atof(s.c_str())
double c = stod(s);