std::showpoint, std::noshowpoint
来自 cppreference.com
定义在头文件 <ios> 中 |
||
std::ios_base& showpoint( std::ios_base& str ); |
(1) | |
std::ios_base& noshowpoint( std::ios_base& str ); |
(2) | |
启用或禁用在浮点输出中无条件包含小数点字符。对输入没有影响。
这是一个 I/O 操纵符,它可以与表达式一起调用,例如 out << std::showpoint,对于任何类型为 std::basic_ostream 的 out
,或者与表达式一起调用,例如 in >> std::showpoint,对于任何类型为 std::basic_istream 的 in
。
用作小数点字符的字符由输出时注入流中的区域设置的 numpunct 面确定,如 std::num_put::put 中所述。
内容 |
[编辑] 参数
str | - | 对 I/O 流的引用 |
[编辑] 返回值
str(操作后的流的引用)。
[编辑] 示例
运行此代码
#include <iostream> int main() { std::cout << "1.0 with showpoint: " << std::showpoint << 1.0 << '\n' << "1.0 with noshowpoint: " << std::noshowpoint << 1.0 << '\n'; }
输出
1.0 with showpoint: 1.00000 1.0 with noshowpoint: 1
[编辑] 另请参见
清除指定的 ios_base 标志 (函数) | |
设置指定的 ios_base 标志(函数) |