您好,登錄后才能下訂單哦!
在 C++ 中,std::to_string()
函數是一種非常方便的將數字類型轉換為字符串的方法
#include<iostream>
#include<string>
int main() {
int num = 42;
std::string str_num = std::to_string(num);
std::cout << "The integer is: "<< num<< std::endl;
std::cout << "The string representation of the integer is: "<< str_num<< std::endl;
return 0;
}
這個示例中,我們使用 std::to_string()
函數將整數 num
轉換為字符串 str_num
。然后,我們分別輸出整數和字符串表示。
需要注意的是,std::to_string()
函數僅適用于 C++11 及更高版本的編譯器。如果你使用的是較舊的編譯器,可以考慮使用其他字符串轉換方法,例如使用 std::ostringstream
類:
#include<iostream>
#include <sstream>
#include<string>
int main() {
int num = 42;
std::ostringstream oss;
oss<< num;
std::string str_num = oss.str();
std::cout << "The integer is: "<< num<< std::endl;
std::cout << "The string representation of the integer is: "<< str_num<< std::endl;
return 0;
}
在這個示例中,我們使用 std::ostringstream
類將整數 num
轉換為字符串 str_num
。然后,我們分別輸出整數和字符串表示。這種方法適用于 C++98 及更高版本的編譯器。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。