noshowpoint
显示节的节为零浮点数的整数部分。
ios_base& noshowpoint(
ios_base& _Str
);
参数
- _Str
对类型 ios_base对象,或者从 ios_base继承的类型。
返回值
为_Str派生的对象的引用。
备注
默认情况下noshowpoint 打开,使用 showpoint 和 精度 显示null在以后小数点。
操作者有效调用 _Str.unsetf(ios_base::showpoint),然后返回 _Str。
示例
// ios_noshowpoint.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
double f1= 5.000;
cout << f1 << endl; // noshowpoint is default
cout.precision( 4 );
cout << showpoint << f1 << endl;
cout << noshowpoint << f1 << endl;
}
要求
标头: <ios>
命名空间: std