我查看了一个setw
关于 cppreference 的示例。它用于setw
设置宽度。在这个例子中,它假设提取一个字符串为'arr',它设置宽度为6。但是为什么'arr'只有5个字符,为什么结果是“hello”而不是“hello”?谢谢您的回答。
代码来源:std::setw
#include <sstream>
#include <iostream>
#include <iomanip>
int main()
{
std::cout << "no setw:" << 42 << '\n'
<< "setw(6):" << std::setw(6) << 42 << '\n'
<< "setw(6), several elements: " << 89 << std::setw(6) << 12 << 34 << '\n';
std::istringstream is("hello, world");
char arr[10];
is >> std::setw(6) >> arr;
std::cout << "Input from \"" << is.str() << "\" with setw(6) gave \""
<< arr << "\"\n";
}
输出:
no setw:42
setw(6): 42
setw(6), several elements: 89 1234
Input from "hello, world" with setw(6) gave "hello"