您好,登錄后才能下訂單哦!
在 C++ 中,有多種字符串格式化方法,這里介紹兩種常用的方法:std::ostringstream
和 std::string::format
(C++20 起可用)。
std::ostringstream
std::ostringstream
是 C++ 標準庫中的一個字符串流類,可以將其他數據類型插入到字符串流中,然后將其轉換為 std::string
類型。
示例代碼:
#include <iostream>
#include <sstream>
#include <string>
int main() {
int age = 25;
std::string name = "Tom";
std::ostringstream oss;
oss << "My name is " << name << ", and I am " << age << " years old.";
std::string message = oss.str();
std::cout << message << std::endl;
return 0;
}
std::string::format
(C++20)std::string::format
是 C++20 標準庫中新增的字符串格式化方法,類似于 Python 的 str.format
方法。
示例代碼:
#include <iostream>
#include <string>
int main() {
int age = 25;
std::string name = "Tom";
std::string message = std::string::format("My name is %s, and I am %d years old.", name.c_str(), age);
std::cout << message << std::endl;
return 0;
}
以上兩種方法都可以實現字符串格式化,根據實際需求選擇使用即可。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。