溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

詳解C++ format函數(shù)的格式化占位符

發(fā)布時間:2024-10-11 09:22:39 來源:億速云 閱讀:90 作者:小樊 欄目:編程語言

在 C++ 中,std::string 類有一個名為 format 的成員函數(shù),它允許您使用類似于 Python 的格式化字符串語法來構(gòu)造新字符串。format 函數(shù)的格式化占位符與 Python 的 str.format 和 C# 的 string.Format 類似,但具有其獨特的語法。

以下是 C++ std::string 類中 format 函數(shù)的一些常見格式化占位符:

  1. %s - 字符串格式化占位符。將替換為傳入的字符串參數(shù)。
std::string s = "Hello";
std::string result = std::string("Hello, %s!").format(s);
// result = "Hello, Hello!"
  1. %d - 整數(shù)格式化占位符(十進制)。將替換為傳入的整數(shù)參數(shù)。
int i = 42;
std::string result = std::string("The answer is %d.").format(i);
// result = "The answer is 42."
  1. %f - 浮點數(shù)格式化占位符。將替換為傳入的浮點數(shù)參數(shù)。默認(rèn)情況下,小數(shù)點后保留 6 位數(shù)字??梢允褂?.6f 來指定小數(shù)點后的位數(shù)。
double d = 3.1415926535;
std::string result = std::string("Pi is approximately %f.").format(d);
// result = "Pi is approximately 3.141593."
  1. %e - 科學(xué)計數(shù)法表示的浮點數(shù)格式化占位符。將替換為傳入的浮點數(shù)參數(shù),并以科學(xué)計數(shù)法表示。
double d = 1.23456789e-10;
std::string result = std::string("A very small number: %e").format(d);
// result = "A very small number: 1.234568e-10"
  1. %x - 十六進制表示的整數(shù)格式化占位符。將替換為傳入的整數(shù)參數(shù),并以十六進制表示。
int i = 255;
std::string result = std::string("The hexadecimal value of %x is %X").format(i, i);
// result = "The hexadecimal value of ff is FF"
  1. %o - 八進制表示的整數(shù)格式化占位符。將替換為傳入的整數(shù)參數(shù),并以八進制表示。
int i = 10;
std::string result = std::string("The octal value of %o is %O").format(i, i);
// result = "The octal value of 12 is 12"
  1. %c - 字符格式化占位符。將替換為傳入的字符參數(shù)。
char c = 'A';
std::string result = std::string("The ASCII value of %c is %d.").format(c, static_cast<int>(c));
// result = "The ASCII value of A is 65."
  1. %n - 換行符格式化占位符。在字符串中插入一個換行符。
std::string result = std::string("Hello, %s!\n").format(s);
// result = "Hello, Hello!\n"

這些占位符可以組合使用,以創(chuàng)建更復(fù)雜的格式化字符串。例如:

int year = 2023;
int month = 10;
int day = 20;
std::string result = std::string("Today is %d/%02d/%02d.").format(day, month, year);
// result = "Today is 20/10/2023."

在這個例子中,%d 用于天,%02d 用于月份和年份(帶有前導(dǎo)零,如果需要的話)。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI