您的当前位置:首页正文

C++将string转化为int或者double(转载)

2024-11-26 来源:个人技术集锦

原文链接:

化为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);

显示全文