命名空间
变体
操作

std::showpoint, std::noshowpoint

来自 cppreference.com
< cpp‎ | io‎ | manip
 
 
 
输入/输出操纵符
浮点格式
showpointnoshowpoint
整数格式
布尔格式
字段宽度和填充控制
其他格式
空白处理
输出刷新
(C++20)  

状态标志操作
时间和货币 I/O
(C++11)
(C++11)
(C++11)
(C++11)
带引号的操纵符
(C++14)
 
定义在头文件 <ios>
std::ios_base& showpoint( std::ios_base& str );
(1)
std::ios_base& noshowpoint( std::ios_base& str );
(2)

启用或禁用在浮点输出中无条件包含小数点字符。对输入没有影响。

1) 启用流 str 中的 showpoint 标志,就像调用 str.setf(std::ios_base::showpoint) 一样。
2) 禁用流 str 中的 showpoint 标志,就像调用 str.unsetf(std::ios_base::showpoint) 一样。

这是一个 I/O 操纵符,它可以与表达式一起调用,例如 out << std::showpoint,对于任何类型为 std::basic_ostreamout,或者与表达式一起调用,例如 in >> std::showpoint,对于任何类型为 std::basic_istreamin

用作小数点字符的字符由输出时注入流中的区域设置的 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 标志
(函数) [编辑]