如何在 C++ 中把整型轉換為字串
- 使用字串化巨集將 Int 轉換成字串的方法
-
使用
to_string()
方法進行 Int 到 String 的轉換 -
使用
std::stringstream
類和str()
方法進行 Int 到 String 的轉換 -
使用
std::to_chars
方法進行 Int 到 String 的轉換
本文將介紹 C++ 將整型 int
轉換為字串的方法。
使用字串化巨集將 Int 轉換成字串的方法
當涉及到 int
到 string
的轉換時,這個方法的用途相當有限。也就是說,只有當所謂的硬編碼數值需要轉換為 string
型別時,才可以利用這個方法。
巨集是程式設計師指定名稱的程式碼塊,每當使用該名稱時,就會用巨集擴充套件(巨集語句的右邊部分)代替。
這是 C/C++ 前處理器的一個功能,這意味著你只能對文字值使用這個功能。
#include <iostream>
#include <string>
using std::cout; using std::cin;
using std::endl; using std::string;
#define STRING(num) #num
int main() {
string num_cstr(STRING(1234));
num_cstr.empty() ? cout << "empty\n" :
cout << num_cstr << endl;
return EXIT_SUCCESS;
}
輸出:
1234
注意,當你想把其他巨集擴充套件的結果串起來(在這個例子中,NUMBER
擴充套件為 123123
),你需要定義兩級巨集,如下面的程式碼塊所示。
#include <iostream>
#include <string>
using std::cout; using std::cin;
using std::endl; using std::string;
#define STRING(num) STR(num)
#define STR(num) #num
#define NUMBER 123123
int main() {
string num_cstr(STRING(NUMBER));
num_cstr.empty() ? cout << "empty\n" :
cout << num_cstr << endl;
return EXIT_SUCCESS;
}
輸出:
123123
使用 to_string()
方法進行 Int 到 String 的轉換
to_string()
是一個內建的 <string>
庫函式,它接受一個單一的數值作為引數並返回 string
物件。這個方法是整型轉換為字串的推薦解決方案。然而,請注意,將浮點數傳遞給 to_string
方法會產生一些意想不到的結果,下面的程式碼示例就證明了這一點。
#include <iostream>
#include <string>
using std::cout; using std::cin;
using std::endl; using std::string;
int main() {
int n1 = 9876;
double n2 = 0.0000000000000000000001;
double n3 = 2.000000000000123;
string num_str1(std::to_string(n1));
string num_str2(std::to_string(n2));
string num_str3(std::to_string(n3));
num_str1.empty() ? cout << "empty\n" : cout << num_str1 << endl;
num_str1.empty() ? cout << "empty\n" : cout << num_str2 << endl;
num_str1.empty() ? cout << "empty\n" : cout << num_str3 << endl;
return EXIT_SUCCESS;
}
輸出:
9876
0.000000
2.000000
使用 std::stringstream
類和 str()
方法進行 Int 到 String 的轉換
另一種解決這個問題的方法是使用 stringstream
類,它在內部儲存 string
例項,並提供 str()
方法從 stringstream
內容中檢索 string
物件。
#include <iostream>
#include <string>
#include <sstream>
using std::cout; using std::cin;
using std::endl; using std::string;
int main() {
int n1 = 9876;
std::stringstream sstream;
sstream << n1;
string num_str = sstream.str();
num_str.empty() ? cout << "empty\n" : cout << num_str << endl;
return EXIT_SUCCESS;
}
輸出:
9876
使用 std::to_chars
方法進行 Int 到 String 的轉換
與其他方法相比,下面的方法相對來說比較麻煩,因為它需要初始化一個臨時的 char
陣列,用於轉換結果儲存。不過,從好的方面來說,這種方法是獨立於本地的,非分配,非丟擲。to_chars
函式接收 char
陣列的範圍,並將整數轉換為字串。一旦字元被儲存在 arr
變數中,一個新的 string
物件將被 arr.data()
引數初始化。
#include <iostream>
#include <string>
#include <array>
#include <charconv>
using std::cout; using std::cin;
using std::endl; using std::string;
#define MAX_DIGITS 100
int main() {
int n1 = 9876;
std::array<char, MAX_DIGITS> arr{};
std::to_chars(arr.data(), arr.data() + arr.size(), n1);
string num_str(arr.data());
cout << num_str << endl;
return EXIT_SUCCESS;
}
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn