std::setw()函式


C++函式std::setw的行為與在流上呼叫n作為引數的成員寬度一樣,它作為操縱器插入/提取(在輸入流或輸出流上插入/提取)。

它用於設定要在輸出操作上使用的欄位寬度。

宣告

以下是 std::setw 函式的宣告。

setw (int n);

引數

  • n ? 用作欄位寬度的字元數。

返回值

它返回未指定(unspecified),此函式應僅用作流操縱器。

範例

下面的例子說明了setw函式的用法。

#include <iostream>
#include <iomanip>

int main () {
   std::cout << std::setw(10);
   std::cout << 77 << std::endl;
   return 0;
}

編譯和執行上面的程式,將產生以下結果 -

77