您好,登錄后才能下訂單哦!
printf
是 C 語言中常用的格式化輸出函數,而 C++ 中也有一個類似的功能,叫做 std::format
。這個函數在 C++11 標準中被引入,提供了與 printf
類似的功能,但語法更加簡潔和現代化。下面是一些使用 std::format
的實戰示例:
#include <iostream>
#include <format>
int main() {
int age = 25;
double salary = 5000.5;
std::string name = "Alice";
std::string output = std::format("Name: {}, Age: {}, Salary: {:.2f}", name, age, salary);
std::cout << output << std::endl;
return 0;
}
在這個例子中,std::format
使用了占位符 {}
來表示要插入的值。對于浮點數 salary
,我們使用了 {:.2f}
來指定輸出格式,即保留兩位小數。
std::string output = std::format("Name: {}, Age: {}, Salary: {}", name, age, salary);
在這個例子中,我們沒有指定占位符的位置,因此它們會根據傳入參數的順序自動排列。
在 C++20 中,std::format
增加了對命名參數的支持,這使得代碼更加清晰和易于維護。
#include <iostream>
#include <format>
int main() {
int age = 25;
double salary = 5000.5;
std::string name = "Alice";
std::string output = std::format(name, "Name: {}, Age: {}, Salary: {:.2f}", age, salary);
std::cout << output << std::endl;
return 0;
}
注意:上面的示例代碼有誤,因為 std::format
不支持直接使用變量名作為占位符。實際上,我們應該這樣使用命名參數:
std::string output = std::format("{name}, Age: {age}, Salary: {salary:.2f}", {"name", name}, {"age", age}, {"salary", salary});
然而,這種方式相對繁瑣。更好的方式是使用一個結構體來封裝這些值,然后將其作為單個參數傳遞給 std::format
。
#include <iostream>
#include <format>
#include <tuple>
struct Person {
std::string name;
int age;
double salary;
};
int main() {
Person person = {"Alice", 25, 5000.5};
std::string output = std::format("Name: {}, Age: {}, Salary: {:.2f}", person.name, person.age, person.salary);
std::cout << output << std::endl;
return 0;
}
在這個例子中,我們定義了一個 Person
結構體來封裝人的信息,然后將其作為單個參數傳遞給 std::format
。這種方式更加清晰和易于維護。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。