AdSense

網頁

2022/8/4

C++ 整數與字串轉換 int string conversion

C++整數與字串轉換的方式如下。


整數轉字串 int to string

使用C++11標準函式庫stringstd::to_string()可把整數轉為字串。

main.cpp

#include <iostream>
#include <string>
using namespace std;

int main() {
    int i = 123;
    string s = to_string(i);

    return 0;
}


字串轉整數 string to int

使用C++11標準函式庫stringstd::stoi()可把字串轉為整數。

main.cpp

#include <iostream>
#include <string>
using namespace std;

int main() {
    string s = "123";
    int i = stoi(s);

    return 0;
}


沒有留言:

AdSense