美文网首页
c++ 字符串转各种数字

c++ 字符串转各种数字

作者: c之气三段 | 来源:发表于2021-12-07 15:48 被阅读0次
    int stoi(const strings str, size_t* pos = 0, int base = 10)
    long stol(const strings str, size_t* pos = 0, int base = 10)
    float stof(const strings str, size_t* pos = 0)
    double stod(const strings str, size_t* pos = 0)
    

    相关文章

      网友评论

          本文标题:c++ 字符串转各种数字

          本文链接:https://www.haomeiwen.com/subject/cacaxrtx.html