noshowpoint
Kayan noktalı sayıları sıfır, kesirli bölümü ise yalnızca tam sayı bölümünü görüntüler.
ios_base& noshowpoint(
ios_base& _Str
);
Parametreler
- _Str
Türünde bir nesne için bir başvuru ios_base, ya da devraldığı bir türe ios_base.
Dönüş Değeri
Hangi _ nesnesine bir başvuruStr türetilmiştir.
Notlar
noshowpointVarsayılan olarak etkindir; kullanmak showpoint ve precision ondalık noktadan sonra sıfır görüntülemek için.
Etkili bir şekilde manipulator çağıran _Str.unsetf(ios_base::showpoint), daha sonra döndürür _Str.
Örnek
// 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;
}
Gereksinimler
Başlık: <ios>
Namespace: std