noshowpoint

显示部件的部分为零浮点数的整数部分。

ios_base& noshowpoint( 
   ios_base& _Str 
);

参数

  • _Str
    引用类型到 ios_base对象,或者从 ios_base继承的类型。

返回值

为_Str 派生的对象的引用。

备注

noshowpoint 打开默认为;使用 showpoint精度 和小数点后显示零。

操控程序有效调用 _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

请参见

参考

iostream 编程

iostreams 约定