@songying
2019-03-05T14:48:00.000000Z
字数 144
阅读 976
c++库
操作 | 说明 |
---|---|
string to_string(val) | 将其他类型转化为string |
int stoi(s) | 将字符串转化为int型 |
long stol(s) | 将字符串转化为 long |
float stof(s) | 将字符串转化为float |
double stod(s) | 将字符串转化为double |